xref: /petsc/src/snes/interface/snes.c (revision 18d8988553016a169ad643c93c5998d58a7d549d)
19b94acceSBarry Smith 
2af0996ceSBarry Smith #include <petsc/private/snesimpl.h>      /*I "petscsnes.h"  I*/
307475bc1SBarry Smith #include <petscdmshell.h>
4d96771aaSLisandro Dalcin #include <petscdraw.h>
5a01aa210SMatthew G. Knepley #include <petscds.h>
634b4d3a8SMatthew G. Knepley #include <petscdmadaptor.h>
706fc46c8SMatthew G. Knepley #include <petscconvest.h>
89b94acceSBarry Smith 
9ace3abfcSBarry Smith PetscBool         SNESRegisterAllCalled = PETSC_FALSE;
100298fd71SBarry Smith PetscFunctionList SNESList              = NULL;
118ba1e511SMatthew Knepley 
128ba1e511SMatthew Knepley /* Logging support */
1322c6f798SBarry Smith PetscClassId  SNES_CLASSID, DMSNES_CLASSID;
1494db00ebSBarry Smith PetscLogEvent SNES_Solve, SNES_FunctionEval, SNES_JacobianEval, SNES_NGSEval, SNES_NGSFuncEval, SNES_NPCSolve, SNES_ObjectiveEval;
15a09944afSBarry Smith 
16e113a28aSBarry Smith /*@
17e113a28aSBarry Smith    SNESSetErrorIfNotConverged - Causes SNESSolve() to generate an error if the solver has not converged.
18e113a28aSBarry Smith 
193f9fe445SBarry Smith    Logically Collective on SNES
20e113a28aSBarry Smith 
21e113a28aSBarry Smith    Input Parameters:
22e113a28aSBarry Smith +  snes - iterative context obtained from SNESCreate()
23e113a28aSBarry Smith -  flg - PETSC_TRUE indicates you want the error generated
24e113a28aSBarry Smith 
25e113a28aSBarry Smith    Options database keys:
26e113a28aSBarry Smith .  -snes_error_if_not_converged : this takes an optional truth value (0/1/no/yes/true/false)
27e113a28aSBarry Smith 
28e113a28aSBarry Smith    Level: intermediate
29e113a28aSBarry Smith 
30e113a28aSBarry Smith    Notes:
31e113a28aSBarry Smith     Normally PETSc continues if a linear solver fails to converge, you can call SNESGetConvergedReason() after a SNESSolve()
32e113a28aSBarry Smith     to determine if it has converged.
33e113a28aSBarry Smith 
34e113a28aSBarry Smith .keywords: SNES, set, initial guess, nonzero
35e113a28aSBarry Smith 
36e113a28aSBarry Smith .seealso: SNESGetErrorIfNotConverged(), KSPGetErrorIfNotConverged(), KSPSetErrorIFNotConverged()
37e113a28aSBarry Smith @*/
387087cfbeSBarry Smith PetscErrorCode  SNESSetErrorIfNotConverged(SNES snes,PetscBool flg)
39e113a28aSBarry Smith {
40e113a28aSBarry Smith   PetscFunctionBegin;
41e113a28aSBarry Smith   PetscValidHeaderSpecific(snes,SNES_CLASSID,1);
42acfcf0e5SJed Brown   PetscValidLogicalCollectiveBool(snes,flg,2);
43e113a28aSBarry Smith   snes->errorifnotconverged = flg;
44e113a28aSBarry Smith   PetscFunctionReturn(0);
45e113a28aSBarry Smith }
46e113a28aSBarry Smith 
47e113a28aSBarry Smith /*@
48e113a28aSBarry Smith    SNESGetErrorIfNotConverged - Will SNESSolve() generate an error if the solver does not converge?
49e113a28aSBarry Smith 
50e113a28aSBarry Smith    Not Collective
51e113a28aSBarry Smith 
52e113a28aSBarry Smith    Input Parameter:
53e113a28aSBarry Smith .  snes - iterative context obtained from SNESCreate()
54e113a28aSBarry Smith 
55e113a28aSBarry Smith    Output Parameter:
56e113a28aSBarry Smith .  flag - PETSC_TRUE if it will generate an error, else PETSC_FALSE
57e113a28aSBarry Smith 
58e113a28aSBarry Smith    Level: intermediate
59e113a28aSBarry Smith 
60e113a28aSBarry Smith .keywords: SNES, set, initial guess, nonzero
61e113a28aSBarry Smith 
62e113a28aSBarry Smith .seealso:  SNESSetErrorIfNotConverged(), KSPGetErrorIfNotConverged(), KSPSetErrorIFNotConverged()
63e113a28aSBarry Smith @*/
647087cfbeSBarry Smith PetscErrorCode  SNESGetErrorIfNotConverged(SNES snes,PetscBool  *flag)
65e113a28aSBarry Smith {
66e113a28aSBarry Smith   PetscFunctionBegin;
67e113a28aSBarry Smith   PetscValidHeaderSpecific(snes,SNES_CLASSID,1);
68e113a28aSBarry Smith   PetscValidPointer(flag,2);
69e113a28aSBarry Smith   *flag = snes->errorifnotconverged;
70e113a28aSBarry Smith   PetscFunctionReturn(0);
71e113a28aSBarry Smith }
72e113a28aSBarry Smith 
734fc747eaSLawrence Mitchell /*@
744fc747eaSLawrence Mitchell     SNESSetAlwaysComputesFinalResidual - does the SNES always compute the residual at the final solution?
754fc747eaSLawrence Mitchell 
764fc747eaSLawrence Mitchell    Logically Collective on SNES
774fc747eaSLawrence Mitchell 
784fc747eaSLawrence Mitchell     Input Parameters:
794fc747eaSLawrence Mitchell +   snes - the shell SNES
804fc747eaSLawrence Mitchell -   flg - is the residual computed?
814fc747eaSLawrence Mitchell 
824fc747eaSLawrence Mitchell    Level: advanced
834fc747eaSLawrence Mitchell 
844fc747eaSLawrence Mitchell .seealso: SNESGetAlwaysComputesFinalResidual()
854fc747eaSLawrence Mitchell @*/
864fc747eaSLawrence Mitchell PetscErrorCode  SNESSetAlwaysComputesFinalResidual(SNES snes, PetscBool flg)
874fc747eaSLawrence Mitchell {
884fc747eaSLawrence Mitchell   PetscFunctionBegin;
894fc747eaSLawrence Mitchell   PetscValidHeaderSpecific(snes,SNES_CLASSID,1);
904fc747eaSLawrence Mitchell   snes->alwayscomputesfinalresidual = flg;
914fc747eaSLawrence Mitchell   PetscFunctionReturn(0);
924fc747eaSLawrence Mitchell }
934fc747eaSLawrence Mitchell 
944fc747eaSLawrence Mitchell /*@
954fc747eaSLawrence Mitchell     SNESGetAlwaysComputesFinalResidual - does the SNES always compute the residual at the final solution?
964fc747eaSLawrence Mitchell 
974fc747eaSLawrence Mitchell    Logically Collective on SNES
984fc747eaSLawrence Mitchell 
994fc747eaSLawrence Mitchell     Input Parameter:
1004fc747eaSLawrence Mitchell .   snes - the shell SNES
1014fc747eaSLawrence Mitchell 
1024fc747eaSLawrence Mitchell     Output Parameter:
1034fc747eaSLawrence Mitchell .   flg - is the residual computed?
1044fc747eaSLawrence Mitchell 
1054fc747eaSLawrence Mitchell    Level: advanced
1064fc747eaSLawrence Mitchell 
1074fc747eaSLawrence Mitchell .seealso: SNESSetAlwaysComputesFinalResidual()
1084fc747eaSLawrence Mitchell @*/
1094fc747eaSLawrence Mitchell PetscErrorCode  SNESGetAlwaysComputesFinalResidual(SNES snes, PetscBool *flg)
1104fc747eaSLawrence Mitchell {
1114fc747eaSLawrence Mitchell   PetscFunctionBegin;
1124fc747eaSLawrence Mitchell   PetscValidHeaderSpecific(snes,SNES_CLASSID,1);
1134fc747eaSLawrence Mitchell   *flg = snes->alwayscomputesfinalresidual;
1144fc747eaSLawrence Mitchell   PetscFunctionReturn(0);
1154fc747eaSLawrence Mitchell }
1164fc747eaSLawrence Mitchell 
117e725d27bSBarry Smith /*@
118bf388a1fSBarry Smith    SNESSetFunctionDomainError - tells SNES that the input vector to your SNESFunction is not
1194936397dSBarry Smith      in the functions domain. For example, negative pressure.
1204936397dSBarry Smith 
1213f9fe445SBarry Smith    Logically Collective on SNES
1224936397dSBarry Smith 
1234936397dSBarry Smith    Input Parameters:
1246a388c36SPeter Brune .  snes - the SNES context
1254936397dSBarry Smith 
12628529972SSatish Balay    Level: advanced
1274936397dSBarry Smith 
1284936397dSBarry Smith .keywords: SNES, view
1294936397dSBarry Smith 
130bf388a1fSBarry Smith .seealso: SNESCreate(), SNESSetFunction(), SNESFunction
1314936397dSBarry Smith @*/
1327087cfbeSBarry Smith PetscErrorCode  SNESSetFunctionDomainError(SNES snes)
1334936397dSBarry Smith {
1344936397dSBarry Smith   PetscFunctionBegin;
1350700a824SBarry Smith   PetscValidHeaderSpecific(snes,SNES_CLASSID,1);
136422a814eSBarry Smith   if (snes->errorifnotconverged) SETERRQ(PETSC_COMM_SELF,PETSC_ERR_ARG_OUTOFRANGE,"User code indicates input vector is not in the function domain");
1374936397dSBarry Smith   snes->domainerror = PETSC_TRUE;
1384936397dSBarry Smith   PetscFunctionReturn(0);
1394936397dSBarry Smith }
1404936397dSBarry Smith 
1416a388c36SPeter Brune /*@
142c77b2880SPeter Brune    SNESGetFunctionDomainError - Gets the status of the domain error after a call to SNESComputeFunction;
1436a388c36SPeter Brune 
1446a388c36SPeter Brune    Logically Collective on SNES
1456a388c36SPeter Brune 
1466a388c36SPeter Brune    Input Parameters:
1476a388c36SPeter Brune .  snes - the SNES context
1486a388c36SPeter Brune 
1496a388c36SPeter Brune    Output Parameters:
150bf388a1fSBarry Smith .  domainerror - Set to PETSC_TRUE if there's a domain error; PETSC_FALSE otherwise.
1516a388c36SPeter Brune 
1526a388c36SPeter Brune    Level: advanced
1536a388c36SPeter Brune 
1546a388c36SPeter Brune .keywords: SNES, view
1556a388c36SPeter Brune 
156bf388a1fSBarry Smith .seealso: SNESSetFunctionDomainError(), SNESComputeFunction()
1576a388c36SPeter Brune @*/
1586a388c36SPeter Brune PetscErrorCode  SNESGetFunctionDomainError(SNES snes, PetscBool *domainerror)
1596a388c36SPeter Brune {
1606a388c36SPeter Brune   PetscFunctionBegin;
1616a388c36SPeter Brune   PetscValidHeaderSpecific(snes,SNES_CLASSID,1);
1626a388c36SPeter Brune   PetscValidPointer(domainerror, 2);
1636a388c36SPeter Brune   *domainerror = snes->domainerror;
1646a388c36SPeter Brune   PetscFunctionReturn(0);
1656a388c36SPeter Brune }
1666a388c36SPeter Brune 
16755849f57SBarry Smith /*@C
16855849f57SBarry Smith   SNESLoad - Loads a SNES that has been stored in binary  with SNESView().
16955849f57SBarry Smith 
17055849f57SBarry Smith   Collective on PetscViewer
17155849f57SBarry Smith 
17255849f57SBarry Smith   Input Parameters:
17355849f57SBarry Smith + newdm - the newly loaded SNES, this needs to have been created with SNESCreate() or
17455849f57SBarry Smith            some related function before a call to SNESLoad().
17555849f57SBarry Smith - viewer - binary file viewer, obtained from PetscViewerBinaryOpen()
17655849f57SBarry Smith 
17755849f57SBarry Smith    Level: intermediate
17855849f57SBarry Smith 
17955849f57SBarry Smith   Notes:
18055849f57SBarry Smith    The type is determined by the data in the file, any type set into the SNES before this call is ignored.
18155849f57SBarry Smith 
18255849f57SBarry Smith   Notes for advanced users:
18355849f57SBarry Smith   Most users should not need to know the details of the binary storage
18455849f57SBarry Smith   format, since SNESLoad() and TSView() completely hide these details.
18555849f57SBarry Smith   But for anyone who's interested, the standard binary matrix storage
18655849f57SBarry Smith   format is
18755849f57SBarry Smith .vb
18855849f57SBarry Smith      has not yet been determined
18955849f57SBarry Smith .ve
19055849f57SBarry Smith 
19155849f57SBarry Smith .seealso: PetscViewerBinaryOpen(), SNESView(), MatLoad(), VecLoad()
19255849f57SBarry Smith @*/
1932d53ad75SBarry Smith PetscErrorCode  SNESLoad(SNES snes, PetscViewer viewer)
19455849f57SBarry Smith {
19555849f57SBarry Smith   PetscErrorCode ierr;
19655849f57SBarry Smith   PetscBool      isbinary;
197060da220SMatthew G. Knepley   PetscInt       classid;
19855849f57SBarry Smith   char           type[256];
19955849f57SBarry Smith   KSP            ksp;
2002d53ad75SBarry Smith   DM             dm;
2012d53ad75SBarry Smith   DMSNES         dmsnes;
20255849f57SBarry Smith 
20355849f57SBarry Smith   PetscFunctionBegin;
2042d53ad75SBarry Smith   PetscValidHeaderSpecific(snes,SNES_CLASSID,1);
20555849f57SBarry Smith   PetscValidHeaderSpecific(viewer,PETSC_VIEWER_CLASSID,2);
20655849f57SBarry Smith   ierr = PetscObjectTypeCompare((PetscObject)viewer,PETSCVIEWERBINARY,&isbinary);CHKERRQ(ierr);
20755849f57SBarry Smith   if (!isbinary) SETERRQ(PETSC_COMM_SELF,PETSC_ERR_ARG_WRONG,"Invalid viewer; open viewer with PetscViewerBinaryOpen()");
20855849f57SBarry Smith 
209060da220SMatthew G. Knepley   ierr = PetscViewerBinaryRead(viewer,&classid,1,NULL,PETSC_INT);CHKERRQ(ierr);
210ce94432eSBarry Smith   if (classid != SNES_FILE_CLASSID) SETERRQ(PetscObjectComm((PetscObject)snes),PETSC_ERR_ARG_WRONG,"Not SNES next in file");
211060da220SMatthew G. Knepley   ierr = PetscViewerBinaryRead(viewer,type,256,NULL,PETSC_CHAR);CHKERRQ(ierr);
2122d53ad75SBarry Smith   ierr = SNESSetType(snes, type);CHKERRQ(ierr);
2132d53ad75SBarry Smith   if (snes->ops->load) {
2142d53ad75SBarry Smith     ierr = (*snes->ops->load)(snes,viewer);CHKERRQ(ierr);
215f2c2a1b9SBarry Smith   }
2162d53ad75SBarry Smith   ierr = SNESGetDM(snes,&dm);CHKERRQ(ierr);
2172d53ad75SBarry Smith   ierr = DMGetDMSNES(dm,&dmsnes);CHKERRQ(ierr);
2182d53ad75SBarry Smith   ierr = DMSNESLoad(dmsnes,viewer);CHKERRQ(ierr);
2192d53ad75SBarry Smith   ierr = SNESGetKSP(snes,&ksp);CHKERRQ(ierr);
22055849f57SBarry Smith   ierr = KSPLoad(ksp,viewer);CHKERRQ(ierr);
22155849f57SBarry Smith   PetscFunctionReturn(0);
22255849f57SBarry Smith }
2236a388c36SPeter Brune 
2249804daf3SBarry Smith #include <petscdraw.h>
225e04113cfSBarry Smith #if defined(PETSC_HAVE_SAWS)
226e04113cfSBarry Smith #include <petscviewersaws.h>
227bfb97211SBarry Smith #endif
2288404b7f3SBarry Smith 
2297e2c5f70SBarry Smith /*@C
2309b94acceSBarry Smith    SNESView - Prints the SNES data structure.
2319b94acceSBarry Smith 
2324c49b128SBarry Smith    Collective on SNES
233fee21e36SBarry Smith 
234c7afd0dbSLois Curfman McInnes    Input Parameters:
235c7afd0dbSLois Curfman McInnes +  SNES - the SNES context
236c7afd0dbSLois Curfman McInnes -  viewer - visualization context
237c7afd0dbSLois Curfman McInnes 
2389b94acceSBarry Smith    Options Database Key:
239c8a8ba5cSLois Curfman McInnes .  -snes_view - Calls SNESView() at end of SNESSolve()
2409b94acceSBarry Smith 
2419b94acceSBarry Smith    Notes:
2429b94acceSBarry Smith    The available visualization contexts include
243b0a32e0cSBarry Smith +     PETSC_VIEWER_STDOUT_SELF - standard output (default)
244b0a32e0cSBarry Smith -     PETSC_VIEWER_STDOUT_WORLD - synchronized standard
245c8a8ba5cSLois Curfman McInnes          output where only the first processor opens
246c8a8ba5cSLois Curfman McInnes          the file.  All other processors send their
247c8a8ba5cSLois Curfman McInnes          data to the first processor to print.
2489b94acceSBarry Smith 
2493e081fefSLois Curfman McInnes    The user can open an alternative visualization context with
250b0a32e0cSBarry Smith    PetscViewerASCIIOpen() - output to a specified file.
2519b94acceSBarry Smith 
25236851e7fSLois Curfman McInnes    Level: beginner
25336851e7fSLois Curfman McInnes 
2549b94acceSBarry Smith .keywords: SNES, view
2559b94acceSBarry Smith 
256b0a32e0cSBarry Smith .seealso: PetscViewerASCIIOpen()
2579b94acceSBarry Smith @*/
2587087cfbeSBarry Smith PetscErrorCode  SNESView(SNES snes,PetscViewer viewer)
2599b94acceSBarry Smith {
260fa9f3622SBarry Smith   SNESKSPEW      *kctx;
261dfbe8321SBarry Smith   PetscErrorCode ierr;
26294b7f48cSBarry Smith   KSP            ksp;
2637f1410a3SPeter Brune   SNESLineSearch linesearch;
26472a02f06SBarry Smith   PetscBool      iascii,isstring,isbinary,isdraw;
2652d53ad75SBarry Smith   DMSNES         dmsnes;
266e04113cfSBarry Smith #if defined(PETSC_HAVE_SAWS)
267536b137fSBarry Smith   PetscBool      issaws;
268bfb97211SBarry Smith #endif
2699b94acceSBarry Smith 
2703a40ed3dSBarry Smith   PetscFunctionBegin;
2710700a824SBarry Smith   PetscValidHeaderSpecific(snes,SNES_CLASSID,1);
2723050cee2SBarry Smith   if (!viewer) {
273ce94432eSBarry Smith     ierr = PetscViewerASCIIGetStdout(PetscObjectComm((PetscObject)snes),&viewer);CHKERRQ(ierr);
2743050cee2SBarry Smith   }
2750700a824SBarry Smith   PetscValidHeaderSpecific(viewer,PETSC_VIEWER_CLASSID,2);
276c9780b6fSBarry Smith   PetscCheckSameComm(snes,1,viewer,2);
27774679c65SBarry Smith 
278251f4c67SDmitry Karpeev   ierr = PetscObjectTypeCompare((PetscObject)viewer,PETSCVIEWERASCII,&iascii);CHKERRQ(ierr);
279251f4c67SDmitry Karpeev   ierr = PetscObjectTypeCompare((PetscObject)viewer,PETSCVIEWERSTRING,&isstring);CHKERRQ(ierr);
28055849f57SBarry Smith   ierr = PetscObjectTypeCompare((PetscObject)viewer,PETSCVIEWERBINARY,&isbinary);CHKERRQ(ierr);
28172a02f06SBarry Smith   ierr = PetscObjectTypeCompare((PetscObject)viewer,PETSCVIEWERDRAW,&isdraw);CHKERRQ(ierr);
282e04113cfSBarry Smith #if defined(PETSC_HAVE_SAWS)
283536b137fSBarry Smith   ierr = PetscObjectTypeCompare((PetscObject)viewer,PETSCVIEWERSAWS,&issaws);CHKERRQ(ierr);
284bfb97211SBarry Smith #endif
28532077d6dSBarry Smith   if (iascii) {
286dc0571f2SMatthew G. Knepley     SNESNormSchedule normschedule;
2878404b7f3SBarry Smith     DM               dm;
2888404b7f3SBarry Smith     PetscErrorCode   (*cJ)(SNES,Vec,Mat,Mat,void*);
2898404b7f3SBarry Smith     void             *ctx;
290dc0571f2SMatthew G. Knepley 
291dae58748SBarry Smith     ierr = PetscObjectPrintClassNamePrefixType((PetscObject)snes,viewer);CHKERRQ(ierr);
292fce1e034SJed Brown     if (!snes->setupcalled) {
293fce1e034SJed Brown       ierr = PetscViewerASCIIPrintf(viewer,"  SNES has not been set up so information may be incomplete\n");CHKERRQ(ierr);
294fce1e034SJed Brown     }
295e7788613SBarry Smith     if (snes->ops->view) {
296b0a32e0cSBarry Smith       ierr = PetscViewerASCIIPushTab(viewer);CHKERRQ(ierr);
297e7788613SBarry Smith       ierr = (*snes->ops->view)(snes,viewer);CHKERRQ(ierr);
298b0a32e0cSBarry Smith       ierr = PetscViewerASCIIPopTab(viewer);CHKERRQ(ierr);
2990ef38995SBarry Smith     }
30077431f27SBarry Smith     ierr = PetscViewerASCIIPrintf(viewer,"  maximum iterations=%D, maximum function evaluations=%D\n",snes->max_its,snes->max_funcs);CHKERRQ(ierr);
30157622a8eSBarry Smith     ierr = PetscViewerASCIIPrintf(viewer,"  tolerances: relative=%g, absolute=%g, solution=%g\n",(double)snes->rtol,(double)snes->abstol,(double)snes->stol);CHKERRQ(ierr);
302efd4aadfSBarry Smith     if (snes->usesksp) {
30377431f27SBarry Smith       ierr = PetscViewerASCIIPrintf(viewer,"  total number of linear solver iterations=%D\n",snes->linear_its);CHKERRQ(ierr);
304efd4aadfSBarry Smith     }
30577431f27SBarry Smith     ierr = PetscViewerASCIIPrintf(viewer,"  total number of function evaluations=%D\n",snes->nfuncs);CHKERRQ(ierr);
306dc0571f2SMatthew G. Knepley     ierr = SNESGetNormSchedule(snes, &normschedule);CHKERRQ(ierr);
307dc0571f2SMatthew G. Knepley     if (normschedule > 0) {ierr = PetscViewerASCIIPrintf(viewer,"  norm schedule %s\n",SNESNormSchedules[normschedule]);CHKERRQ(ierr);}
30817fe4bdfSPeter Brune     if (snes->gridsequence) {
30917fe4bdfSPeter Brune       ierr = PetscViewerASCIIPrintf(viewer,"  total number of grid sequence refinements=%D\n",snes->gridsequence);CHKERRQ(ierr);
31017fe4bdfSPeter Brune     }
3119b94acceSBarry Smith     if (snes->ksp_ewconv) {
312fa9f3622SBarry Smith       kctx = (SNESKSPEW*)snes->kspconvctx;
3139b94acceSBarry Smith       if (kctx) {
31477431f27SBarry Smith         ierr = PetscViewerASCIIPrintf(viewer,"  Eisenstat-Walker computation of KSP relative tolerance (version %D)\n",kctx->version);CHKERRQ(ierr);
31557622a8eSBarry Smith         ierr = PetscViewerASCIIPrintf(viewer,"    rtol_0=%g, rtol_max=%g, threshold=%g\n",(double)kctx->rtol_0,(double)kctx->rtol_max,(double)kctx->threshold);CHKERRQ(ierr);
31657622a8eSBarry Smith         ierr = PetscViewerASCIIPrintf(viewer,"    gamma=%g, alpha=%g, alpha2=%g\n",(double)kctx->gamma,(double)kctx->alpha,(double)kctx->alpha2);CHKERRQ(ierr);
3179b94acceSBarry Smith       }
3189b94acceSBarry Smith     }
319eb1f6c34SBarry Smith     if (snes->lagpreconditioner == -1) {
320eb1f6c34SBarry Smith       ierr = PetscViewerASCIIPrintf(viewer,"  Preconditioned is never rebuilt\n");CHKERRQ(ierr);
321eb1f6c34SBarry Smith     } else if (snes->lagpreconditioner > 1) {
322eb1f6c34SBarry Smith       ierr = PetscViewerASCIIPrintf(viewer,"  Preconditioned is rebuilt every %D new Jacobians\n",snes->lagpreconditioner);CHKERRQ(ierr);
323eb1f6c34SBarry Smith     }
324eb1f6c34SBarry Smith     if (snes->lagjacobian == -1) {
325eb1f6c34SBarry Smith       ierr = PetscViewerASCIIPrintf(viewer,"  Jacobian is never rebuilt\n");CHKERRQ(ierr);
326eb1f6c34SBarry Smith     } else if (snes->lagjacobian > 1) {
32742f4f86dSBarry Smith       ierr = PetscViewerASCIIPrintf(viewer,"  Jacobian is rebuilt every %D SNES iterations\n",snes->lagjacobian);CHKERRQ(ierr);
328eb1f6c34SBarry Smith     }
3298404b7f3SBarry Smith     ierr = SNESGetDM(snes,&dm);CHKERRQ(ierr);
3308404b7f3SBarry Smith     ierr = DMSNESGetJacobian(dm,&cJ,&ctx);CHKERRQ(ierr);
3318404b7f3SBarry Smith     if (cJ == SNESComputeJacobianDefault) {
3328404b7f3SBarry Smith       ierr = PetscViewerASCIIPrintf(viewer,"  Jacobian is built using finite differences one column at a time\n");CHKERRQ(ierr);
3338404b7f3SBarry Smith     } else if (cJ == SNESComputeJacobianDefaultColor) {
3348404b7f3SBarry Smith       ierr = PetscViewerASCIIPrintf(viewer,"  Jacobian is built using finite differences with coloring\n");CHKERRQ(ierr);
3358404b7f3SBarry Smith     }
3360f5bd95cSBarry Smith   } else if (isstring) {
337317d6ea6SBarry Smith     const char *type;
338454a90a3SBarry Smith     ierr = SNESGetType(snes,&type);CHKERRQ(ierr);
339b0a32e0cSBarry Smith     ierr = PetscViewerStringSPrintf(viewer," %-3.3s",type);CHKERRQ(ierr);
34055849f57SBarry Smith   } else if (isbinary) {
34155849f57SBarry Smith     PetscInt    classid = SNES_FILE_CLASSID;
34255849f57SBarry Smith     MPI_Comm    comm;
34355849f57SBarry Smith     PetscMPIInt rank;
34455849f57SBarry Smith     char        type[256];
34555849f57SBarry Smith 
34655849f57SBarry Smith     ierr = PetscObjectGetComm((PetscObject)snes,&comm);CHKERRQ(ierr);
34755849f57SBarry Smith     ierr = MPI_Comm_rank(comm,&rank);CHKERRQ(ierr);
34855849f57SBarry Smith     if (!rank) {
34955849f57SBarry Smith       ierr = PetscViewerBinaryWrite(viewer,&classid,1,PETSC_INT,PETSC_FALSE);CHKERRQ(ierr);
35089d949e2SBarry Smith       ierr = PetscStrncpy(type,((PetscObject)snes)->type_name,sizeof(type));CHKERRQ(ierr);
35189d949e2SBarry Smith       ierr = PetscViewerBinaryWrite(viewer,type,sizeof(type),PETSC_CHAR,PETSC_FALSE);CHKERRQ(ierr);
35255849f57SBarry Smith     }
35355849f57SBarry Smith     if (snes->ops->view) {
35455849f57SBarry Smith       ierr = (*snes->ops->view)(snes,viewer);CHKERRQ(ierr);
35555849f57SBarry Smith     }
35672a02f06SBarry Smith   } else if (isdraw) {
35772a02f06SBarry Smith     PetscDraw draw;
35872a02f06SBarry Smith     char      str[36];
35989fd9fafSBarry Smith     PetscReal x,y,bottom,h;
36072a02f06SBarry Smith 
36172a02f06SBarry Smith     ierr   = PetscViewerDrawGetDraw(viewer,0,&draw);CHKERRQ(ierr);
36272a02f06SBarry Smith     ierr   = PetscDrawGetCurrentPoint(draw,&x,&y);CHKERRQ(ierr);
363a126751eSBarry Smith     ierr   = PetscStrncpy(str,"SNES: ",sizeof(str));CHKERRQ(ierr);
364a126751eSBarry Smith     ierr   = PetscStrlcat(str,((PetscObject)snes)->type_name,sizeof(str));CHKERRQ(ierr);
36551fa3d41SBarry Smith     ierr   = PetscDrawStringBoxed(draw,x,y,PETSC_DRAW_BLUE,PETSC_DRAW_BLACK,str,NULL,&h);CHKERRQ(ierr);
36689fd9fafSBarry Smith     bottom = y - h;
36772a02f06SBarry Smith     ierr   = PetscDrawPushCurrentPoint(draw,x,bottom);CHKERRQ(ierr);
368c4646bacSPeter Brune     if (snes->ops->view) {
369c4646bacSPeter Brune       ierr = (*snes->ops->view)(snes,viewer);CHKERRQ(ierr);
370c4646bacSPeter Brune     }
371e04113cfSBarry Smith #if defined(PETSC_HAVE_SAWS)
372536b137fSBarry Smith   } else if (issaws) {
373d45a07a7SBarry Smith     PetscMPIInt rank;
3742657e9d9SBarry Smith     const char *name;
375d45a07a7SBarry Smith 
3762657e9d9SBarry Smith     ierr = PetscObjectGetName((PetscObject)snes,&name);CHKERRQ(ierr);
377d45a07a7SBarry Smith     ierr = MPI_Comm_rank(PETSC_COMM_WORLD,&rank);CHKERRQ(ierr);
378d45a07a7SBarry Smith     if (!((PetscObject)snes)->amsmem && !rank) {
379d45a07a7SBarry Smith       char       dir[1024];
380d45a07a7SBarry Smith 
381e04113cfSBarry Smith       ierr = PetscObjectViewSAWs((PetscObject)snes,viewer);CHKERRQ(ierr);
3822657e9d9SBarry Smith       ierr = PetscSNPrintf(dir,1024,"/PETSc/Objects/%s/its",name);CHKERRQ(ierr);
3832657e9d9SBarry Smith       PetscStackCallSAWs(SAWs_Register,(dir,&snes->iter,1,SAWs_READ,SAWs_INT));
384bfb97211SBarry Smith       if (!snes->conv_hist) {
385a0931e03SBarry Smith         ierr = SNESSetConvergenceHistory(snes,NULL,NULL,PETSC_DECIDE,PETSC_TRUE);CHKERRQ(ierr);
386bfb97211SBarry Smith       }
3872657e9d9SBarry Smith       ierr = PetscSNPrintf(dir,1024,"/PETSc/Objects/%s/conv_hist",name);CHKERRQ(ierr);
3882657e9d9SBarry Smith       PetscStackCallSAWs(SAWs_Register,(dir,snes->conv_hist,10,SAWs_READ,SAWs_DOUBLE));
389f05ece33SBarry Smith     }
390bfb97211SBarry Smith #endif
39172a02f06SBarry Smith   }
39272a02f06SBarry Smith   if (snes->linesearch) {
3937601faf0SJed Brown     ierr = SNESGetLineSearch(snes, &linesearch);CHKERRQ(ierr);
39485928a98SStefano Zampini     ierr = PetscViewerASCIIPushTab(viewer);CHKERRQ(ierr);
39572a02f06SBarry Smith     ierr = SNESLineSearchView(linesearch, viewer);CHKERRQ(ierr);
39685928a98SStefano Zampini     ierr = PetscViewerASCIIPopTab(viewer);CHKERRQ(ierr);
39719bcc07fSBarry Smith   }
398efd4aadfSBarry Smith   if (snes->npc && snes->usesnpc) {
39985928a98SStefano Zampini     ierr = PetscViewerASCIIPushTab(viewer);CHKERRQ(ierr);
400efd4aadfSBarry Smith     ierr = SNESView(snes->npc, viewer);CHKERRQ(ierr);
40185928a98SStefano Zampini     ierr = PetscViewerASCIIPopTab(viewer);CHKERRQ(ierr);
4024a0c5b0cSMatthew G Knepley   }
4032d53ad75SBarry Smith   ierr = PetscViewerASCIIPushTab(viewer);CHKERRQ(ierr);
4042d53ad75SBarry Smith   ierr = DMGetDMSNES(snes->dm,&dmsnes);CHKERRQ(ierr);
4052d53ad75SBarry Smith   ierr = DMSNESView(dmsnes, viewer);CHKERRQ(ierr);
4062d53ad75SBarry Smith   ierr = PetscViewerASCIIPopTab(viewer);CHKERRQ(ierr);
4072c155ee1SBarry Smith   if (snes->usesksp) {
4082c155ee1SBarry Smith     ierr = SNESGetKSP(snes,&ksp);CHKERRQ(ierr);
40985928a98SStefano Zampini     ierr = PetscViewerASCIIPushTab(viewer);CHKERRQ(ierr);
41094b7f48cSBarry Smith     ierr = KSPView(ksp,viewer);CHKERRQ(ierr);
41185928a98SStefano Zampini     ierr = PetscViewerASCIIPopTab(viewer);CHKERRQ(ierr);
4122c155ee1SBarry Smith   }
41372a02f06SBarry Smith   if (isdraw) {
41472a02f06SBarry Smith     PetscDraw draw;
41572a02f06SBarry Smith     ierr = PetscViewerDrawGetDraw(viewer,0,&draw);CHKERRQ(ierr);
41672a02f06SBarry Smith     ierr = PetscDrawPopCurrentPoint(draw);CHKERRQ(ierr);
4177f1410a3SPeter Brune   }
4183a40ed3dSBarry Smith   PetscFunctionReturn(0);
4199b94acceSBarry Smith }
4209b94acceSBarry Smith 
42176b2cf59SMatthew Knepley /*
42276b2cf59SMatthew Knepley   We retain a list of functions that also take SNES command
42376b2cf59SMatthew Knepley   line options. These are called at the end SNESSetFromOptions()
42476b2cf59SMatthew Knepley */
42576b2cf59SMatthew Knepley #define MAXSETFROMOPTIONS 5
426a7cc72afSBarry Smith static PetscInt numberofsetfromoptions;
4276849ba73SBarry Smith static PetscErrorCode (*othersetfromoptions[MAXSETFROMOPTIONS])(SNES);
42876b2cf59SMatthew Knepley 
429ac226902SBarry Smith /*@C
43076b2cf59SMatthew Knepley   SNESAddOptionsChecker - Adds an additional function to check for SNES options.
43176b2cf59SMatthew Knepley 
43276b2cf59SMatthew Knepley   Not Collective
43376b2cf59SMatthew Knepley 
43476b2cf59SMatthew Knepley   Input Parameter:
43576b2cf59SMatthew Knepley . snescheck - function that checks for options
43676b2cf59SMatthew Knepley 
43776b2cf59SMatthew Knepley   Level: developer
43876b2cf59SMatthew Knepley 
43976b2cf59SMatthew Knepley .seealso: SNESSetFromOptions()
44076b2cf59SMatthew Knepley @*/
4417087cfbeSBarry Smith PetscErrorCode  SNESAddOptionsChecker(PetscErrorCode (*snescheck)(SNES))
44276b2cf59SMatthew Knepley {
44376b2cf59SMatthew Knepley   PetscFunctionBegin;
444f23aa3ddSBarry Smith   if (numberofsetfromoptions >= MAXSETFROMOPTIONS) SETERRQ1(PETSC_COMM_SELF,PETSC_ERR_ARG_OUTOFRANGE, "Too many options checkers, only %D allowed", MAXSETFROMOPTIONS);
44576b2cf59SMatthew Knepley   othersetfromoptions[numberofsetfromoptions++] = snescheck;
44676b2cf59SMatthew Knepley   PetscFunctionReturn(0);
44776b2cf59SMatthew Knepley }
44876b2cf59SMatthew Knepley 
4497087cfbeSBarry Smith extern PetscErrorCode  SNESDefaultMatrixFreeCreate2(SNES,Vec,Mat*);
450aa3661deSLisandro Dalcin 
451ace3abfcSBarry Smith static PetscErrorCode SNESSetUpMatrixFree_Private(SNES snes, PetscBool hasOperator, PetscInt version)
452aa3661deSLisandro Dalcin {
453aa3661deSLisandro Dalcin   Mat            J;
454aa3661deSLisandro Dalcin   KSP            ksp;
455aa3661deSLisandro Dalcin   PC             pc;
456ace3abfcSBarry Smith   PetscBool      match;
457aa3661deSLisandro Dalcin   PetscErrorCode ierr;
458895c21f2SBarry Smith   MatNullSpace   nullsp;
459aa3661deSLisandro Dalcin 
460aa3661deSLisandro Dalcin   PetscFunctionBegin;
4610700a824SBarry Smith   PetscValidHeaderSpecific(snes,SNES_CLASSID,1);
462aa3661deSLisandro Dalcin 
46398613b67SLisandro Dalcin   if (!snes->vec_func && (snes->jacobian || snes->jacobian_pre)) {
46498613b67SLisandro Dalcin     Mat A = snes->jacobian, B = snes->jacobian_pre;
4652a7a6963SBarry Smith     ierr = MatCreateVecs(A ? A : B, NULL,&snes->vec_func);CHKERRQ(ierr);
46698613b67SLisandro Dalcin   }
46798613b67SLisandro Dalcin 
468aa3661deSLisandro Dalcin   if (version == 1) {
469aa3661deSLisandro Dalcin     ierr = MatCreateSNESMF(snes,&J);CHKERRQ(ierr);
47098613b67SLisandro Dalcin     ierr = MatMFFDSetOptionsPrefix(J,((PetscObject)snes)->prefix);CHKERRQ(ierr);
4719c6ac3b3SBarry Smith     ierr = MatSetFromOptions(J);CHKERRQ(ierr);
472aa3661deSLisandro Dalcin   } else if (version == 2) {
473e32f2f54SBarry Smith     if (!snes->vec_func) SETERRQ(PETSC_COMM_SELF,PETSC_ERR_ARG_WRONGSTATE,"SNESSetFunction() must be called first");
474570b7f6dSBarry Smith #if !defined(PETSC_USE_COMPLEX) && !defined(PETSC_USE_REAL_SINGLE) && !defined(PETSC_USE_REAL___FLOAT128) && !defined(PETSC_USE_REAL___FP16)
475aa3661deSLisandro Dalcin     ierr = SNESDefaultMatrixFreeCreate2(snes,snes->vec_func,&J);CHKERRQ(ierr);
476aa3661deSLisandro Dalcin #else
477e32f2f54SBarry Smith     SETERRQ(PETSC_COMM_SELF,PETSC_ERR_SUP, "matrix-free operator rutines (version 2)");
478aa3661deSLisandro Dalcin #endif
479a8248277SBarry Smith   } else SETERRQ(PETSC_COMM_SELF,PETSC_ERR_ARG_OUTOFRANGE, "matrix-free operator rutines, only version 1 and 2");
480aa3661deSLisandro Dalcin 
481895c21f2SBarry Smith   /* attach any user provided null space that was on Amat to the newly created matrix free matrix */
482895c21f2SBarry Smith   if (snes->jacobian) {
483895c21f2SBarry Smith     ierr = MatGetNullSpace(snes->jacobian,&nullsp);CHKERRQ(ierr);
484895c21f2SBarry Smith     if (nullsp) {
485895c21f2SBarry Smith       ierr = MatSetNullSpace(J,nullsp);CHKERRQ(ierr);
486895c21f2SBarry Smith     }
487895c21f2SBarry Smith   }
488895c21f2SBarry Smith 
489aa3661deSLisandro Dalcin   ierr = PetscInfo1(snes,"Setting default matrix-free operator routines (version %D)\n", version);CHKERRQ(ierr);
490d3462f78SMatthew Knepley   if (hasOperator) {
4913232da50SPeter Brune 
492aa3661deSLisandro Dalcin     /* This version replaces the user provided Jacobian matrix with a
493aa3661deSLisandro Dalcin        matrix-free version but still employs the user-provided preconditioner matrix. */
494aa3661deSLisandro Dalcin     ierr = SNESSetJacobian(snes,J,0,0,0);CHKERRQ(ierr);
495aa3661deSLisandro Dalcin   } else {
496aa3661deSLisandro Dalcin     /* This version replaces both the user-provided Jacobian and the user-
4973232da50SPeter Brune      provided preconditioner Jacobian with the default matrix free version. */
498efd4aadfSBarry Smith     if ((snes->npcside== PC_LEFT) && snes->npc) {
499d728fb7dSPeter Brune       if (!snes->jacobian){ierr = SNESSetJacobian(snes,J,0,0,0);CHKERRQ(ierr);}
500172a4300SPeter Brune     } else {
50128a52e04SBarry Smith       ierr = SNESSetJacobian(snes,J,J,MatMFFDComputeJacobian,0);CHKERRQ(ierr);
502172a4300SPeter Brune     }
503aa3661deSLisandro Dalcin     /* Force no preconditioner */
504aa3661deSLisandro Dalcin     ierr = SNESGetKSP(snes,&ksp);CHKERRQ(ierr);
505aa3661deSLisandro Dalcin     ierr = KSPGetPC(ksp,&pc);CHKERRQ(ierr);
506251f4c67SDmitry Karpeev     ierr = PetscObjectTypeCompare((PetscObject)pc,PCSHELL,&match);CHKERRQ(ierr);
507aa3661deSLisandro Dalcin     if (!match) {
508aa3661deSLisandro Dalcin       ierr = PetscInfo(snes,"Setting default matrix-free preconditioner routines\nThat is no preconditioner is being used\n");CHKERRQ(ierr);
509aa3661deSLisandro Dalcin       ierr = PCSetType(pc,PCNONE);CHKERRQ(ierr);
510aa3661deSLisandro Dalcin     }
511aa3661deSLisandro Dalcin   }
5126bf464f9SBarry Smith   ierr = MatDestroy(&J);CHKERRQ(ierr);
513aa3661deSLisandro Dalcin   PetscFunctionReturn(0);
514aa3661deSLisandro Dalcin }
515aa3661deSLisandro Dalcin 
516dfe15315SJed Brown static PetscErrorCode DMRestrictHook_SNESVecSol(DM dmfine,Mat Restrict,Vec Rscale,Mat Inject,DM dmcoarse,void *ctx)
517dfe15315SJed Brown {
518dfe15315SJed Brown   SNES           snes = (SNES)ctx;
519dfe15315SJed Brown   PetscErrorCode ierr;
5200298fd71SBarry Smith   Vec            Xfine,Xfine_named = NULL,Xcoarse;
521dfe15315SJed Brown 
522dfe15315SJed Brown   PetscFunctionBegin;
52316ebb321SJed Brown   if (PetscLogPrintInfo) {
52416ebb321SJed Brown     PetscInt finelevel,coarselevel,fineclevel,coarseclevel;
52516ebb321SJed Brown     ierr = DMGetRefineLevel(dmfine,&finelevel);CHKERRQ(ierr);
52616ebb321SJed Brown     ierr = DMGetCoarsenLevel(dmfine,&fineclevel);CHKERRQ(ierr);
52716ebb321SJed Brown     ierr = DMGetRefineLevel(dmcoarse,&coarselevel);CHKERRQ(ierr);
52816ebb321SJed Brown     ierr = DMGetCoarsenLevel(dmcoarse,&coarseclevel);CHKERRQ(ierr);
52916ebb321SJed Brown     ierr = PetscInfo4(dmfine,"Restricting SNES solution vector from level %D-%D to level %D-%D\n",finelevel,fineclevel,coarselevel,coarseclevel);CHKERRQ(ierr);
53016ebb321SJed Brown   }
531dfe15315SJed Brown   if (dmfine == snes->dm) Xfine = snes->vec_sol;
532dfe15315SJed Brown   else {
533dfe15315SJed Brown     ierr  = DMGetNamedGlobalVector(dmfine,"SNESVecSol",&Xfine_named);CHKERRQ(ierr);
534dfe15315SJed Brown     Xfine = Xfine_named;
535dfe15315SJed Brown   }
536dfe15315SJed Brown   ierr = DMGetNamedGlobalVector(dmcoarse,"SNESVecSol",&Xcoarse);CHKERRQ(ierr);
537907f5c5aSLawrence Mitchell   if (Inject) {
538907f5c5aSLawrence Mitchell     ierr = MatRestrict(Inject,Xfine,Xcoarse);CHKERRQ(ierr);
539907f5c5aSLawrence Mitchell   } else {
540dfe15315SJed Brown     ierr = MatRestrict(Restrict,Xfine,Xcoarse);CHKERRQ(ierr);
541dfe15315SJed Brown     ierr = VecPointwiseMult(Xcoarse,Xcoarse,Rscale);CHKERRQ(ierr);
542907f5c5aSLawrence Mitchell   }
543dfe15315SJed Brown   ierr = DMRestoreNamedGlobalVector(dmcoarse,"SNESVecSol",&Xcoarse);CHKERRQ(ierr);
544dfe15315SJed Brown   if (Xfine_named) {ierr = DMRestoreNamedGlobalVector(dmfine,"SNESVecSol",&Xfine_named);CHKERRQ(ierr);}
545dfe15315SJed Brown   PetscFunctionReturn(0);
546dfe15315SJed Brown }
547dfe15315SJed Brown 
54816ebb321SJed Brown static PetscErrorCode DMCoarsenHook_SNESVecSol(DM dm,DM dmc,void *ctx)
54916ebb321SJed Brown {
55016ebb321SJed Brown   PetscErrorCode ierr;
55116ebb321SJed Brown 
55216ebb321SJed Brown   PetscFunctionBegin;
55316ebb321SJed Brown   ierr = DMCoarsenHookAdd(dmc,DMCoarsenHook_SNESVecSol,DMRestrictHook_SNESVecSol,ctx);CHKERRQ(ierr);
55416ebb321SJed Brown   PetscFunctionReturn(0);
55516ebb321SJed Brown }
55616ebb321SJed Brown 
557a6950cb2SJed Brown /* This may be called to rediscretize the operator on levels of linear multigrid. The DM shuffle is so the user can
558a6950cb2SJed Brown  * safely call SNESGetDM() in their residual evaluation routine. */
55923ee1639SBarry Smith static PetscErrorCode KSPComputeOperators_SNES(KSP ksp,Mat A,Mat B,void *ctx)
560caa4e7f2SJed Brown {
561caa4e7f2SJed Brown   SNES           snes = (SNES)ctx;
562caa4e7f2SJed Brown   PetscErrorCode ierr;
563caa4e7f2SJed Brown   Mat            Asave = A,Bsave = B;
5640298fd71SBarry Smith   Vec            X,Xnamed = NULL;
565dfe15315SJed Brown   DM             dmsave;
5664e269d77SPeter Brune   void           *ctxsave;
56725ce1634SJed Brown   PetscErrorCode (*jac)(SNES,Vec,Mat,Mat,void*) = NULL;
568caa4e7f2SJed Brown 
569caa4e7f2SJed Brown   PetscFunctionBegin;
570dfe15315SJed Brown   dmsave = snes->dm;
571dfe15315SJed Brown   ierr   = KSPGetDM(ksp,&snes->dm);CHKERRQ(ierr);
572dfe15315SJed Brown   if (dmsave == snes->dm) X = snes->vec_sol; /* We are on the finest level */
573dfe15315SJed Brown   else {                                     /* We are on a coarser level, this vec was initialized using a DM restrict hook */
574dfe15315SJed Brown     ierr = DMGetNamedGlobalVector(snes->dm,"SNESVecSol",&Xnamed);CHKERRQ(ierr);
575dfe15315SJed Brown     X    = Xnamed;
5760298fd71SBarry Smith     ierr = SNESGetJacobian(snes,NULL,NULL,&jac,&ctxsave);CHKERRQ(ierr);
5774e269d77SPeter Brune     /* If the DM's don't match up, the MatFDColoring context needed for the jacobian won't match up either -- fixit. */
5788d359177SBarry Smith     if (jac == SNESComputeJacobianDefaultColor) {
5798d359177SBarry Smith       ierr = SNESSetJacobian(snes,NULL,NULL,SNESComputeJacobianDefaultColor,0);CHKERRQ(ierr);
580dfe15315SJed Brown     }
5814e269d77SPeter Brune   }
5824e269d77SPeter Brune   /* put the previous context back */
5834e269d77SPeter Brune 
584d1e9a80fSBarry Smith   ierr = SNESComputeJacobian(snes,X,A,B);CHKERRQ(ierr);
5858d359177SBarry Smith   if (snes->dm != dmsave && jac == SNESComputeJacobianDefaultColor) {
5860298fd71SBarry Smith     ierr = SNESSetJacobian(snes,NULL,NULL,jac,ctxsave);CHKERRQ(ierr);
5874e269d77SPeter Brune   }
5884e269d77SPeter Brune 
589ce94432eSBarry Smith   if (A != Asave || B != Bsave) SETERRQ(PetscObjectComm((PetscObject)snes),PETSC_ERR_SUP,"No support for changing matrices at this time");
590dfe15315SJed Brown   if (Xnamed) {
591dfe15315SJed Brown     ierr = DMRestoreNamedGlobalVector(snes->dm,"SNESVecSol",&Xnamed);CHKERRQ(ierr);
592dfe15315SJed Brown   }
593dfe15315SJed Brown   snes->dm = dmsave;
594caa4e7f2SJed Brown   PetscFunctionReturn(0);
595caa4e7f2SJed Brown }
596caa4e7f2SJed Brown 
5976cab3a1bSJed Brown /*@
5986cab3a1bSJed Brown    SNESSetUpMatrices - ensures that matrices are available for SNES, to be called by SNESSetUp_XXX()
5996cab3a1bSJed Brown 
6006cab3a1bSJed Brown    Collective
6016cab3a1bSJed Brown 
6026cab3a1bSJed Brown    Input Arguments:
6036cab3a1bSJed Brown .  snes - snes to configure
6046cab3a1bSJed Brown 
6056cab3a1bSJed Brown    Level: developer
6066cab3a1bSJed Brown 
6076cab3a1bSJed Brown .seealso: SNESSetUp()
6086cab3a1bSJed Brown @*/
6096cab3a1bSJed Brown PetscErrorCode SNESSetUpMatrices(SNES snes)
6106cab3a1bSJed Brown {
6116cab3a1bSJed Brown   PetscErrorCode ierr;
6126cab3a1bSJed Brown   DM             dm;
613942e3340SBarry Smith   DMSNES         sdm;
6146cab3a1bSJed Brown 
6156cab3a1bSJed Brown   PetscFunctionBegin;
6166cab3a1bSJed Brown   ierr = SNESGetDM(snes,&dm);CHKERRQ(ierr);
617942e3340SBarry Smith   ierr = DMGetDMSNES(dm,&sdm);CHKERRQ(ierr);
618ce94432eSBarry Smith   if (!sdm->ops->computejacobian) SETERRQ(PetscObjectComm((PetscObject)snes),PETSC_ERR_PLIB,"DMSNES not properly configured");
619f5af7f23SKarl Rupp   else if (!snes->jacobian && snes->mf) {
6206cab3a1bSJed Brown     Mat  J;
6216cab3a1bSJed Brown     void *functx;
6226cab3a1bSJed Brown     ierr = MatCreateSNESMF(snes,&J);CHKERRQ(ierr);
6236cab3a1bSJed Brown     ierr = MatMFFDSetOptionsPrefix(J,((PetscObject)snes)->prefix);CHKERRQ(ierr);
6246cab3a1bSJed Brown     ierr = MatSetFromOptions(J);CHKERRQ(ierr);
6250298fd71SBarry Smith     ierr = SNESGetFunction(snes,NULL,NULL,&functx);CHKERRQ(ierr);
6263232da50SPeter Brune     ierr = SNESSetJacobian(snes,J,J,0,0);CHKERRQ(ierr);
6276cab3a1bSJed Brown     ierr = MatDestroy(&J);CHKERRQ(ierr);
628caa4e7f2SJed Brown   } else if (snes->mf_operator && !snes->jacobian_pre && !snes->jacobian) {
6296cab3a1bSJed Brown     Mat J,B;
6306cab3a1bSJed Brown     ierr = MatCreateSNESMF(snes,&J);CHKERRQ(ierr);
6316cab3a1bSJed Brown     ierr = MatMFFDSetOptionsPrefix(J,((PetscObject)snes)->prefix);CHKERRQ(ierr);
6326cab3a1bSJed Brown     ierr = MatSetFromOptions(J);CHKERRQ(ierr);
633b412c318SBarry Smith     ierr = DMCreateMatrix(snes->dm,&B);CHKERRQ(ierr);
63406f20277SJed Brown     /* sdm->computejacobian was already set to reach here */
6350298fd71SBarry Smith     ierr = SNESSetJacobian(snes,J,B,NULL,NULL);CHKERRQ(ierr);
6366cab3a1bSJed Brown     ierr = MatDestroy(&J);CHKERRQ(ierr);
6376cab3a1bSJed Brown     ierr = MatDestroy(&B);CHKERRQ(ierr);
638caa4e7f2SJed Brown   } else if (!snes->jacobian_pre) {
6391ba9b98eSMatthew G. Knepley     PetscDS   prob;
6406cab3a1bSJed Brown     Mat       J, B;
6411ba9b98eSMatthew G. Knepley     PetscBool hasPrec = PETSC_FALSE;
6421ba9b98eSMatthew G. Knepley 
6436cab3a1bSJed Brown     J    = snes->jacobian;
6441ba9b98eSMatthew G. Knepley     ierr = DMGetDS(dm, &prob);CHKERRQ(ierr);
6451ba9b98eSMatthew G. Knepley     if (prob) {ierr = PetscDSHasJacobianPreconditioner(prob, &hasPrec);CHKERRQ(ierr);}
646ec9a985fSMatthew G. Knepley     if (J)            {ierr = PetscObjectReference((PetscObject) J);CHKERRQ(ierr);}
647ec9a985fSMatthew G. Knepley     else if (hasPrec) {ierr = DMCreateMatrix(snes->dm, &J);CHKERRQ(ierr);}
648b412c318SBarry Smith     ierr = DMCreateMatrix(snes->dm, &B);CHKERRQ(ierr);
6490298fd71SBarry Smith     ierr = SNESSetJacobian(snes, J ? J : B, B, NULL, NULL);CHKERRQ(ierr);
6501ba9b98eSMatthew G. Knepley     ierr = MatDestroy(&J);CHKERRQ(ierr);
6516cab3a1bSJed Brown     ierr = MatDestroy(&B);CHKERRQ(ierr);
6526cab3a1bSJed Brown   }
653caa4e7f2SJed Brown   {
654caa4e7f2SJed Brown     KSP ksp;
655caa4e7f2SJed Brown     ierr = SNESGetKSP(snes,&ksp);CHKERRQ(ierr);
656caa4e7f2SJed Brown     ierr = KSPSetComputeOperators(ksp,KSPComputeOperators_SNES,snes);CHKERRQ(ierr);
65716ebb321SJed Brown     ierr = DMCoarsenHookAdd(snes->dm,DMCoarsenHook_SNESVecSol,DMRestrictHook_SNESVecSol,snes);CHKERRQ(ierr);
658caa4e7f2SJed Brown   }
6596cab3a1bSJed Brown   PetscFunctionReturn(0);
6606cab3a1bSJed Brown }
6616cab3a1bSJed Brown 
662fde5950dSBarry Smith /*@C
663fde5950dSBarry Smith    SNESMonitorSetFromOptions - Sets a monitor function and viewer appropriate for the type indicated by the user
664fde5950dSBarry Smith 
665fde5950dSBarry Smith    Collective on SNES
666fde5950dSBarry Smith 
667fde5950dSBarry Smith    Input Parameters:
668fde5950dSBarry Smith +  snes - SNES object you wish to monitor
669fde5950dSBarry Smith .  name - the monitor type one is seeking
670fde5950dSBarry Smith .  help - message indicating what monitoring is done
671fde5950dSBarry Smith .  manual - manual page for the monitor
672fde5950dSBarry Smith .  monitor - the monitor function
673fde5950dSBarry Smith -  monitorsetup - a function that is called once ONLY if the user selected this monitor that may set additional features of the SNES or PetscViewer objects
674fde5950dSBarry Smith 
675fde5950dSBarry Smith    Level: developer
676fde5950dSBarry Smith 
677fde5950dSBarry Smith .seealso: PetscOptionsGetViewer(), PetscOptionsGetReal(), PetscOptionsHasName(), PetscOptionsGetString(),
678fde5950dSBarry Smith           PetscOptionsGetIntArray(), PetscOptionsGetRealArray(), PetscOptionsBool()
679fde5950dSBarry Smith           PetscOptionsInt(), PetscOptionsString(), PetscOptionsReal(), PetscOptionsBool(),
680fde5950dSBarry Smith           PetscOptionsName(), PetscOptionsBegin(), PetscOptionsEnd(), PetscOptionsHead(),
681fde5950dSBarry Smith           PetscOptionsStringArray(),PetscOptionsRealArray(), PetscOptionsScalar(),
682fde5950dSBarry Smith           PetscOptionsBoolGroupBegin(), PetscOptionsBoolGroup(), PetscOptionsBoolGroupEnd(),
683fde5950dSBarry Smith           PetscOptionsFList(), PetscOptionsEList()
684fde5950dSBarry Smith @*/
685d43b4f6eSBarry Smith PetscErrorCode  SNESMonitorSetFromOptions(SNES snes,const char name[],const char help[], const char manual[],PetscErrorCode (*monitor)(SNES,PetscInt,PetscReal,PetscViewerAndFormat*),PetscErrorCode (*monitorsetup)(SNES,PetscViewerAndFormat*))
686fde5950dSBarry Smith {
687fde5950dSBarry Smith   PetscErrorCode    ierr;
688fde5950dSBarry Smith   PetscViewer       viewer;
689fde5950dSBarry Smith   PetscViewerFormat format;
690fde5950dSBarry Smith   PetscBool         flg;
691fde5950dSBarry Smith 
692fde5950dSBarry Smith   PetscFunctionBegin;
693fde5950dSBarry Smith   ierr = PetscOptionsGetViewer(PetscObjectComm((PetscObject)snes),((PetscObject)snes)->prefix,name,&viewer,&format,&flg);CHKERRQ(ierr);
694fde5950dSBarry Smith   if (flg) {
695d43b4f6eSBarry Smith     PetscViewerAndFormat *vf;
696d43b4f6eSBarry Smith     ierr = PetscViewerAndFormatCreate(viewer,format,&vf);CHKERRQ(ierr);
697d43b4f6eSBarry Smith     ierr = PetscObjectDereference((PetscObject)viewer);CHKERRQ(ierr);
698fde5950dSBarry Smith     if (monitorsetup) {
699d43b4f6eSBarry Smith       ierr = (*monitorsetup)(snes,vf);CHKERRQ(ierr);
700fde5950dSBarry Smith     }
701d43b4f6eSBarry Smith     ierr = SNESMonitorSet(snes,(PetscErrorCode (*)(SNES,PetscInt,PetscReal,void*))monitor,vf,(PetscErrorCode (*)(void**))PetscViewerAndFormatDestroy);CHKERRQ(ierr);
702fde5950dSBarry Smith   }
703fde5950dSBarry Smith   PetscFunctionReturn(0);
704fde5950dSBarry Smith }
705fde5950dSBarry Smith 
7069b94acceSBarry Smith /*@
70794b7f48cSBarry Smith    SNESSetFromOptions - Sets various SNES and KSP parameters from user options.
7089b94acceSBarry Smith 
709c7afd0dbSLois Curfman McInnes    Collective on SNES
710c7afd0dbSLois Curfman McInnes 
7119b94acceSBarry Smith    Input Parameter:
7129b94acceSBarry Smith .  snes - the SNES context
7139b94acceSBarry Smith 
71436851e7fSLois Curfman McInnes    Options Database Keys:
715722329fbSBarry Smith +  -snes_type <type> - newtonls, newtontr, ngmres, ncg, nrichardson, qn, vi, fas, SNESType for complete list
71682738288SBarry Smith .  -snes_stol - convergence tolerance in terms of the norm
71782738288SBarry Smith                 of the change in the solution between steps
71870441072SBarry Smith .  -snes_atol <abstol> - absolute tolerance of residual norm
719b39c3a46SLois Curfman McInnes .  -snes_rtol <rtol> - relative decrease in tolerance norm from initial
720e4d06f11SPatrick Farrell .  -snes_divergence_tolerance <divtol> - if the residual goes above divtol*rnorm0, exit with divergence
721be5caee7SBarry Smith .  -snes_force_iteration <force> - force SNESSolve() to take at least one iteration
722b39c3a46SLois Curfman McInnes .  -snes_max_it <max_it> - maximum number of iterations
723b39c3a46SLois Curfman McInnes .  -snes_max_funcs <max_funcs> - maximum number of function evaluations
7244839bfe8SBarry Smith .  -snes_max_fail <max_fail> - maximum number of line search failures allowed before stopping, default is none
725ddf469c8SBarry Smith .  -snes_max_linear_solve_fail - number of linear solver failures before SNESSolve() stops
726a8054027SBarry Smith .  -snes_lag_preconditioner <lag> - how often preconditioner is rebuilt (use -1 to never rebuild)
727e35cf81dSBarry Smith .  -snes_lag_jacobian <lag> - how often Jacobian is rebuilt (use -1 to never rebuild)
728b39c3a46SLois Curfman McInnes .  -snes_trtol <trtol> - trust region tolerance
7292492ecdbSBarry Smith .  -snes_no_convergence_test - skip convergence test in nonlinear
73082738288SBarry Smith                                solver; hence iterations will continue until max_it
7311fbbfb26SLois Curfman McInnes                                or some other criterion is reached. Saves expense
73282738288SBarry Smith                                of convergence test
733fde5950dSBarry Smith .  -snes_monitor [ascii][:filename][:viewer format] - prints residual norm at each iteration. if no filename given prints to stdout
734fde5950dSBarry Smith .  -snes_monitor_solution [ascii binary draw][:filename][:viewer format] - plots solution at each iteration
735fde5950dSBarry Smith .  -snes_monitor_residual [ascii binary draw][:filename][:viewer format] - plots residual (not its norm) at each iteration
736fde5950dSBarry Smith .  -snes_monitor_solution_update [ascii binary draw][:filename][:viewer format] - plots update to solution at each iteration
7374619e776SBarry Smith .  -snes_monitor_lg_residualnorm - plots residual norm at each iteration
738459f5d12SBarry Smith .  -snes_monitor_lg_range - plots residual norm at each iteration
739e24b481bSBarry Smith .  -snes_fd - use finite differences to compute Jacobian; very slow, only for testing
740e2e60de9SPeter Brune .  -snes_fd_color - use finite differences with coloring to compute Jacobian
7415968eb51SBarry Smith .  -snes_mf_ksp_monitor - if using matrix-free multiply then print h at each KSP iteration
742fee2055bSBarry Smith -  -snes_converged_reason - print the reason for convergence/divergence after each solve
74382738288SBarry Smith 
74482738288SBarry Smith     Options Database for Eisenstat-Walker method:
745fa9f3622SBarry Smith +  -snes_ksp_ew - use Eisenstat-Walker method for determining linear system convergence
7464b27c08aSLois Curfman McInnes .  -snes_ksp_ew_version ver - version of  Eisenstat-Walker method
74736851e7fSLois Curfman McInnes .  -snes_ksp_ew_rtol0 <rtol0> - Sets rtol0
74836851e7fSLois Curfman McInnes .  -snes_ksp_ew_rtolmax <rtolmax> - Sets rtolmax
74936851e7fSLois Curfman McInnes .  -snes_ksp_ew_gamma <gamma> - Sets gamma
75036851e7fSLois Curfman McInnes .  -snes_ksp_ew_alpha <alpha> - Sets alpha
75136851e7fSLois Curfman McInnes .  -snes_ksp_ew_alpha2 <alpha2> - Sets alpha2
75236851e7fSLois Curfman McInnes -  -snes_ksp_ew_threshold <threshold> - Sets threshold
75382738288SBarry Smith 
75411ca99fdSLois Curfman McInnes    Notes:
75511ca99fdSLois Curfman McInnes    To see all options, run your program with the -help option or consult
756a7f22e61SSatish Balay    Users-Manual: ch_snes
75783e2fdc7SBarry Smith 
75836851e7fSLois Curfman McInnes    Level: beginner
75936851e7fSLois Curfman McInnes 
7609b94acceSBarry Smith .keywords: SNES, nonlinear, set, options, database
7619b94acceSBarry Smith 
76269ed319cSSatish Balay .seealso: SNESSetOptionsPrefix()
7639b94acceSBarry Smith @*/
7647087cfbeSBarry Smith PetscErrorCode  SNESSetFromOptions(SNES snes)
7659b94acceSBarry Smith {
7668afaa268SBarry Smith   PetscBool      flg,pcset,persist,set;
767d8f46077SPeter Brune   PetscInt       i,indx,lag,grids;
76804d7464bSBarry Smith   const char     *deft        = SNESNEWTONLS;
76985385478SLisandro Dalcin   const char     *convtests[] = {"default","skip"};
77085385478SLisandro Dalcin   SNESKSPEW      *kctx        = NULL;
771e8105e01SRichard Katz   char           type[256], monfilename[PETSC_MAX_PATH_LEN];
77285385478SLisandro Dalcin   PetscErrorCode ierr;
773c40d0f55SPeter Brune   PCSide         pcside;
774a64e098fSPeter Brune   const char     *optionsprefix;
7759b94acceSBarry Smith 
7763a40ed3dSBarry Smith   PetscFunctionBegin;
7770700a824SBarry Smith   PetscValidHeaderSpecific(snes,SNES_CLASSID,1);
7780f51fdf8SToby Isaac   ierr = SNESRegisterAll();CHKERRQ(ierr);
7793194b578SJed Brown   ierr = PetscObjectOptionsBegin((PetscObject)snes);CHKERRQ(ierr);
780639ff905SBarry Smith   if (((PetscObject)snes)->type_name) deft = ((PetscObject)snes)->type_name;
781a264d7a6SBarry Smith   ierr = PetscOptionsFList("-snes_type","Nonlinear solver method","SNESSetType",SNESList,deft,type,256,&flg);CHKERRQ(ierr);
782d64ed03dSBarry Smith   if (flg) {
783186905e3SBarry Smith     ierr = SNESSetType(snes,type);CHKERRQ(ierr);
7847adad957SLisandro Dalcin   } else if (!((PetscObject)snes)->type_name) {
785186905e3SBarry Smith     ierr = SNESSetType(snes,deft);CHKERRQ(ierr);
786d64ed03dSBarry Smith   }
78794ae4db5SBarry Smith   ierr = PetscOptionsReal("-snes_stol","Stop if step length less than","SNESSetTolerances",snes->stol,&snes->stol,NULL);CHKERRQ(ierr);
78894ae4db5SBarry Smith   ierr = PetscOptionsReal("-snes_atol","Stop if function norm less than","SNESSetTolerances",snes->abstol,&snes->abstol,NULL);CHKERRQ(ierr);
789186905e3SBarry Smith 
79094ae4db5SBarry Smith   ierr = PetscOptionsReal("-snes_rtol","Stop if decrease in function norm less than","SNESSetTolerances",snes->rtol,&snes->rtol,NULL);CHKERRQ(ierr);
791e4d06f11SPatrick Farrell   ierr = PetscOptionsReal("-snes_divergence_tolerance","Stop if residual norm increases by this factor","SNESSetDivergenceTolerance",snes->divtol,&snes->divtol,NULL);CHKERRQ(ierr);
7920298fd71SBarry Smith   ierr = PetscOptionsInt("-snes_max_it","Maximum iterations","SNESSetTolerances",snes->max_its,&snes->max_its,NULL);CHKERRQ(ierr);
7930298fd71SBarry Smith   ierr = PetscOptionsInt("-snes_max_funcs","Maximum function evaluations","SNESSetTolerances",snes->max_funcs,&snes->max_funcs,NULL);CHKERRQ(ierr);
7940298fd71SBarry Smith   ierr = PetscOptionsInt("-snes_max_fail","Maximum nonlinear step failures","SNESSetMaxNonlinearStepFailures",snes->maxFailures,&snes->maxFailures,NULL);CHKERRQ(ierr);
7950298fd71SBarry Smith   ierr = PetscOptionsInt("-snes_max_linear_solve_fail","Maximum failures in linear solves allowed","SNESSetMaxLinearSolveFailures",snes->maxLinearSolveFailures,&snes->maxLinearSolveFailures,NULL);CHKERRQ(ierr);
7960298fd71SBarry Smith   ierr = PetscOptionsBool("-snes_error_if_not_converged","Generate error if solver does not converge","SNESSetErrorIfNotConverged",snes->errorifnotconverged,&snes->errorifnotconverged,NULL);CHKERRQ(ierr);
7970d6f27a8SBarry Smith   ierr = PetscOptionsBool("-snes_force_iteration","Force SNESSolve() to take at least one iteration","SNESSetForceIteration",snes->forceiteration,&snes->forceiteration,NULL);CHKERRQ(ierr);
79885385478SLisandro Dalcin 
799a8054027SBarry Smith   ierr = PetscOptionsInt("-snes_lag_preconditioner","How often to rebuild preconditioner","SNESSetLagPreconditioner",snes->lagpreconditioner,&lag,&flg);CHKERRQ(ierr);
800a8054027SBarry Smith   if (flg) {
801a8054027SBarry Smith     ierr = SNESSetLagPreconditioner(snes,lag);CHKERRQ(ierr);
802a8054027SBarry Smith   }
80337ec4e1aSPeter Brune   ierr = PetscOptionsBool("-snes_lag_preconditioner_persists","Preconditioner lagging through multiple solves","SNESSetLagPreconditionerPersists",snes->lagjac_persist,&persist,&flg);CHKERRQ(ierr);
80437ec4e1aSPeter Brune   if (flg) {
80537ec4e1aSPeter Brune     ierr = SNESSetLagPreconditionerPersists(snes,persist);CHKERRQ(ierr);
80637ec4e1aSPeter Brune   }
807e35cf81dSBarry Smith   ierr = PetscOptionsInt("-snes_lag_jacobian","How often to rebuild Jacobian","SNESSetLagJacobian",snes->lagjacobian,&lag,&flg);CHKERRQ(ierr);
808e35cf81dSBarry Smith   if (flg) {
809e35cf81dSBarry Smith     ierr = SNESSetLagJacobian(snes,lag);CHKERRQ(ierr);
810e35cf81dSBarry Smith   }
81137ec4e1aSPeter Brune   ierr = PetscOptionsBool("-snes_lag_jacobian_persists","Jacobian lagging through multiple solves","SNESSetLagJacobianPersists",snes->lagjac_persist,&persist,&flg);CHKERRQ(ierr);
81237ec4e1aSPeter Brune   if (flg) {
81337ec4e1aSPeter Brune     ierr = SNESSetLagJacobianPersists(snes,persist);CHKERRQ(ierr);
81437ec4e1aSPeter Brune   }
81537ec4e1aSPeter Brune 
816efd51863SBarry Smith   ierr = PetscOptionsInt("-snes_grid_sequence","Use grid sequencing to generate initial guess","SNESSetGridSequence",snes->gridsequence,&grids,&flg);CHKERRQ(ierr);
817efd51863SBarry Smith   if (flg) {
818efd51863SBarry Smith     ierr = SNESSetGridSequence(snes,grids);CHKERRQ(ierr);
819efd51863SBarry Smith   }
820a8054027SBarry Smith 
82185385478SLisandro Dalcin   ierr = PetscOptionsEList("-snes_convergence_test","Convergence test","SNESSetConvergenceTest",convtests,2,"default",&indx,&flg);CHKERRQ(ierr);
82285385478SLisandro Dalcin   if (flg) {
82385385478SLisandro Dalcin     switch (indx) {
8248d359177SBarry Smith     case 0: ierr = SNESSetConvergenceTest(snes,SNESConvergedDefault,NULL,NULL);CHKERRQ(ierr); break;
825e2a6519dSDmitry Karpeev     case 1: ierr = SNESSetConvergenceTest(snes,SNESConvergedSkip,NULL,NULL);CHKERRQ(ierr);    break;
82685385478SLisandro Dalcin     }
82785385478SLisandro Dalcin   }
82885385478SLisandro Dalcin 
829365a6726SPeter Brune   ierr = PetscOptionsEList("-snes_norm_schedule","SNES Norm schedule","SNESSetNormSchedule",SNESNormSchedules,5,"function",&indx,&flg);CHKERRQ(ierr);
830365a6726SPeter Brune   if (flg) { ierr = SNESSetNormSchedule(snes,(SNESNormSchedule)indx);CHKERRQ(ierr); }
831fdacfa88SPeter Brune 
83247073ea2SPeter Brune   ierr = PetscOptionsEList("-snes_function_type","SNES Norm schedule","SNESSetFunctionType",SNESFunctionTypes,2,"unpreconditioned",&indx,&flg);CHKERRQ(ierr);
83347073ea2SPeter Brune   if (flg) { ierr = SNESSetFunctionType(snes,(SNESFunctionType)indx);CHKERRQ(ierr); }
834186905e3SBarry Smith 
83585385478SLisandro Dalcin   kctx = (SNESKSPEW*)snes->kspconvctx;
83685385478SLisandro Dalcin 
8370298fd71SBarry Smith   ierr = PetscOptionsBool("-snes_ksp_ew","Use Eisentat-Walker linear system convergence test","SNESKSPSetUseEW",snes->ksp_ewconv,&snes->ksp_ewconv,NULL);CHKERRQ(ierr);
838186905e3SBarry Smith 
83994ae4db5SBarry Smith   ierr = PetscOptionsInt("-snes_ksp_ew_version","Version 1, 2 or 3","SNESKSPSetParametersEW",kctx->version,&kctx->version,NULL);CHKERRQ(ierr);
84094ae4db5SBarry Smith   ierr = PetscOptionsReal("-snes_ksp_ew_rtol0","0 <= rtol0 < 1","SNESKSPSetParametersEW",kctx->rtol_0,&kctx->rtol_0,NULL);CHKERRQ(ierr);
84194ae4db5SBarry Smith   ierr = PetscOptionsReal("-snes_ksp_ew_rtolmax","0 <= rtolmax < 1","SNESKSPSetParametersEW",kctx->rtol_max,&kctx->rtol_max,NULL);CHKERRQ(ierr);
84294ae4db5SBarry Smith   ierr = PetscOptionsReal("-snes_ksp_ew_gamma","0 <= gamma <= 1","SNESKSPSetParametersEW",kctx->gamma,&kctx->gamma,NULL);CHKERRQ(ierr);
84394ae4db5SBarry Smith   ierr = PetscOptionsReal("-snes_ksp_ew_alpha","1 < alpha <= 2","SNESKSPSetParametersEW",kctx->alpha,&kctx->alpha,NULL);CHKERRQ(ierr);
84494ae4db5SBarry Smith   ierr = PetscOptionsReal("-snes_ksp_ew_alpha2","alpha2","SNESKSPSetParametersEW",kctx->alpha2,&kctx->alpha2,NULL);CHKERRQ(ierr);
84594ae4db5SBarry Smith   ierr = PetscOptionsReal("-snes_ksp_ew_threshold","0 < threshold < 1","SNESKSPSetParametersEW",kctx->threshold,&kctx->threshold,NULL);CHKERRQ(ierr);
846186905e3SBarry Smith 
84790d69ab7SBarry Smith   flg  = PETSC_FALSE;
8488afaa268SBarry Smith   ierr = PetscOptionsBool("-snes_monitor_cancel","Remove all monitors","SNESMonitorCancel",flg,&flg,&set);CHKERRQ(ierr);
8498afaa268SBarry Smith   if (set && flg) {ierr = SNESMonitorCancel(snes);CHKERRQ(ierr);}
850eabae89aSBarry Smith 
851fde5950dSBarry Smith   ierr = SNESMonitorSetFromOptions(snes,"-snes_monitor","Monitor norm of function","SNESMonitorDefault",SNESMonitorDefault,NULL);CHKERRQ(ierr);
852fde5950dSBarry Smith   ierr = SNESMonitorSetFromOptions(snes,"-snes_monitor_short","Monitor norm of function with fewer digits","SNESMonitorDefaultShort",SNESMonitorDefaultShort,NULL);CHKERRQ(ierr);
853fde5950dSBarry Smith   ierr = SNESMonitorSetFromOptions(snes,"-snes_monitor_range","Monitor range of elements of function","SNESMonitorRange",SNESMonitorRange,NULL);CHKERRQ(ierr);
854eabae89aSBarry Smith 
855fde5950dSBarry Smith   ierr = SNESMonitorSetFromOptions(snes,"-snes_monitor_ratio","Monitor ratios of the norm of function for consecutive steps","SNESMonitorRatio",SNESMonitorRatio,SNESMonitorRatioSetUp);CHKERRQ(ierr);
856fde5950dSBarry Smith   ierr = SNESMonitorSetFromOptions(snes,"-snes_monitor_field","Monitor norm of function (split into fields)","SNESMonitorDefaultField",SNESMonitorDefaultField,NULL);CHKERRQ(ierr);
857fde5950dSBarry Smith   ierr = SNESMonitorSetFromOptions(snes,"-snes_monitor_solution","View solution at each iteration","SNESMonitorSolution",SNESMonitorSolution,NULL);CHKERRQ(ierr);
858fde5950dSBarry Smith   ierr = SNESMonitorSetFromOptions(snes,"-snes_monitor_solution_update","View correction at each iteration","SNESMonitorSolutionUpdate",SNESMonitorSolutionUpdate,NULL);CHKERRQ(ierr);
859fde5950dSBarry Smith   ierr = SNESMonitorSetFromOptions(snes,"-snes_monitor_residual","View residual at each iteration","SNESMonitorResidual",SNESMonitorResidual,NULL);CHKERRQ(ierr);
860fde5950dSBarry Smith   ierr = SNESMonitorSetFromOptions(snes,"-snes_monitor_jacupdate_spectrum","Print the change in the spectrum of the Jacobian","SNESMonitorJacUpdateSpectrum",SNESMonitorJacUpdateSpectrum,NULL);CHKERRQ(ierr);
861fde5950dSBarry Smith   ierr = SNESMonitorSetFromOptions(snes,"-snes_monitor_fields","Monitor norm of function per field","SNESMonitorSet",SNESMonitorFields,NULL);CHKERRQ(ierr);
8622db13446SMatthew G. Knepley 
8635180491cSLisandro Dalcin   ierr = PetscOptionsString("-snes_monitor_python","Use Python function","SNESMonitorSet",0,monfilename,PETSC_MAX_PATH_LEN,&flg);CHKERRQ(ierr);
8645180491cSLisandro Dalcin   if (flg) {ierr = PetscPythonMonitorSet((PetscObject)snes,monfilename);CHKERRQ(ierr);}
8655180491cSLisandro Dalcin 
866fde5950dSBarry Smith 
86790d69ab7SBarry Smith   flg  = PETSC_FALSE;
8680298fd71SBarry Smith   ierr = PetscOptionsBool("-snes_monitor_lg_residualnorm","Plot function norm at each iteration","SNESMonitorLGResidualNorm",flg,&flg,NULL);CHKERRQ(ierr);
869459f5d12SBarry Smith   if (flg) {
870d96771aaSLisandro Dalcin     PetscDrawLG ctx;
871459f5d12SBarry Smith 
8726ba87a44SLisandro Dalcin     ierr = SNESMonitorLGCreate(PetscObjectComm((PetscObject)snes),NULL,NULL,PETSC_DECIDE,PETSC_DECIDE,400,300,&ctx);CHKERRQ(ierr);
873d96771aaSLisandro Dalcin     ierr = SNESMonitorSet(snes,SNESMonitorLGResidualNorm,ctx,(PetscErrorCode (*)(void**))PetscDrawLGDestroy);CHKERRQ(ierr);
874459f5d12SBarry Smith   }
87590d69ab7SBarry Smith   flg  = PETSC_FALSE;
8760298fd71SBarry Smith   ierr = PetscOptionsBool("-snes_monitor_lg_range","Plot function range at each iteration","SNESMonitorLGRange",flg,&flg,NULL);CHKERRQ(ierr);
877459f5d12SBarry Smith   if (flg) {
878459f5d12SBarry Smith     PetscViewer ctx;
879e24b481bSBarry Smith 
8806ba87a44SLisandro Dalcin     ierr = PetscViewerDrawOpen(PetscObjectComm((PetscObject)snes),NULL,NULL,PETSC_DECIDE,PETSC_DECIDE,400,300,&ctx);CHKERRQ(ierr);
881459f5d12SBarry Smith     ierr = SNESMonitorSet(snes,SNESMonitorLGRange,ctx,(PetscErrorCode (*)(void**))PetscViewerDestroy);CHKERRQ(ierr);
882459f5d12SBarry Smith   }
8832e7541e6SPeter Brune 
8842e7541e6SPeter Brune 
885cc0c4584SMatthew G. Knepley 
88690d69ab7SBarry Smith   flg  = PETSC_FALSE;
8878d359177SBarry Smith   ierr = PetscOptionsBool("-snes_fd","Use finite differences (slow) to compute Jacobian","SNESComputeJacobianDefault",flg,&flg,NULL);CHKERRQ(ierr);
8884b27c08aSLois Curfman McInnes   if (flg) {
8896cab3a1bSJed Brown     void    *functx;
890b1f624c7SBarry Smith     DM      dm;
891b1f624c7SBarry Smith     DMSNES  sdm;
892b1f624c7SBarry Smith     ierr = SNESGetDM(snes,&dm);CHKERRQ(ierr);
893b1f624c7SBarry Smith     ierr = DMGetDMSNES(dm,&sdm);CHKERRQ(ierr);
894b1f624c7SBarry Smith     sdm->jacobianctx = NULL;
8950298fd71SBarry Smith     ierr = SNESGetFunction(snes,NULL,NULL,&functx);CHKERRQ(ierr);
8968d359177SBarry Smith     ierr = SNESSetJacobian(snes,snes->jacobian,snes->jacobian_pre,SNESComputeJacobianDefault,functx);CHKERRQ(ierr);
897ae15b995SBarry Smith     ierr = PetscInfo(snes,"Setting default finite difference Jacobian matrix\n");CHKERRQ(ierr);
8989b94acceSBarry Smith   }
899639f9d9dSBarry Smith 
90044848bc4SPeter Brune   flg  = PETSC_FALSE;
9018d359177SBarry Smith   ierr = PetscOptionsBool("-snes_fd_function","Use finite differences (slow) to compute function from user objective","SNESObjectiveComputeFunctionDefaultFD",flg,&flg,NULL);CHKERRQ(ierr);
90297584545SPeter Brune   if (flg) {
9038d359177SBarry Smith     ierr = SNESSetFunction(snes,NULL,SNESObjectiveComputeFunctionDefaultFD,NULL);CHKERRQ(ierr);
90497584545SPeter Brune   }
90597584545SPeter Brune 
90697584545SPeter Brune   flg  = PETSC_FALSE;
9078d359177SBarry Smith   ierr = PetscOptionsBool("-snes_fd_color","Use finite differences with coloring to compute Jacobian","SNESComputeJacobianDefaultColor",flg,&flg,NULL);CHKERRQ(ierr);
90844848bc4SPeter Brune   if (flg) {
909c52e227fSPeter Brune     DM             dm;
910c52e227fSPeter Brune     DMSNES         sdm;
911c52e227fSPeter Brune     ierr = SNESGetDM(snes,&dm);CHKERRQ(ierr);
912aace71b7SPeter Brune     ierr = DMGetDMSNES(dm,&sdm);CHKERRQ(ierr);
913aace71b7SPeter Brune     sdm->jacobianctx = NULL;
9148d359177SBarry Smith     ierr = SNESSetJacobian(snes,snes->jacobian,snes->jacobian_pre,SNESComputeJacobianDefaultColor,0);CHKERRQ(ierr);
91544848bc4SPeter Brune     ierr = PetscInfo(snes,"Setting default finite difference coloring Jacobian matrix\n");CHKERRQ(ierr);
91644848bc4SPeter Brune   }
91744848bc4SPeter Brune 
918aa3661deSLisandro Dalcin   flg  = PETSC_FALSE;
919f871313dSBarry Smith   ierr = PetscOptionsBool("-snes_mf_operator","Use a Matrix-Free Jacobian with user-provided preconditioner matrix","SNESSetUseMatrixFree",PETSC_FALSE,&snes->mf_operator,&flg);CHKERRQ(ierr);
920d8f46077SPeter Brune   if (flg && snes->mf_operator) {
921a8248277SBarry Smith     snes->mf_operator = PETSC_TRUE;
922d8f46077SPeter Brune     snes->mf          = PETSC_TRUE;
923a8248277SBarry Smith   }
924aa3661deSLisandro Dalcin   flg  = PETSC_FALSE;
925f871313dSBarry Smith   ierr = PetscOptionsBool("-snes_mf","Use a Matrix-Free Jacobian with no preconditioner matrix","SNESSetUseMatrixFree",PETSC_FALSE,&snes->mf,&flg);CHKERRQ(ierr);
926d8f46077SPeter Brune   if (!flg && snes->mf_operator) snes->mf = PETSC_TRUE;
927d8f46077SPeter Brune   ierr = PetscOptionsInt("-snes_mf_version","Matrix-Free routines version 1 or 2","None",snes->mf_version,&snes->mf_version,0);CHKERRQ(ierr);
928d28543b3SPeter Brune 
929c40d0f55SPeter Brune   flg  = PETSC_FALSE;
930be95d8f1SBarry Smith   ierr = SNESGetNPCSide(snes,&pcside);CHKERRQ(ierr);
931be95d8f1SBarry Smith   ierr = PetscOptionsEnum("-snes_npc_side","SNES nonlinear preconditioner side","SNESSetNPCSide",PCSides,(PetscEnum)pcside,(PetscEnum*)&pcside,&flg);CHKERRQ(ierr);
932be95d8f1SBarry Smith   if (flg) {ierr = SNESSetNPCSide(snes,pcside);CHKERRQ(ierr);}
933c40d0f55SPeter Brune 
934e04113cfSBarry Smith #if defined(PETSC_HAVE_SAWS)
9358a70d858SHong Zhang   /*
9368a70d858SHong Zhang     Publish convergence information using SAWs
9378a70d858SHong Zhang   */
9388a70d858SHong Zhang   flg  = PETSC_FALSE;
9398a70d858SHong Zhang   ierr = PetscOptionsBool("-snes_monitor_saws","Publish SNES progress using SAWs","SNESMonitorSet",flg,&flg,NULL);CHKERRQ(ierr);
9408a70d858SHong Zhang   if (flg) {
9418a70d858SHong Zhang     void *ctx;
9428a70d858SHong Zhang     ierr = SNESMonitorSAWsCreate(snes,&ctx);CHKERRQ(ierr);
9438a70d858SHong Zhang     ierr = SNESMonitorSet(snes,SNESMonitorSAWs,ctx,SNESMonitorSAWsDestroy);CHKERRQ(ierr);
9448a70d858SHong Zhang   }
9458a70d858SHong Zhang #endif
9468a70d858SHong Zhang #if defined(PETSC_HAVE_SAWS)
947b90c6cbeSBarry Smith   {
948b90c6cbeSBarry Smith   PetscBool set;
949b90c6cbeSBarry Smith   flg  = PETSC_FALSE;
9508a70d858SHong Zhang   ierr = PetscOptionsBool("-snes_saws_block","Block for SAWs at end of SNESSolve","PetscObjectSAWsBlock",((PetscObject)snes)->amspublishblock,&flg,&set);CHKERRQ(ierr);
951b90c6cbeSBarry Smith   if (set) {
952e04113cfSBarry Smith     ierr = PetscObjectSAWsSetBlock((PetscObject)snes,flg);CHKERRQ(ierr);
953b90c6cbeSBarry Smith   }
954b90c6cbeSBarry Smith   }
955b90c6cbeSBarry Smith #endif
956b90c6cbeSBarry Smith 
95776b2cf59SMatthew Knepley   for (i = 0; i < numberofsetfromoptions; i++) {
95876b2cf59SMatthew Knepley     ierr = (*othersetfromoptions[i])(snes);CHKERRQ(ierr);
95976b2cf59SMatthew Knepley   }
96076b2cf59SMatthew Knepley 
961e7788613SBarry Smith   if (snes->ops->setfromoptions) {
962e55864a3SBarry Smith     ierr = (*snes->ops->setfromoptions)(PetscOptionsObject,snes);CHKERRQ(ierr);
963639f9d9dSBarry Smith   }
9645d973c19SBarry Smith 
9655d973c19SBarry Smith   /* process any options handlers added with PetscObjectAddOptionsHandler() */
9660633abcbSJed Brown   ierr = PetscObjectProcessOptionsHandlers(PetscOptionsObject,(PetscObject)snes);CHKERRQ(ierr);
967b0a32e0cSBarry Smith   ierr = PetscOptionsEnd();CHKERRQ(ierr);
9684bbc92c1SBarry Smith 
9699e764e56SPeter Brune   if (!snes->linesearch) {
9707601faf0SJed Brown     ierr = SNESGetLineSearch(snes, &snes->linesearch);CHKERRQ(ierr);
9719e764e56SPeter Brune   }
972f1c6b773SPeter Brune   ierr = SNESLineSearchSetFromOptions(snes->linesearch);CHKERRQ(ierr);
9739e764e56SPeter Brune 
9746991f827SBarry Smith   if (!snes->ksp) {ierr = SNESGetKSP(snes,&snes->ksp);CHKERRQ(ierr);}
9756991f827SBarry Smith   ierr = KSPSetOperators(snes->ksp,snes->jacobian,snes->jacobian_pre);CHKERRQ(ierr);
9766991f827SBarry Smith   ierr = KSPSetFromOptions(snes->ksp);CHKERRQ(ierr);
9776991f827SBarry Smith 
978be95d8f1SBarry Smith   /* if someone has set the SNES NPC type, create it. */
97951e86f29SPeter Brune   ierr = SNESGetOptionsPrefix(snes, &optionsprefix);CHKERRQ(ierr);
980c5929fdfSBarry Smith   ierr = PetscOptionsHasName(((PetscObject)snes)->options,optionsprefix, "-npc_snes_type", &pcset);CHKERRQ(ierr);
981efd4aadfSBarry Smith   if (pcset && (!snes->npc)) {
982efd4aadfSBarry Smith     ierr = SNESGetNPC(snes, &snes->npc);CHKERRQ(ierr);
98351e86f29SPeter Brune   }
9843a40ed3dSBarry Smith   PetscFunctionReturn(0);
9859b94acceSBarry Smith }
9869b94acceSBarry Smith 
987bb9467b5SJed Brown /*@C
988d25893d9SBarry Smith    SNESSetComputeApplicationContext - Sets an optional function to compute a user-defined context for
989d25893d9SBarry Smith    the nonlinear solvers.
990d25893d9SBarry Smith 
991d25893d9SBarry Smith    Logically Collective on SNES
992d25893d9SBarry Smith 
993d25893d9SBarry Smith    Input Parameters:
994d25893d9SBarry Smith +  snes - the SNES context
995d25893d9SBarry Smith .  compute - function to compute the context
996d25893d9SBarry Smith -  destroy - function to destroy the context
997d25893d9SBarry Smith 
998d25893d9SBarry Smith    Level: intermediate
999d25893d9SBarry Smith 
1000bb9467b5SJed Brown    Notes:
1001bb9467b5SJed Brown    This function is currently not available from Fortran.
1002bb9467b5SJed Brown 
1003d25893d9SBarry Smith .keywords: SNES, nonlinear, set, application, context
1004d25893d9SBarry Smith 
1005d25893d9SBarry Smith .seealso: SNESGetApplicationContext(), SNESSetComputeApplicationContext(), SNESGetApplicationContext()
1006d25893d9SBarry Smith @*/
1007d25893d9SBarry Smith PetscErrorCode  SNESSetComputeApplicationContext(SNES snes,PetscErrorCode (*compute)(SNES,void**),PetscErrorCode (*destroy)(void**))
1008d25893d9SBarry Smith {
1009d25893d9SBarry Smith   PetscFunctionBegin;
1010d25893d9SBarry Smith   PetscValidHeaderSpecific(snes,SNES_CLASSID,1);
1011d25893d9SBarry Smith   snes->ops->usercompute = compute;
1012d25893d9SBarry Smith   snes->ops->userdestroy = destroy;
1013d25893d9SBarry Smith   PetscFunctionReturn(0);
1014d25893d9SBarry Smith }
1015a847f771SSatish Balay 
1016b07ff414SBarry Smith /*@
10179b94acceSBarry Smith    SNESSetApplicationContext - Sets the optional user-defined context for
10189b94acceSBarry Smith    the nonlinear solvers.
10199b94acceSBarry Smith 
10203f9fe445SBarry Smith    Logically Collective on SNES
1021fee21e36SBarry Smith 
1022c7afd0dbSLois Curfman McInnes    Input Parameters:
1023c7afd0dbSLois Curfman McInnes +  snes - the SNES context
1024c7afd0dbSLois Curfman McInnes -  usrP - optional user context
1025c7afd0dbSLois Curfman McInnes 
102636851e7fSLois Curfman McInnes    Level: intermediate
102736851e7fSLois Curfman McInnes 
1028daf670e6SBarry Smith    Fortran Notes: To use this from Fortran you must write a Fortran interface definition for this
1029daf670e6SBarry Smith     function that tells Fortran the Fortran derived data type that you are passing in as the ctx argument.
1030daf670e6SBarry Smith 
10319b94acceSBarry Smith .keywords: SNES, nonlinear, set, application, context
10329b94acceSBarry Smith 
1033ecaffddaSVictor Eijkhout .seealso: SNESGetApplicationContext()
10349b94acceSBarry Smith @*/
10357087cfbeSBarry Smith PetscErrorCode  SNESSetApplicationContext(SNES snes,void *usrP)
10369b94acceSBarry Smith {
10371b2093e4SBarry Smith   PetscErrorCode ierr;
1038b07ff414SBarry Smith   KSP            ksp;
10391b2093e4SBarry Smith 
10403a40ed3dSBarry Smith   PetscFunctionBegin;
10410700a824SBarry Smith   PetscValidHeaderSpecific(snes,SNES_CLASSID,1);
1042b07ff414SBarry Smith   ierr       = SNESGetKSP(snes,&ksp);CHKERRQ(ierr);
1043b07ff414SBarry Smith   ierr       = KSPSetApplicationContext(ksp,usrP);CHKERRQ(ierr);
10449b94acceSBarry Smith   snes->user = usrP;
10453a40ed3dSBarry Smith   PetscFunctionReturn(0);
10469b94acceSBarry Smith }
104774679c65SBarry Smith 
1048b07ff414SBarry Smith /*@
10499b94acceSBarry Smith    SNESGetApplicationContext - Gets the user-defined context for the
10509b94acceSBarry Smith    nonlinear solvers.
10519b94acceSBarry Smith 
1052c7afd0dbSLois Curfman McInnes    Not Collective
1053c7afd0dbSLois Curfman McInnes 
10549b94acceSBarry Smith    Input Parameter:
10559b94acceSBarry Smith .  snes - SNES context
10569b94acceSBarry Smith 
10579b94acceSBarry Smith    Output Parameter:
10589b94acceSBarry Smith .  usrP - user context
10599b94acceSBarry Smith 
1060daf670e6SBarry Smith    Fortran Notes: To use this from Fortran you must write a Fortran interface definition for this
1061daf670e6SBarry Smith     function that tells Fortran the Fortran derived data type that you are passing in as the ctx argument.
1062daf670e6SBarry Smith 
106336851e7fSLois Curfman McInnes    Level: intermediate
106436851e7fSLois Curfman McInnes 
10659b94acceSBarry Smith .keywords: SNES, nonlinear, get, application, context
10669b94acceSBarry Smith 
10679b94acceSBarry Smith .seealso: SNESSetApplicationContext()
10689b94acceSBarry Smith @*/
1069e71120c6SJed Brown PetscErrorCode  SNESGetApplicationContext(SNES snes,void *usrP)
10709b94acceSBarry Smith {
10713a40ed3dSBarry Smith   PetscFunctionBegin;
10720700a824SBarry Smith   PetscValidHeaderSpecific(snes,SNES_CLASSID,1);
1073e71120c6SJed Brown   *(void**)usrP = snes->user;
10743a40ed3dSBarry Smith   PetscFunctionReturn(0);
10759b94acceSBarry Smith }
107674679c65SBarry Smith 
10779b94acceSBarry Smith /*@
10783565c898SBarry Smith    SNESSetUseMatrixFree - indicates that SNES should use matrix free finite difference matrix vector products internally to apply
10793565c898SBarry Smith                           the Jacobian.
10803565c898SBarry Smith 
10813565c898SBarry Smith    Collective on SNES
10823565c898SBarry Smith 
10833565c898SBarry Smith    Input Parameters:
10843565c898SBarry Smith +  snes - SNES context
10853565c898SBarry Smith .  mf - use matrix-free for both the Amat and Pmat used by SNESSetJacobian(), both the Amat and Pmat set in SNESSetJacobian() will be ignored
10863565c898SBarry Smith -  mf_operator - use matrix-free only for the Amat used by SNESSetJacobian(), this means the user provided Pmat will continue to be used
10873565c898SBarry Smith 
10883565c898SBarry Smith    Options Database:
10893565c898SBarry Smith + -snes_mf - use matrix free for both the mat and pmat operator
10903565c898SBarry Smith - -snes_mf_operator - use matrix free only for the mat operator
10913565c898SBarry Smith 
10923565c898SBarry Smith    Level: intermediate
10933565c898SBarry Smith 
10943565c898SBarry Smith .keywords: SNES, nonlinear, get, iteration, number,
10953565c898SBarry Smith 
10963565c898SBarry Smith .seealso:   SNESGetUseMatrixFree(), MatCreateSNESMF()
10973565c898SBarry Smith @*/
10983565c898SBarry Smith PetscErrorCode  SNESSetUseMatrixFree(SNES snes,PetscBool mf_operator,PetscBool mf)
10993565c898SBarry Smith {
11003565c898SBarry Smith   PetscFunctionBegin;
11013565c898SBarry Smith   PetscValidHeaderSpecific(snes,SNES_CLASSID,1);
110288b4c220SStefano Zampini   PetscValidLogicalCollectiveBool(snes,mf_operator,2);
110388b4c220SStefano Zampini   PetscValidLogicalCollectiveBool(snes,mf,3);
11043565c898SBarry Smith   if (mf && !mf_operator) SETERRQ(PetscObjectComm((PetscObject)snes),PETSC_ERR_ARG_INCOMP,"If using mf must also use mf_operator");
11053565c898SBarry Smith   snes->mf          = mf;
11063565c898SBarry Smith   snes->mf_operator = mf_operator;
11073565c898SBarry Smith   PetscFunctionReturn(0);
11083565c898SBarry Smith }
11093565c898SBarry Smith 
11103565c898SBarry Smith /*@
11113565c898SBarry Smith    SNESGetUseMatrixFree - indicates if the SNES uses matrix free finite difference matrix vector products to apply
11123565c898SBarry Smith                           the Jacobian.
11133565c898SBarry Smith 
11143565c898SBarry Smith    Collective on SNES
11153565c898SBarry Smith 
11163565c898SBarry Smith    Input Parameter:
11173565c898SBarry Smith .  snes - SNES context
11183565c898SBarry Smith 
11193565c898SBarry Smith    Output Parameters:
11203565c898SBarry Smith +  mf - use matrix-free for both the Amat and Pmat used by SNESSetJacobian(), both the Amat and Pmat set in SNESSetJacobian() will be ignored
11213565c898SBarry Smith -  mf_operator - use matrix-free only for the Amat used by SNESSetJacobian(), this means the user provided Pmat will continue to be used
11223565c898SBarry Smith 
11233565c898SBarry Smith    Options Database:
11243565c898SBarry Smith + -snes_mf - use matrix free for both the mat and pmat operator
11253565c898SBarry Smith - -snes_mf_operator - use matrix free only for the mat operator
11263565c898SBarry Smith 
11273565c898SBarry Smith    Level: intermediate
11283565c898SBarry Smith 
11293565c898SBarry Smith .keywords: SNES, nonlinear, get, iteration, number,
11303565c898SBarry Smith 
11313565c898SBarry Smith .seealso:   SNESSetUseMatrixFree(), MatCreateSNESMF()
11323565c898SBarry Smith @*/
11333565c898SBarry Smith PetscErrorCode  SNESGetUseMatrixFree(SNES snes,PetscBool *mf_operator,PetscBool *mf)
11343565c898SBarry Smith {
11353565c898SBarry Smith   PetscFunctionBegin;
11363565c898SBarry Smith   PetscValidHeaderSpecific(snes,SNES_CLASSID,1);
11373565c898SBarry Smith   if (mf)          *mf          = snes->mf;
11383565c898SBarry Smith   if (mf_operator) *mf_operator = snes->mf_operator;
11393565c898SBarry Smith   PetscFunctionReturn(0);
11403565c898SBarry Smith }
11413565c898SBarry Smith 
11423565c898SBarry Smith /*@
1143c8228a4eSBarry Smith    SNESGetIterationNumber - Gets the number of nonlinear iterations completed
1144c8228a4eSBarry Smith    at this time.
11459b94acceSBarry Smith 
1146c7afd0dbSLois Curfman McInnes    Not Collective
1147c7afd0dbSLois Curfman McInnes 
11489b94acceSBarry Smith    Input Parameter:
11499b94acceSBarry Smith .  snes - SNES context
11509b94acceSBarry Smith 
11519b94acceSBarry Smith    Output Parameter:
11529b94acceSBarry Smith .  iter - iteration number
11539b94acceSBarry Smith 
1154c8228a4eSBarry Smith    Notes:
1155c8228a4eSBarry Smith    For example, during the computation of iteration 2 this would return 1.
1156c8228a4eSBarry Smith 
1157c8228a4eSBarry Smith    This is useful for using lagged Jacobians (where one does not recompute the
115808405cd6SLois Curfman McInnes    Jacobian at each SNES iteration). For example, the code
115908405cd6SLois Curfman McInnes .vb
116008405cd6SLois Curfman McInnes       ierr = SNESGetIterationNumber(snes,&it);
116108405cd6SLois Curfman McInnes       if (!(it % 2)) {
116208405cd6SLois Curfman McInnes         [compute Jacobian here]
116308405cd6SLois Curfman McInnes       }
116408405cd6SLois Curfman McInnes .ve
1165c8228a4eSBarry Smith    can be used in your ComputeJacobian() function to cause the Jacobian to be
116608405cd6SLois Curfman McInnes    recomputed every second SNES iteration.
1167c8228a4eSBarry Smith 
1168c04deec6SBarry Smith    After the SNES solve is complete this will return the number of nonlinear iterations used.
1169c04deec6SBarry Smith 
117036851e7fSLois Curfman McInnes    Level: intermediate
117136851e7fSLois Curfman McInnes 
11722b668275SBarry Smith .keywords: SNES, nonlinear, get, iteration, number,
11732b668275SBarry Smith 
117471dbe336SPeter Brune .seealso:   SNESGetLinearSolveIterations()
11759b94acceSBarry Smith @*/
11767087cfbeSBarry Smith PetscErrorCode  SNESGetIterationNumber(SNES snes,PetscInt *iter)
11779b94acceSBarry Smith {
11783a40ed3dSBarry Smith   PetscFunctionBegin;
11790700a824SBarry Smith   PetscValidHeaderSpecific(snes,SNES_CLASSID,1);
11804482741eSBarry Smith   PetscValidIntPointer(iter,2);
11819b94acceSBarry Smith   *iter = snes->iter;
11823a40ed3dSBarry Smith   PetscFunctionReturn(0);
11839b94acceSBarry Smith }
118474679c65SBarry Smith 
1185360c497dSPeter Brune /*@
1186360c497dSPeter Brune    SNESSetIterationNumber - Sets the current iteration number.
1187360c497dSPeter Brune 
1188360c497dSPeter Brune    Not Collective
1189360c497dSPeter Brune 
1190360c497dSPeter Brune    Input Parameter:
1191360c497dSPeter Brune .  snes - SNES context
1192360c497dSPeter Brune .  iter - iteration number
1193360c497dSPeter Brune 
1194360c497dSPeter Brune    Level: developer
1195360c497dSPeter Brune 
1196360c497dSPeter Brune .keywords: SNES, nonlinear, set, iteration, number,
1197360c497dSPeter Brune 
119871dbe336SPeter Brune .seealso:   SNESGetLinearSolveIterations()
1199360c497dSPeter Brune @*/
1200360c497dSPeter Brune PetscErrorCode  SNESSetIterationNumber(SNES snes,PetscInt iter)
1201360c497dSPeter Brune {
1202360c497dSPeter Brune   PetscErrorCode ierr;
1203360c497dSPeter Brune 
1204360c497dSPeter Brune   PetscFunctionBegin;
1205360c497dSPeter Brune   PetscValidHeaderSpecific(snes,SNES_CLASSID,1);
1206e04113cfSBarry Smith   ierr       = PetscObjectSAWsTakeAccess((PetscObject)snes);CHKERRQ(ierr);
1207360c497dSPeter Brune   snes->iter = iter;
1208e04113cfSBarry Smith   ierr       = PetscObjectSAWsGrantAccess((PetscObject)snes);CHKERRQ(ierr);
1209360c497dSPeter Brune   PetscFunctionReturn(0);
1210360c497dSPeter Brune }
1211360c497dSPeter Brune 
12129b94acceSBarry Smith /*@
1213b850b91aSLisandro Dalcin    SNESGetNonlinearStepFailures - Gets the number of unsuccessful steps
12149b94acceSBarry Smith    attempted by the nonlinear solver.
12159b94acceSBarry Smith 
1216c7afd0dbSLois Curfman McInnes    Not Collective
1217c7afd0dbSLois Curfman McInnes 
12189b94acceSBarry Smith    Input Parameter:
12199b94acceSBarry Smith .  snes - SNES context
12209b94acceSBarry Smith 
12219b94acceSBarry Smith    Output Parameter:
12229b94acceSBarry Smith .  nfails - number of unsuccessful steps attempted
12239b94acceSBarry Smith 
1224c96a6f78SLois Curfman McInnes    Notes:
1225c96a6f78SLois Curfman McInnes    This counter is reset to zero for each successive call to SNESSolve().
1226c96a6f78SLois Curfman McInnes 
122736851e7fSLois Curfman McInnes    Level: intermediate
122836851e7fSLois Curfman McInnes 
12299b94acceSBarry Smith .keywords: SNES, nonlinear, get, number, unsuccessful, steps
123058ebbce7SBarry Smith 
1231e1c61ce8SBarry Smith .seealso: SNESGetMaxLinearSolveFailures(), SNESGetLinearSolveIterations(), SNESSetMaxLinearSolveFailures(), SNESGetLinearSolveFailures(),
123258ebbce7SBarry Smith           SNESSetMaxNonlinearStepFailures(), SNESGetMaxNonlinearStepFailures()
12339b94acceSBarry Smith @*/
12347087cfbeSBarry Smith PetscErrorCode  SNESGetNonlinearStepFailures(SNES snes,PetscInt *nfails)
12359b94acceSBarry Smith {
12363a40ed3dSBarry Smith   PetscFunctionBegin;
12370700a824SBarry Smith   PetscValidHeaderSpecific(snes,SNES_CLASSID,1);
12384482741eSBarry Smith   PetscValidIntPointer(nfails,2);
123950ffb88aSMatthew Knepley   *nfails = snes->numFailures;
124050ffb88aSMatthew Knepley   PetscFunctionReturn(0);
124150ffb88aSMatthew Knepley }
124250ffb88aSMatthew Knepley 
124350ffb88aSMatthew Knepley /*@
1244b850b91aSLisandro Dalcin    SNESSetMaxNonlinearStepFailures - Sets the maximum number of unsuccessful steps
124550ffb88aSMatthew Knepley    attempted by the nonlinear solver before it gives up.
124650ffb88aSMatthew Knepley 
124750ffb88aSMatthew Knepley    Not Collective
124850ffb88aSMatthew Knepley 
124950ffb88aSMatthew Knepley    Input Parameters:
125050ffb88aSMatthew Knepley +  snes     - SNES context
125150ffb88aSMatthew Knepley -  maxFails - maximum of unsuccessful steps
125250ffb88aSMatthew Knepley 
125350ffb88aSMatthew Knepley    Level: intermediate
125450ffb88aSMatthew Knepley 
125550ffb88aSMatthew Knepley .keywords: SNES, nonlinear, set, maximum, unsuccessful, steps
125658ebbce7SBarry Smith 
1257e1c61ce8SBarry Smith .seealso: SNESGetMaxLinearSolveFailures(), SNESGetLinearSolveIterations(), SNESSetMaxLinearSolveFailures(), SNESGetLinearSolveFailures(),
125858ebbce7SBarry Smith           SNESGetMaxNonlinearStepFailures(), SNESGetNonlinearStepFailures()
125950ffb88aSMatthew Knepley @*/
12607087cfbeSBarry Smith PetscErrorCode  SNESSetMaxNonlinearStepFailures(SNES snes, PetscInt maxFails)
126150ffb88aSMatthew Knepley {
126250ffb88aSMatthew Knepley   PetscFunctionBegin;
12630700a824SBarry Smith   PetscValidHeaderSpecific(snes,SNES_CLASSID,1);
126450ffb88aSMatthew Knepley   snes->maxFailures = maxFails;
126550ffb88aSMatthew Knepley   PetscFunctionReturn(0);
126650ffb88aSMatthew Knepley }
126750ffb88aSMatthew Knepley 
126850ffb88aSMatthew Knepley /*@
1269b850b91aSLisandro Dalcin    SNESGetMaxNonlinearStepFailures - Gets the maximum number of unsuccessful steps
127050ffb88aSMatthew Knepley    attempted by the nonlinear solver before it gives up.
127150ffb88aSMatthew Knepley 
127250ffb88aSMatthew Knepley    Not Collective
127350ffb88aSMatthew Knepley 
127450ffb88aSMatthew Knepley    Input Parameter:
127550ffb88aSMatthew Knepley .  snes     - SNES context
127650ffb88aSMatthew Knepley 
127750ffb88aSMatthew Knepley    Output Parameter:
127850ffb88aSMatthew Knepley .  maxFails - maximum of unsuccessful steps
127950ffb88aSMatthew Knepley 
128050ffb88aSMatthew Knepley    Level: intermediate
128150ffb88aSMatthew Knepley 
128250ffb88aSMatthew Knepley .keywords: SNES, nonlinear, get, maximum, unsuccessful, steps
128358ebbce7SBarry Smith 
1284e1c61ce8SBarry Smith .seealso: SNESGetMaxLinearSolveFailures(), SNESGetLinearSolveIterations(), SNESSetMaxLinearSolveFailures(), SNESGetLinearSolveFailures(),
128558ebbce7SBarry Smith           SNESSetMaxNonlinearStepFailures(), SNESGetNonlinearStepFailures()
128658ebbce7SBarry Smith 
128750ffb88aSMatthew Knepley @*/
12887087cfbeSBarry Smith PetscErrorCode  SNESGetMaxNonlinearStepFailures(SNES snes, PetscInt *maxFails)
128950ffb88aSMatthew Knepley {
129050ffb88aSMatthew Knepley   PetscFunctionBegin;
12910700a824SBarry Smith   PetscValidHeaderSpecific(snes,SNES_CLASSID,1);
12924482741eSBarry Smith   PetscValidIntPointer(maxFails,2);
129350ffb88aSMatthew Knepley   *maxFails = snes->maxFailures;
12943a40ed3dSBarry Smith   PetscFunctionReturn(0);
12959b94acceSBarry Smith }
1296a847f771SSatish Balay 
12972541af92SBarry Smith /*@
12982541af92SBarry Smith    SNESGetNumberFunctionEvals - Gets the number of user provided function evaluations
12992541af92SBarry Smith      done by SNES.
13002541af92SBarry Smith 
13012541af92SBarry Smith    Not Collective
13022541af92SBarry Smith 
13032541af92SBarry Smith    Input Parameter:
13042541af92SBarry Smith .  snes     - SNES context
13052541af92SBarry Smith 
13062541af92SBarry Smith    Output Parameter:
13072541af92SBarry Smith .  nfuncs - number of evaluations
13082541af92SBarry Smith 
13092541af92SBarry Smith    Level: intermediate
13102541af92SBarry Smith 
1311971e163fSPeter Brune    Notes: Reset every time SNESSolve is called unless SNESSetCountersReset() is used.
1312971e163fSPeter Brune 
13132541af92SBarry Smith .keywords: SNES, nonlinear, get, maximum, unsuccessful, steps
131458ebbce7SBarry Smith 
1315971e163fSPeter Brune .seealso: SNESGetMaxLinearSolveFailures(), SNESGetLinearSolveIterations(), SNESSetMaxLinearSolveFailures(), SNESGetLinearSolveFailures(), SNESSetCountersReset()
13162541af92SBarry Smith @*/
13177087cfbeSBarry Smith PetscErrorCode  SNESGetNumberFunctionEvals(SNES snes, PetscInt *nfuncs)
13182541af92SBarry Smith {
13192541af92SBarry Smith   PetscFunctionBegin;
13200700a824SBarry Smith   PetscValidHeaderSpecific(snes,SNES_CLASSID,1);
13212541af92SBarry Smith   PetscValidIntPointer(nfuncs,2);
13222541af92SBarry Smith   *nfuncs = snes->nfuncs;
13232541af92SBarry Smith   PetscFunctionReturn(0);
13242541af92SBarry Smith }
13252541af92SBarry Smith 
13263d4c4710SBarry Smith /*@
13273d4c4710SBarry Smith    SNESGetLinearSolveFailures - Gets the number of failed (non-converged)
13283d4c4710SBarry Smith    linear solvers.
13293d4c4710SBarry Smith 
13303d4c4710SBarry Smith    Not Collective
13313d4c4710SBarry Smith 
13323d4c4710SBarry Smith    Input Parameter:
13333d4c4710SBarry Smith .  snes - SNES context
13343d4c4710SBarry Smith 
13353d4c4710SBarry Smith    Output Parameter:
13363d4c4710SBarry Smith .  nfails - number of failed solves
13373d4c4710SBarry Smith 
13389d85da0cSMatthew G. Knepley    Level: intermediate
13399d85da0cSMatthew G. Knepley 
13409d85da0cSMatthew G. Knepley    Options Database Keys:
13419d85da0cSMatthew G. Knepley . -snes_max_linear_solve_fail <num> - The number of failures before the solve is terminated
13429d85da0cSMatthew G. Knepley 
13433d4c4710SBarry Smith    Notes:
13443d4c4710SBarry Smith    This counter is reset to zero for each successive call to SNESSolve().
13453d4c4710SBarry Smith 
13463d4c4710SBarry Smith .keywords: SNES, nonlinear, get, number, unsuccessful, steps
134758ebbce7SBarry Smith 
1348e1c61ce8SBarry Smith .seealso: SNESGetMaxLinearSolveFailures(), SNESGetLinearSolveIterations(), SNESSetMaxLinearSolveFailures()
13493d4c4710SBarry Smith @*/
13507087cfbeSBarry Smith PetscErrorCode  SNESGetLinearSolveFailures(SNES snes,PetscInt *nfails)
13513d4c4710SBarry Smith {
13523d4c4710SBarry Smith   PetscFunctionBegin;
13530700a824SBarry Smith   PetscValidHeaderSpecific(snes,SNES_CLASSID,1);
13543d4c4710SBarry Smith   PetscValidIntPointer(nfails,2);
13553d4c4710SBarry Smith   *nfails = snes->numLinearSolveFailures;
13563d4c4710SBarry Smith   PetscFunctionReturn(0);
13573d4c4710SBarry Smith }
13583d4c4710SBarry Smith 
13593d4c4710SBarry Smith /*@
13603d4c4710SBarry Smith    SNESSetMaxLinearSolveFailures - the number of failed linear solve attempts
13613d4c4710SBarry Smith    allowed before SNES returns with a diverged reason of SNES_DIVERGED_LINEAR_SOLVE
13623d4c4710SBarry Smith 
13633f9fe445SBarry Smith    Logically Collective on SNES
13643d4c4710SBarry Smith 
13653d4c4710SBarry Smith    Input Parameters:
13663d4c4710SBarry Smith +  snes     - SNES context
13673d4c4710SBarry Smith -  maxFails - maximum allowed linear solve failures
13683d4c4710SBarry Smith 
13693d4c4710SBarry Smith    Level: intermediate
13703d4c4710SBarry Smith 
13719d85da0cSMatthew G. Knepley    Options Database Keys:
13729d85da0cSMatthew G. Knepley . -snes_max_linear_solve_fail <num> - The number of failures before the solve is terminated
13739d85da0cSMatthew G. Knepley 
1374a6796414SBarry Smith    Notes: By default this is 0; that is SNES returns on the first failed linear solve
13753d4c4710SBarry Smith 
13763d4c4710SBarry Smith .keywords: SNES, nonlinear, set, maximum, unsuccessful, steps
13773d4c4710SBarry Smith 
137858ebbce7SBarry Smith .seealso: SNESGetLinearSolveFailures(), SNESGetMaxLinearSolveFailures(), SNESGetLinearSolveIterations()
13793d4c4710SBarry Smith @*/
13807087cfbeSBarry Smith PetscErrorCode  SNESSetMaxLinearSolveFailures(SNES snes, PetscInt maxFails)
13813d4c4710SBarry Smith {
13823d4c4710SBarry Smith   PetscFunctionBegin;
13830700a824SBarry Smith   PetscValidHeaderSpecific(snes,SNES_CLASSID,1);
1384c5eb9154SBarry Smith   PetscValidLogicalCollectiveInt(snes,maxFails,2);
13853d4c4710SBarry Smith   snes->maxLinearSolveFailures = maxFails;
13863d4c4710SBarry Smith   PetscFunctionReturn(0);
13873d4c4710SBarry Smith }
13883d4c4710SBarry Smith 
13893d4c4710SBarry Smith /*@
13903d4c4710SBarry Smith    SNESGetMaxLinearSolveFailures - gets the maximum number of linear solve failures that
13913d4c4710SBarry Smith      are allowed before SNES terminates
13923d4c4710SBarry Smith 
13933d4c4710SBarry Smith    Not Collective
13943d4c4710SBarry Smith 
13953d4c4710SBarry Smith    Input Parameter:
13963d4c4710SBarry Smith .  snes     - SNES context
13973d4c4710SBarry Smith 
13983d4c4710SBarry Smith    Output Parameter:
13993d4c4710SBarry Smith .  maxFails - maximum of unsuccessful solves allowed
14003d4c4710SBarry Smith 
14013d4c4710SBarry Smith    Level: intermediate
14023d4c4710SBarry Smith 
14033d4c4710SBarry Smith    Notes: By default this is 1; that is SNES returns on the first failed linear solve
14043d4c4710SBarry Smith 
14053d4c4710SBarry Smith .keywords: SNES, nonlinear, get, maximum, unsuccessful, steps
14063d4c4710SBarry Smith 
1407e1c61ce8SBarry Smith .seealso: SNESGetLinearSolveFailures(), SNESGetLinearSolveIterations(), SNESSetMaxLinearSolveFailures(),
14083d4c4710SBarry Smith @*/
14097087cfbeSBarry Smith PetscErrorCode  SNESGetMaxLinearSolveFailures(SNES snes, PetscInt *maxFails)
14103d4c4710SBarry Smith {
14113d4c4710SBarry Smith   PetscFunctionBegin;
14120700a824SBarry Smith   PetscValidHeaderSpecific(snes,SNES_CLASSID,1);
14133d4c4710SBarry Smith   PetscValidIntPointer(maxFails,2);
14143d4c4710SBarry Smith   *maxFails = snes->maxLinearSolveFailures;
14153d4c4710SBarry Smith   PetscFunctionReturn(0);
14163d4c4710SBarry Smith }
14173d4c4710SBarry Smith 
1418c96a6f78SLois Curfman McInnes /*@
1419b850b91aSLisandro Dalcin    SNESGetLinearSolveIterations - Gets the total number of linear iterations
1420c96a6f78SLois Curfman McInnes    used by the nonlinear solver.
1421c96a6f78SLois Curfman McInnes 
1422c7afd0dbSLois Curfman McInnes    Not Collective
1423c7afd0dbSLois Curfman McInnes 
1424c96a6f78SLois Curfman McInnes    Input Parameter:
1425c96a6f78SLois Curfman McInnes .  snes - SNES context
1426c96a6f78SLois Curfman McInnes 
1427c96a6f78SLois Curfman McInnes    Output Parameter:
1428c96a6f78SLois Curfman McInnes .  lits - number of linear iterations
1429c96a6f78SLois Curfman McInnes 
1430c96a6f78SLois Curfman McInnes    Notes:
1431971e163fSPeter Brune    This counter is reset to zero for each successive call to SNESSolve() unless SNESSetCountersReset() is used.
1432c96a6f78SLois Curfman McInnes 
1433010be392SBarry Smith    If the linear solver fails inside the SNESSolve() the iterations for that call to the linear solver are not included. If you wish to count them
1434010be392SBarry Smith    then call KSPGetIterationNumber() after the failed solve.
1435010be392SBarry Smith 
143636851e7fSLois Curfman McInnes    Level: intermediate
143736851e7fSLois Curfman McInnes 
1438c96a6f78SLois Curfman McInnes .keywords: SNES, nonlinear, get, number, linear, iterations
14392b668275SBarry Smith 
144071dbe336SPeter Brune .seealso:  SNESGetIterationNumber(), SNESGetLinearSolveFailures(), SNESGetMaxLinearSolveFailures(), SNESSetCountersReset()
1441c96a6f78SLois Curfman McInnes @*/
14427087cfbeSBarry Smith PetscErrorCode  SNESGetLinearSolveIterations(SNES snes,PetscInt *lits)
1443c96a6f78SLois Curfman McInnes {
14443a40ed3dSBarry Smith   PetscFunctionBegin;
14450700a824SBarry Smith   PetscValidHeaderSpecific(snes,SNES_CLASSID,1);
14464482741eSBarry Smith   PetscValidIntPointer(lits,2);
1447c96a6f78SLois Curfman McInnes   *lits = snes->linear_its;
14483a40ed3dSBarry Smith   PetscFunctionReturn(0);
1449c96a6f78SLois Curfman McInnes }
1450c96a6f78SLois Curfman McInnes 
1451971e163fSPeter Brune /*@
1452971e163fSPeter Brune    SNESSetCountersReset - Sets whether or not the counters for linear iterations and function evaluations
1453971e163fSPeter Brune    are reset every time SNESSolve() is called.
1454971e163fSPeter Brune 
1455971e163fSPeter Brune    Logically Collective on SNES
1456971e163fSPeter Brune 
1457971e163fSPeter Brune    Input Parameter:
1458971e163fSPeter Brune +  snes - SNES context
1459971e163fSPeter Brune -  reset - whether to reset the counters or not
1460971e163fSPeter Brune 
1461971e163fSPeter Brune    Notes:
1462fa19ca70SBarry Smith    This defaults to PETSC_TRUE
1463971e163fSPeter Brune 
1464971e163fSPeter Brune    Level: developer
1465971e163fSPeter Brune 
1466971e163fSPeter Brune .keywords: SNES, nonlinear, set, reset, number, linear, iterations
1467971e163fSPeter Brune 
1468734794cfSBarry Smith .seealso:  SNESGetNumberFunctionEvals(), SNESGetLinearSolveIterations(), SNESGetNPC()
1469971e163fSPeter Brune @*/
1470971e163fSPeter Brune PetscErrorCode  SNESSetCountersReset(SNES snes,PetscBool reset)
1471971e163fSPeter Brune {
1472971e163fSPeter Brune   PetscFunctionBegin;
1473971e163fSPeter Brune   PetscValidHeaderSpecific(snes,SNES_CLASSID,1);
1474971e163fSPeter Brune   PetscValidLogicalCollectiveBool(snes,reset,2);
1475971e163fSPeter Brune   snes->counters_reset = reset;
1476971e163fSPeter Brune   PetscFunctionReturn(0);
1477971e163fSPeter Brune }
1478971e163fSPeter Brune 
147982bf6240SBarry Smith 
14802999313aSBarry Smith /*@
14812999313aSBarry Smith    SNESSetKSP - Sets a KSP context for the SNES object to use
14822999313aSBarry Smith 
14832999313aSBarry Smith    Not Collective, but the SNES and KSP objects must live on the same MPI_Comm
14842999313aSBarry Smith 
14852999313aSBarry Smith    Input Parameters:
14862999313aSBarry Smith +  snes - the SNES context
14872999313aSBarry Smith -  ksp - the KSP context
14882999313aSBarry Smith 
14892999313aSBarry Smith    Notes:
14902999313aSBarry Smith    The SNES object already has its KSP object, you can obtain with SNESGetKSP()
14912999313aSBarry Smith    so this routine is rarely needed.
14922999313aSBarry Smith 
14932999313aSBarry Smith    The KSP object that is already in the SNES object has its reference count
14942999313aSBarry Smith    decreased by one.
14952999313aSBarry Smith 
14962999313aSBarry Smith    Level: developer
14972999313aSBarry Smith 
14982999313aSBarry Smith .keywords: SNES, nonlinear, get, KSP, context
14992999313aSBarry Smith 
15002999313aSBarry Smith .seealso: KSPGetPC(), SNESCreate(), KSPCreate(), SNESSetKSP()
15012999313aSBarry Smith @*/
15027087cfbeSBarry Smith PetscErrorCode  SNESSetKSP(SNES snes,KSP ksp)
15032999313aSBarry Smith {
15042999313aSBarry Smith   PetscErrorCode ierr;
15052999313aSBarry Smith 
15062999313aSBarry Smith   PetscFunctionBegin;
15070700a824SBarry Smith   PetscValidHeaderSpecific(snes,SNES_CLASSID,1);
15080700a824SBarry Smith   PetscValidHeaderSpecific(ksp,KSP_CLASSID,2);
15092999313aSBarry Smith   PetscCheckSameComm(snes,1,ksp,2);
15107dcf0eaaSdalcinl   ierr = PetscObjectReference((PetscObject)ksp);CHKERRQ(ierr);
1511906ed7ccSBarry Smith   if (snes->ksp) {ierr = PetscObjectDereference((PetscObject)snes->ksp);CHKERRQ(ierr);}
15122999313aSBarry Smith   snes->ksp = ksp;
15132999313aSBarry Smith   PetscFunctionReturn(0);
15142999313aSBarry Smith }
15152999313aSBarry Smith 
15169b94acceSBarry Smith /* -----------------------------------------------------------*/
151752baeb72SSatish Balay /*@
15189b94acceSBarry Smith    SNESCreate - Creates a nonlinear solver context.
15199b94acceSBarry Smith 
1520c7afd0dbSLois Curfman McInnes    Collective on MPI_Comm
1521c7afd0dbSLois Curfman McInnes 
1522c7afd0dbSLois Curfman McInnes    Input Parameters:
1523906ed7ccSBarry Smith .  comm - MPI communicator
15249b94acceSBarry Smith 
15259b94acceSBarry Smith    Output Parameter:
15269b94acceSBarry Smith .  outsnes - the new SNES context
15279b94acceSBarry Smith 
1528c7afd0dbSLois Curfman McInnes    Options Database Keys:
1529c7afd0dbSLois Curfman McInnes +   -snes_mf - Activates default matrix-free Jacobian-vector products,
1530c7afd0dbSLois Curfman McInnes                and no preconditioning matrix
1531c7afd0dbSLois Curfman McInnes .   -snes_mf_operator - Activates default matrix-free Jacobian-vector
1532c7afd0dbSLois Curfman McInnes                products, and a user-provided preconditioning matrix
1533c7afd0dbSLois Curfman McInnes                as set by SNESSetJacobian()
1534c7afd0dbSLois Curfman McInnes -   -snes_fd - Uses (slow!) finite differences to compute Jacobian
1535c1f60f51SBarry Smith 
153636851e7fSLois Curfman McInnes    Level: beginner
153736851e7fSLois Curfman McInnes 
1538efd4aadfSBarry Smith    Developer Notes: SNES always creates a KSP object even though many SNES methods do not use it. This is
1539efd4aadfSBarry Smith                     unfortunate and should be fixed at some point. The flag snes->usesksp indicates if the
1540efd4aadfSBarry Smith                     particular method does use KSP and regulates if the information about the KSP is printed
1541efd4aadfSBarry Smith                     in SNESView(). TSSetFromOptions() does call SNESSetFromOptions() which can lead to users being confused
1542efd4aadfSBarry Smith                     by help messages about meaningless SNES options.
1543efd4aadfSBarry Smith 
1544efd4aadfSBarry Smith                     SNES always creates the snes->kspconvctx even though it is used by only one type. This should
1545efd4aadfSBarry Smith                     be fixed.
1546efd4aadfSBarry Smith 
15479b94acceSBarry Smith .keywords: SNES, nonlinear, create, context
15489b94acceSBarry Smith 
1549a8054027SBarry Smith .seealso: SNESSolve(), SNESDestroy(), SNES, SNESSetLagPreconditioner()
1550a8054027SBarry Smith 
15519b94acceSBarry Smith @*/
15527087cfbeSBarry Smith PetscErrorCode  SNESCreate(MPI_Comm comm,SNES *outsnes)
15539b94acceSBarry Smith {
1554dfbe8321SBarry Smith   PetscErrorCode ierr;
15559b94acceSBarry Smith   SNES           snes;
1556fa9f3622SBarry Smith   SNESKSPEW      *kctx;
155737fcc0dbSBarry Smith 
15583a40ed3dSBarry Smith   PetscFunctionBegin;
1559ed1caa07SMatthew Knepley   PetscValidPointer(outsnes,2);
15600298fd71SBarry Smith   *outsnes = NULL;
1561607a6623SBarry Smith   ierr = SNESInitializePackage();CHKERRQ(ierr);
15628ba1e511SMatthew Knepley 
156373107ff1SLisandro Dalcin   ierr = PetscHeaderCreate(snes,SNES_CLASSID,"SNES","Nonlinear solver","SNES",comm,SNESDestroy,SNESView);CHKERRQ(ierr);
15647adad957SLisandro Dalcin 
15658d359177SBarry Smith   snes->ops->converged    = SNESConvergedDefault;
15662c155ee1SBarry Smith   snes->usesksp           = PETSC_TRUE;
156788976e71SPeter Brune   snes->tolerancesset     = PETSC_FALSE;
15689b94acceSBarry Smith   snes->max_its           = 50;
15699750a799SBarry Smith   snes->max_funcs         = 10000;
15709b94acceSBarry Smith   snes->norm              = 0.0;
1571365a6726SPeter Brune   snes->normschedule      = SNES_NORM_ALWAYS;
15726c67d002SPeter Brune   snes->functype          = SNES_FUNCTION_DEFAULT;
15733a2046daSBarry Smith #if defined(PETSC_USE_REAL_SINGLE)
15743a2046daSBarry Smith   snes->rtol              = 1.e-5;
15753a2046daSBarry Smith #else
1576b4874afaSBarry Smith   snes->rtol              = 1.e-8;
15773a2046daSBarry Smith #endif
1578b4874afaSBarry Smith   snes->ttol              = 0.0;
15793a2046daSBarry Smith #if defined(PETSC_USE_REAL_SINGLE)
15803a2046daSBarry Smith   snes->abstol            = 1.e-25;
15813a2046daSBarry Smith #else
158270441072SBarry Smith   snes->abstol            = 1.e-50;
15833a2046daSBarry Smith #endif
15847cd0ae37SLisandro Dalcin #if defined(PETSC_USE_REAL_SINGLE)
15857cd0ae37SLisandro Dalcin   snes->stol              = 1.e-5;
15867cd0ae37SLisandro Dalcin #else
1587c60f73f4SPeter Brune   snes->stol              = 1.e-8;
15887cd0ae37SLisandro Dalcin #endif
15893a2046daSBarry Smith #if defined(PETSC_USE_REAL_SINGLE)
15903a2046daSBarry Smith   snes->deltatol          = 1.e-6;
15913a2046daSBarry Smith #else
15924b27c08aSLois Curfman McInnes   snes->deltatol          = 1.e-12;
15933a2046daSBarry Smith #endif
1594e37c518bSBarry Smith   snes->divtol            = 1.e4;
1595e37c518bSBarry Smith   snes->rnorm0            = 0;
15969b94acceSBarry Smith   snes->nfuncs            = 0;
159750ffb88aSMatthew Knepley   snes->numFailures       = 0;
159850ffb88aSMatthew Knepley   snes->maxFailures       = 1;
15997a00f4a9SLois Curfman McInnes   snes->linear_its        = 0;
1600e35cf81dSBarry Smith   snes->lagjacobian       = 1;
160137ec4e1aSPeter Brune   snes->jac_iter          = 0;
160237ec4e1aSPeter Brune   snes->lagjac_persist    = PETSC_FALSE;
1603a8054027SBarry Smith   snes->lagpreconditioner = 1;
160437ec4e1aSPeter Brune   snes->pre_iter          = 0;
160537ec4e1aSPeter Brune   snes->lagpre_persist    = PETSC_FALSE;
1606639f9d9dSBarry Smith   snes->numbermonitors    = 0;
16079b94acceSBarry Smith   snes->data              = 0;
16084dc4c822SBarry Smith   snes->setupcalled       = PETSC_FALSE;
1609186905e3SBarry Smith   snes->ksp_ewconv        = PETSC_FALSE;
16106f24a144SLois Curfman McInnes   snes->nwork             = 0;
161158c9b817SLisandro Dalcin   snes->work              = 0;
161258c9b817SLisandro Dalcin   snes->nvwork            = 0;
161358c9b817SLisandro Dalcin   snes->vwork             = 0;
1614758f92a0SBarry Smith   snes->conv_hist_len     = 0;
1615758f92a0SBarry Smith   snes->conv_hist_max     = 0;
16160298fd71SBarry Smith   snes->conv_hist         = NULL;
16170298fd71SBarry Smith   snes->conv_hist_its     = NULL;
1618758f92a0SBarry Smith   snes->conv_hist_reset   = PETSC_TRUE;
1619971e163fSPeter Brune   snes->counters_reset    = PETSC_TRUE;
1620e4ed7901SPeter Brune   snes->vec_func_init_set = PETSC_FALSE;
1621184914b5SBarry Smith   snes->reason            = SNES_CONVERGED_ITERATING;
1622efd4aadfSBarry Smith   snes->npcside           = PC_RIGHT;
1623c40d0f55SPeter Brune 
1624d8f46077SPeter Brune   snes->mf          = PETSC_FALSE;
1625d8f46077SPeter Brune   snes->mf_operator = PETSC_FALSE;
1626d8f46077SPeter Brune   snes->mf_version  = 1;
1627d8f46077SPeter Brune 
16283d4c4710SBarry Smith   snes->numLinearSolveFailures = 0;
16293d4c4710SBarry Smith   snes->maxLinearSolveFailures = 1;
16303d4c4710SBarry Smith 
1631349187a7SBarry Smith   snes->vizerotolerance = 1.e-8;
1632349187a7SBarry Smith 
16334fc747eaSLawrence Mitchell   /* Set this to true if the implementation of SNESSolve_XXX does compute the residual at the final solution. */
16344fc747eaSLawrence Mitchell   snes->alwayscomputesfinalresidual = PETSC_FALSE;
16354fc747eaSLawrence Mitchell 
16369b94acceSBarry Smith   /* Create context to compute Eisenstat-Walker relative tolerance for KSP */
1637b00a9115SJed Brown   ierr = PetscNewLog(snes,&kctx);CHKERRQ(ierr);
1638f5af7f23SKarl Rupp 
16399b94acceSBarry Smith   snes->kspconvctx  = (void*)kctx;
16409b94acceSBarry Smith   kctx->version     = 2;
16419b94acceSBarry Smith   kctx->rtol_0      = .3; /* Eisenstat and Walker suggest rtol_0=.5, but
16429b94acceSBarry Smith                              this was too large for some test cases */
164375567043SBarry Smith   kctx->rtol_last   = 0.0;
16449b94acceSBarry Smith   kctx->rtol_max    = .9;
16459b94acceSBarry Smith   kctx->gamma       = 1.0;
164662d1f40fSBarry Smith   kctx->alpha       = .5*(1.0 + PetscSqrtReal(5.0));
164771f87433Sdalcinl   kctx->alpha2      = kctx->alpha;
16489b94acceSBarry Smith   kctx->threshold   = .1;
164975567043SBarry Smith   kctx->lresid_last = 0.0;
165075567043SBarry Smith   kctx->norm_last   = 0.0;
16519b94acceSBarry Smith 
16529b94acceSBarry Smith   *outsnes = snes;
16533a40ed3dSBarry Smith   PetscFunctionReturn(0);
16549b94acceSBarry Smith }
16559b94acceSBarry Smith 
165688f0584fSBarry Smith /*MC
1657411c0326SBarry Smith     SNESFunction - Functional form used to convey the nonlinear function to be solved by SNES
165888f0584fSBarry Smith 
165988f0584fSBarry Smith      Synopsis:
1660411c0326SBarry Smith      #include "petscsnes.h"
1661411c0326SBarry Smith      PetscErrorCode SNESFunction(SNES snes,Vec x,Vec f,void *ctx);
166288f0584fSBarry Smith 
166388f0584fSBarry Smith      Input Parameters:
166488f0584fSBarry Smith +     snes - the SNES context
166588f0584fSBarry Smith .     x    - state at which to evaluate residual
166688f0584fSBarry Smith -     ctx     - optional user-defined function context, passed in with SNESSetFunction()
166788f0584fSBarry Smith 
166888f0584fSBarry Smith      Output Parameter:
166988f0584fSBarry Smith .     f  - vector to put residual (function value)
167088f0584fSBarry Smith 
1671878cb397SSatish Balay    Level: intermediate
1672878cb397SSatish Balay 
167388f0584fSBarry Smith .seealso:   SNESSetFunction(), SNESGetFunction()
167488f0584fSBarry Smith M*/
167588f0584fSBarry Smith 
16769b94acceSBarry Smith /*@C
16779b94acceSBarry Smith    SNESSetFunction - Sets the function evaluation routine and function
16789b94acceSBarry Smith    vector for use by the SNES routines in solving systems of nonlinear
16799b94acceSBarry Smith    equations.
16809b94acceSBarry Smith 
16813f9fe445SBarry Smith    Logically Collective on SNES
1682fee21e36SBarry Smith 
1683c7afd0dbSLois Curfman McInnes    Input Parameters:
1684c7afd0dbSLois Curfman McInnes +  snes - the SNES context
1685c7afd0dbSLois Curfman McInnes .  r - vector to store function value
1686f8b49ee9SBarry Smith .  f - function evaluation routine; see SNESFunction for calling sequence details
1687c7afd0dbSLois Curfman McInnes -  ctx - [optional] user-defined context for private data for the
16880298fd71SBarry Smith          function evaluation routine (may be NULL)
16899b94acceSBarry Smith 
16909b94acceSBarry Smith    Notes:
16919b94acceSBarry Smith    The Newton-like methods typically solve linear systems of the form
16929b94acceSBarry Smith $      f'(x) x = -f(x),
1693c7afd0dbSLois Curfman McInnes    where f'(x) denotes the Jacobian matrix and f(x) is the function.
16949b94acceSBarry Smith 
169536851e7fSLois Curfman McInnes    Level: beginner
169636851e7fSLois Curfman McInnes 
16979b94acceSBarry Smith .keywords: SNES, nonlinear, set, function
16989b94acceSBarry Smith 
1699bf388a1fSBarry Smith .seealso: SNESGetFunction(), SNESComputeFunction(), SNESSetJacobian(), SNESSetPicard(), SNESFunction
17009b94acceSBarry Smith @*/
1701f8b49ee9SBarry Smith PetscErrorCode  SNESSetFunction(SNES snes,Vec r,PetscErrorCode (*f)(SNES,Vec,Vec,void*),void *ctx)
17029b94acceSBarry Smith {
170385385478SLisandro Dalcin   PetscErrorCode ierr;
17046cab3a1bSJed Brown   DM             dm;
17056cab3a1bSJed Brown 
17063a40ed3dSBarry Smith   PetscFunctionBegin;
17070700a824SBarry Smith   PetscValidHeaderSpecific(snes,SNES_CLASSID,1);
1708d2a683ecSLisandro Dalcin   if (r) {
1709d2a683ecSLisandro Dalcin     PetscValidHeaderSpecific(r,VEC_CLASSID,2);
1710d2a683ecSLisandro Dalcin     PetscCheckSameComm(snes,1,r,2);
171185385478SLisandro Dalcin     ierr = PetscObjectReference((PetscObject)r);CHKERRQ(ierr);
17126bf464f9SBarry Smith     ierr = VecDestroy(&snes->vec_func);CHKERRQ(ierr);
1713f5af7f23SKarl Rupp 
171485385478SLisandro Dalcin     snes->vec_func = r;
1715d2a683ecSLisandro Dalcin   }
17166cab3a1bSJed Brown   ierr = SNESGetDM(snes,&dm);CHKERRQ(ierr);
1717f8b49ee9SBarry Smith   ierr = DMSNESSetFunction(dm,f,ctx);CHKERRQ(ierr);
17183a40ed3dSBarry Smith   PetscFunctionReturn(0);
17199b94acceSBarry Smith }
17209b94acceSBarry Smith 
1721646217ecSPeter Brune 
1722e4ed7901SPeter Brune /*@C
1723e4ed7901SPeter Brune    SNESSetInitialFunction - Sets the function vector to be used as the
1724e4ed7901SPeter Brune    function norm at the initialization of the method.  In some
1725e4ed7901SPeter Brune    instances, the user has precomputed the function before calling
1726e4ed7901SPeter Brune    SNESSolve.  This function allows one to avoid a redundant call
1727e4ed7901SPeter Brune    to SNESComputeFunction in that case.
1728e4ed7901SPeter Brune 
1729e4ed7901SPeter Brune    Logically Collective on SNES
1730e4ed7901SPeter Brune 
1731e4ed7901SPeter Brune    Input Parameters:
1732e4ed7901SPeter Brune +  snes - the SNES context
1733e4ed7901SPeter Brune -  f - vector to store function value
1734e4ed7901SPeter Brune 
1735e4ed7901SPeter Brune    Notes:
1736e4ed7901SPeter Brune    This should not be modified during the solution procedure.
1737e4ed7901SPeter Brune 
1738e4ed7901SPeter Brune    This is used extensively in the SNESFAS hierarchy and in nonlinear preconditioning.
1739e4ed7901SPeter Brune 
1740e4ed7901SPeter Brune    Level: developer
1741e4ed7901SPeter Brune 
1742e4ed7901SPeter Brune .keywords: SNES, nonlinear, set, function
1743e4ed7901SPeter Brune 
1744e4ed7901SPeter Brune .seealso: SNESSetFunction(), SNESComputeFunction(), SNESSetInitialFunctionNorm()
1745e4ed7901SPeter Brune @*/
1746e4ed7901SPeter Brune PetscErrorCode  SNESSetInitialFunction(SNES snes, Vec f)
1747e4ed7901SPeter Brune {
1748e4ed7901SPeter Brune   PetscErrorCode ierr;
1749e4ed7901SPeter Brune   Vec            vec_func;
1750e4ed7901SPeter Brune 
1751e4ed7901SPeter Brune   PetscFunctionBegin;
1752e4ed7901SPeter Brune   PetscValidHeaderSpecific(snes,SNES_CLASSID,1);
1753e4ed7901SPeter Brune   PetscValidHeaderSpecific(f,VEC_CLASSID,2);
1754e4ed7901SPeter Brune   PetscCheckSameComm(snes,1,f,2);
1755efd4aadfSBarry Smith   if (snes->npcside== PC_LEFT && snes->functype == SNES_FUNCTION_PRECONDITIONED) {
1756902f982fSPeter Brune     snes->vec_func_init_set = PETSC_FALSE;
1757902f982fSPeter Brune     PetscFunctionReturn(0);
1758902f982fSPeter Brune   }
17590298fd71SBarry Smith   ierr = SNESGetFunction(snes,&vec_func,NULL,NULL);CHKERRQ(ierr);
1760e4ed7901SPeter Brune   ierr = VecCopy(f, vec_func);CHKERRQ(ierr);
1761f5af7f23SKarl Rupp 
1762217b9c2eSPeter Brune   snes->vec_func_init_set = PETSC_TRUE;
1763e4ed7901SPeter Brune   PetscFunctionReturn(0);
1764e4ed7901SPeter Brune }
1765e4ed7901SPeter Brune 
1766534ebe21SPeter Brune /*@
1767365a6726SPeter Brune    SNESSetNormSchedule - Sets the SNESNormSchedule used in covergence and monitoring
1768534ebe21SPeter Brune    of the SNES method.
1769534ebe21SPeter Brune 
1770534ebe21SPeter Brune    Logically Collective on SNES
1771534ebe21SPeter Brune 
1772534ebe21SPeter Brune    Input Parameters:
1773534ebe21SPeter Brune +  snes - the SNES context
1774365a6726SPeter Brune -  normschedule - the frequency of norm computation
1775534ebe21SPeter Brune 
1776517f1916SMatthew G. Knepley    Options Database Key:
1777517f1916SMatthew G. Knepley .  -snes_norm_schedule <none, always, initialonly, finalonly, initalfinalonly>
1778517f1916SMatthew G. Knepley 
1779534ebe21SPeter Brune    Notes:
1780365a6726SPeter Brune    Only certain SNES methods support certain SNESNormSchedules.  Most require evaluation
1781534ebe21SPeter Brune    of the nonlinear function and the taking of its norm at every iteration to
1782534ebe21SPeter Brune    even ensure convergence at all.  However, methods such as custom Gauss-Seidel methods
1783be95d8f1SBarry Smith    (SNESNGS) and the like do not require the norm of the function to be computed, and therfore
1784534ebe21SPeter Brune    may either be monitored for convergence or not.  As these are often used as nonlinear
1785534ebe21SPeter Brune    preconditioners, monitoring the norm of their error is not a useful enterprise within
1786534ebe21SPeter Brune    their solution.
1787534ebe21SPeter Brune 
1788534ebe21SPeter Brune    Level: developer
1789534ebe21SPeter Brune 
1790534ebe21SPeter Brune .keywords: SNES, nonlinear, set, function, norm, type
1791534ebe21SPeter Brune 
1792365a6726SPeter Brune .seealso: SNESGetNormSchedule(), SNESComputeFunction(), VecNorm(), SNESSetFunction(), SNESSetInitialFunction(), SNESNormSchedule
1793534ebe21SPeter Brune @*/
1794365a6726SPeter Brune PetscErrorCode  SNESSetNormSchedule(SNES snes, SNESNormSchedule normschedule)
1795534ebe21SPeter Brune {
1796534ebe21SPeter Brune   PetscFunctionBegin;
1797534ebe21SPeter Brune   PetscValidHeaderSpecific(snes,SNES_CLASSID,1);
1798365a6726SPeter Brune   snes->normschedule = normschedule;
1799534ebe21SPeter Brune   PetscFunctionReturn(0);
1800534ebe21SPeter Brune }
1801534ebe21SPeter Brune 
1802534ebe21SPeter Brune 
1803534ebe21SPeter Brune /*@
1804365a6726SPeter Brune    SNESGetNormSchedule - Gets the SNESNormSchedule used in covergence and monitoring
1805534ebe21SPeter Brune    of the SNES method.
1806534ebe21SPeter Brune 
1807534ebe21SPeter Brune    Logically Collective on SNES
1808534ebe21SPeter Brune 
1809534ebe21SPeter Brune    Input Parameters:
1810534ebe21SPeter Brune +  snes - the SNES context
1811365a6726SPeter Brune -  normschedule - the type of the norm used
1812534ebe21SPeter Brune 
1813534ebe21SPeter Brune    Level: advanced
1814534ebe21SPeter Brune 
1815534ebe21SPeter Brune .keywords: SNES, nonlinear, set, function, norm, type
1816534ebe21SPeter Brune 
1817365a6726SPeter Brune .seealso: SNESSetNormSchedule(), SNESComputeFunction(), VecNorm(), SNESSetFunction(), SNESSetInitialFunction(), SNESNormSchedule
1818534ebe21SPeter Brune @*/
1819365a6726SPeter Brune PetscErrorCode  SNESGetNormSchedule(SNES snes, SNESNormSchedule *normschedule)
1820534ebe21SPeter Brune {
1821534ebe21SPeter Brune   PetscFunctionBegin;
1822534ebe21SPeter Brune   PetscValidHeaderSpecific(snes,SNES_CLASSID,1);
1823365a6726SPeter Brune   *normschedule = snes->normschedule;
1824534ebe21SPeter Brune   PetscFunctionReturn(0);
1825534ebe21SPeter Brune }
1826534ebe21SPeter Brune 
182747073ea2SPeter Brune 
1828c5ce4427SMatthew G. Knepley /*@
1829c5ce4427SMatthew G. Knepley   SNESSetFunctionNorm - Sets the last computed residual norm.
1830c5ce4427SMatthew G. Knepley 
1831c5ce4427SMatthew G. Knepley   Logically Collective on SNES
1832c5ce4427SMatthew G. Knepley 
1833c5ce4427SMatthew G. Knepley   Input Parameters:
1834c5ce4427SMatthew G. Knepley + snes - the SNES context
1835c5ce4427SMatthew G. Knepley 
1836c5ce4427SMatthew G. Knepley - normschedule - the frequency of norm computation
1837c5ce4427SMatthew G. Knepley 
1838c5ce4427SMatthew G. Knepley   Level: developer
1839c5ce4427SMatthew G. Knepley 
1840c5ce4427SMatthew G. Knepley .keywords: SNES, nonlinear, set, function, norm, type
1841c5ce4427SMatthew G. Knepley .seealso: SNESGetNormSchedule(), SNESComputeFunction(), VecNorm(), SNESSetFunction(), SNESSetInitialFunction(), SNESNormSchedule
1842c5ce4427SMatthew G. Knepley @*/
1843c5ce4427SMatthew G. Knepley PetscErrorCode SNESSetFunctionNorm(SNES snes, PetscReal norm)
1844c5ce4427SMatthew G. Knepley {
1845c5ce4427SMatthew G. Knepley   PetscFunctionBegin;
1846c5ce4427SMatthew G. Knepley   PetscValidHeaderSpecific(snes,SNES_CLASSID,1);
1847c5ce4427SMatthew G. Knepley   snes->norm = norm;
1848c5ce4427SMatthew G. Knepley   PetscFunctionReturn(0);
1849c5ce4427SMatthew G. Knepley }
1850c5ce4427SMatthew G. Knepley 
1851c5ce4427SMatthew G. Knepley /*@
1852c5ce4427SMatthew G. Knepley   SNESGetFunctionNorm - Gets the last computed norm of the residual
1853c5ce4427SMatthew G. Knepley 
1854c5ce4427SMatthew G. Knepley   Not Collective
1855c5ce4427SMatthew G. Knepley 
1856c5ce4427SMatthew G. Knepley   Input Parameter:
1857c5ce4427SMatthew G. Knepley . snes - the SNES context
1858c5ce4427SMatthew G. Knepley 
1859c5ce4427SMatthew G. Knepley   Output Parameter:
1860c5ce4427SMatthew G. Knepley . norm - the last computed residual norm
1861c5ce4427SMatthew G. Knepley 
1862c5ce4427SMatthew G. Knepley   Level: developer
1863c5ce4427SMatthew G. Knepley 
1864c5ce4427SMatthew G. Knepley .keywords: SNES, nonlinear, set, function, norm, type
1865c5ce4427SMatthew G. Knepley .seealso: SNESSetNormSchedule(), SNESComputeFunction(), VecNorm(), SNESSetFunction(), SNESSetInitialFunction(), SNESNormSchedule
1866c5ce4427SMatthew G. Knepley @*/
1867c5ce4427SMatthew G. Knepley PetscErrorCode SNESGetFunctionNorm(SNES snes, PetscReal *norm)
1868c5ce4427SMatthew G. Knepley {
1869c5ce4427SMatthew G. Knepley   PetscFunctionBegin;
1870c5ce4427SMatthew G. Knepley   PetscValidHeaderSpecific(snes,SNES_CLASSID,1);
1871c5ce4427SMatthew G. Knepley   PetscValidPointer(norm, 2);
1872c5ce4427SMatthew G. Knepley   *norm = snes->norm;
1873c5ce4427SMatthew G. Knepley   PetscFunctionReturn(0);
1874c5ce4427SMatthew G. Knepley }
1875c5ce4427SMatthew G. Knepley 
187647073ea2SPeter Brune /*@C
187747073ea2SPeter Brune    SNESSetFunctionType - Sets the SNESNormSchedule used in covergence and monitoring
187847073ea2SPeter Brune    of the SNES method.
187947073ea2SPeter Brune 
188047073ea2SPeter Brune    Logically Collective on SNES
188147073ea2SPeter Brune 
188247073ea2SPeter Brune    Input Parameters:
188347073ea2SPeter Brune +  snes - the SNES context
188447073ea2SPeter Brune -  normschedule - the frequency of norm computation
188547073ea2SPeter Brune 
188647073ea2SPeter Brune    Notes:
188747073ea2SPeter Brune    Only certain SNES methods support certain SNESNormSchedules.  Most require evaluation
188847073ea2SPeter Brune    of the nonlinear function and the taking of its norm at every iteration to
188947073ea2SPeter Brune    even ensure convergence at all.  However, methods such as custom Gauss-Seidel methods
1890be95d8f1SBarry Smith    (SNESNGS) and the like do not require the norm of the function to be computed, and therfore
189147073ea2SPeter Brune    may either be monitored for convergence or not.  As these are often used as nonlinear
189247073ea2SPeter Brune    preconditioners, monitoring the norm of their error is not a useful enterprise within
189347073ea2SPeter Brune    their solution.
189447073ea2SPeter Brune 
189547073ea2SPeter Brune    Level: developer
189647073ea2SPeter Brune 
189747073ea2SPeter Brune .keywords: SNES, nonlinear, set, function, norm, type
189847073ea2SPeter Brune 
189947073ea2SPeter Brune .seealso: SNESGetNormSchedule(), SNESComputeFunction(), VecNorm(), SNESSetFunction(), SNESSetInitialFunction(), SNESNormSchedule
190047073ea2SPeter Brune @*/
190147073ea2SPeter Brune PetscErrorCode  SNESSetFunctionType(SNES snes, SNESFunctionType type)
190247073ea2SPeter Brune {
190347073ea2SPeter Brune   PetscFunctionBegin;
190447073ea2SPeter Brune   PetscValidHeaderSpecific(snes,SNES_CLASSID,1);
190547073ea2SPeter Brune   snes->functype = type;
190647073ea2SPeter Brune   PetscFunctionReturn(0);
190747073ea2SPeter Brune }
190847073ea2SPeter Brune 
190947073ea2SPeter Brune 
191047073ea2SPeter Brune /*@C
191147073ea2SPeter Brune    SNESGetFunctionType - Gets the SNESNormSchedule used in covergence and monitoring
191247073ea2SPeter Brune    of the SNES method.
191347073ea2SPeter Brune 
191447073ea2SPeter Brune    Logically Collective on SNES
191547073ea2SPeter Brune 
191647073ea2SPeter Brune    Input Parameters:
191747073ea2SPeter Brune +  snes - the SNES context
191847073ea2SPeter Brune -  normschedule - the type of the norm used
191947073ea2SPeter Brune 
192047073ea2SPeter Brune    Level: advanced
192147073ea2SPeter Brune 
192247073ea2SPeter Brune .keywords: SNES, nonlinear, set, function, norm, type
192347073ea2SPeter Brune 
192447073ea2SPeter Brune .seealso: SNESSetNormSchedule(), SNESComputeFunction(), VecNorm(), SNESSetFunction(), SNESSetInitialFunction(), SNESNormSchedule
192547073ea2SPeter Brune @*/
192647073ea2SPeter Brune PetscErrorCode  SNESGetFunctionType(SNES snes, SNESFunctionType *type)
192747073ea2SPeter Brune {
192847073ea2SPeter Brune   PetscFunctionBegin;
192947073ea2SPeter Brune   PetscValidHeaderSpecific(snes,SNES_CLASSID,1);
193047073ea2SPeter Brune   *type = snes->functype;
1931534ebe21SPeter Brune   PetscFunctionReturn(0);
1932534ebe21SPeter Brune }
1933534ebe21SPeter Brune 
1934bf388a1fSBarry Smith /*MC
1935be95d8f1SBarry Smith     SNESNGSFunction - function used to convey a Gauss-Seidel sweep on the nonlinear function
1936bf388a1fSBarry Smith 
1937bf388a1fSBarry Smith      Synopsis:
1938aaa7dc30SBarry Smith      #include <petscsnes.h>
1939be95d8f1SBarry Smith $    SNESNGSFunction(SNES snes,Vec x,Vec b,void *ctx);
1940bf388a1fSBarry Smith 
1941bf388a1fSBarry Smith +  X   - solution vector
1942bf388a1fSBarry Smith .  B   - RHS vector
1943bf388a1fSBarry Smith -  ctx - optional user-defined Gauss-Seidel context
1944bf388a1fSBarry Smith 
1945878cb397SSatish Balay    Level: intermediate
1946878cb397SSatish Balay 
1947be95d8f1SBarry Smith .seealso:   SNESSetNGS(), SNESGetNGS()
1948bf388a1fSBarry Smith M*/
1949bf388a1fSBarry Smith 
1950c79ef259SPeter Brune /*@C
1951be95d8f1SBarry Smith    SNESSetNGS - Sets the user nonlinear Gauss-Seidel routine for
1952c79ef259SPeter Brune    use with composed nonlinear solvers.
1953c79ef259SPeter Brune 
1954c79ef259SPeter Brune    Input Parameters:
1955c79ef259SPeter Brune +  snes   - the SNES context
1956be95d8f1SBarry Smith .  f - function evaluation routine to apply Gauss-Seidel see SNESNGSFunction
1957c79ef259SPeter Brune -  ctx    - [optional] user-defined context for private data for the
19580298fd71SBarry Smith             smoother evaluation routine (may be NULL)
1959c79ef259SPeter Brune 
1960c79ef259SPeter Brune    Notes:
1961be95d8f1SBarry Smith    The NGS routines are used by the composed nonlinear solver to generate
1962c79ef259SPeter Brune     a problem appropriate update to the solution, particularly FAS.
1963c79ef259SPeter Brune 
1964d28543b3SPeter Brune    Level: intermediate
1965c79ef259SPeter Brune 
1966d28543b3SPeter Brune .keywords: SNES, nonlinear, set, Gauss-Seidel
1967c79ef259SPeter Brune 
1968be95d8f1SBarry Smith .seealso: SNESGetFunction(), SNESComputeNGS()
1969c79ef259SPeter Brune @*/
1970be95d8f1SBarry Smith PetscErrorCode SNESSetNGS(SNES snes,PetscErrorCode (*f)(SNES,Vec,Vec,void*),void *ctx)
19716cab3a1bSJed Brown {
19726cab3a1bSJed Brown   PetscErrorCode ierr;
19736cab3a1bSJed Brown   DM             dm;
19746cab3a1bSJed Brown 
1975646217ecSPeter Brune   PetscFunctionBegin;
19766cab3a1bSJed Brown   PetscValidHeaderSpecific(snes,SNES_CLASSID,1);
19776cab3a1bSJed Brown   ierr = SNESGetDM(snes,&dm);CHKERRQ(ierr);
1978be95d8f1SBarry Smith   ierr = DMSNESSetNGS(dm,f,ctx);CHKERRQ(ierr);
1979646217ecSPeter Brune   PetscFunctionReturn(0);
1980646217ecSPeter Brune }
1981646217ecSPeter Brune 
198282b59a81SJed Brown PETSC_EXTERN PetscErrorCode SNESPicardComputeFunction(SNES snes,Vec x,Vec f,void *ctx)
19838b0a5094SBarry Smith {
19848b0a5094SBarry Smith   PetscErrorCode ierr;
1985e03ab78fSPeter Brune   DM             dm;
1986942e3340SBarry Smith   DMSNES         sdm;
19876cab3a1bSJed Brown 
19888b0a5094SBarry Smith   PetscFunctionBegin;
1989e03ab78fSPeter Brune   ierr = SNESGetDM(snes,&dm);CHKERRQ(ierr);
1990942e3340SBarry Smith   ierr = DMGetDMSNES(dm,&sdm);CHKERRQ(ierr);
19918b0a5094SBarry Smith   /*  A(x)*x - b(x) */
199222c6f798SBarry Smith   if (sdm->ops->computepfunction) {
199322c6f798SBarry Smith     ierr = (*sdm->ops->computepfunction)(snes,x,f,sdm->pctx);CHKERRQ(ierr);
199422c6f798SBarry Smith   } else SETERRQ(PETSC_COMM_SELF,PETSC_ERR_ARG_WRONGSTATE, "Must call SNESSetPicard() to provide Picard function.");
1995e03ab78fSPeter Brune 
199622c6f798SBarry Smith   if (sdm->ops->computepjacobian) {
1997d1e9a80fSBarry Smith     ierr = (*sdm->ops->computepjacobian)(snes,x,snes->jacobian,snes->jacobian_pre,sdm->pctx);CHKERRQ(ierr);
199874e1e8c1SBarry Smith   } else SETERRQ(PETSC_COMM_SELF,PETSC_ERR_ARG_WRONGSTATE, "Must call SNESSetPicard() to provide Picard matrix.");
19998b0a5094SBarry Smith   ierr = VecScale(f,-1.0);CHKERRQ(ierr);
200095eabcedSBarry Smith   ierr = MatMultAdd(snes->jacobian,x,f,f);CHKERRQ(ierr);
20018b0a5094SBarry Smith   PetscFunctionReturn(0);
20028b0a5094SBarry Smith }
20038b0a5094SBarry Smith 
2004d1e9a80fSBarry Smith PETSC_EXTERN PetscErrorCode SNESPicardComputeJacobian(SNES snes,Vec x1,Mat J,Mat B,void *ctx)
20058b0a5094SBarry Smith {
20068b0a5094SBarry Smith   PetscFunctionBegin;
2007e03ab78fSPeter Brune   /* the jacobian matrix should be pre-filled in SNESPicardComputeFunction */
20088b0a5094SBarry Smith   PetscFunctionReturn(0);
20098b0a5094SBarry Smith }
20108b0a5094SBarry Smith 
20118b0a5094SBarry Smith /*@C
20120d04baf8SBarry Smith    SNESSetPicard - Use SNES to solve the semilinear-system A(x) x = b(x) via a Picard type iteration (Picard linearization)
20138b0a5094SBarry Smith 
20148b0a5094SBarry Smith    Logically Collective on SNES
20158b0a5094SBarry Smith 
20168b0a5094SBarry Smith    Input Parameters:
20178b0a5094SBarry Smith +  snes - the SNES context
20188b0a5094SBarry Smith .  r - vector to store function value
2019f8b49ee9SBarry Smith .  b - function evaluation routine
2020e5d3d808SBarry Smith .  Amat - matrix with which A(x) x - b(x) is to be computed
2021e5d3d808SBarry Smith .  Pmat - matrix from which preconditioner is computed (usually the same as Amat)
2022411c0326SBarry Smith .  J  - function to compute matrix value, see SNESJacobianFunction for details on its calling sequence
20238b0a5094SBarry Smith -  ctx - [optional] user-defined context for private data for the
20240298fd71SBarry Smith          function evaluation routine (may be NULL)
20258b0a5094SBarry Smith 
20268b0a5094SBarry Smith    Notes:
2027f450aa47SBarry Smith     We do not recomemend using this routine. It is far better to provide the nonlinear function F() and some approximation to the Jacobian and use
2028f450aa47SBarry Smith     an approximate Newton solver. This interface is provided to allow porting/testing a previous Picard based code in PETSc before converting it to approximate Newton.
2029f450aa47SBarry Smith 
20308b0a5094SBarry Smith     One can call SNESSetPicard() or SNESSetFunction() (and possibly SNESSetJacobian()) but cannot call both
20318b0a5094SBarry Smith 
20328b0a5094SBarry Smith $     Solves the equation A(x) x = b(x) via the defect correction algorithm A(x^{n}) (x^{n+1} - x^{n}) = b(x^{n}) - A(x^{n})x^{n}
20338b0a5094SBarry Smith $     Note that when an exact solver is used this corresponds to the "classic" Picard A(x^{n}) x^{n+1} = b(x^{n}) iteration.
20348b0a5094SBarry Smith 
20358b0a5094SBarry Smith      Run with -snes_mf_operator to solve the system with Newton's method using A(x^{n}) to construct the preconditioner.
20368b0a5094SBarry Smith 
20370d04baf8SBarry Smith    We implement the defect correction form of the Picard iteration because it converges much more generally when inexact linear solvers are used then
20380d04baf8SBarry Smith    the direct Picard iteration A(x^n) x^{n+1} = b(x^n)
20398b0a5094SBarry Smith 
20408b0a5094SBarry Smith    There is some controversity over the definition of a Picard iteration for nonlinear systems but almost everyone agrees that it involves a linear solve and some
20418b0a5094SBarry Smith    believe it is the iteration  A(x^{n}) x^{n+1} = b(x^{n}) hence we use the name Picard. If anyone has an authoritative  reference that defines the Picard iteration
20428b0a5094SBarry Smith    different please contact us at petsc-dev@mcs.anl.gov and we'll have an entirely new argument :-).
20438b0a5094SBarry Smith 
2044f450aa47SBarry Smith    Level: intermediate
20458b0a5094SBarry Smith 
20468b0a5094SBarry Smith .keywords: SNES, nonlinear, set, function
20478b0a5094SBarry Smith 
2048411c0326SBarry Smith .seealso: SNESGetFunction(), SNESSetFunction(), SNESComputeFunction(), SNESSetJacobian(), SNESGetPicard(), SNESLineSearchPreCheckPicard(), SNESJacobianFunction
20498b0a5094SBarry Smith @*/
2050d1e9a80fSBarry Smith PetscErrorCode  SNESSetPicard(SNES snes,Vec r,PetscErrorCode (*b)(SNES,Vec,Vec,void*),Mat Amat, Mat Pmat, PetscErrorCode (*J)(SNES,Vec,Mat,Mat,void*),void *ctx)
20518b0a5094SBarry Smith {
20528b0a5094SBarry Smith   PetscErrorCode ierr;
2053e03ab78fSPeter Brune   DM             dm;
2054e03ab78fSPeter Brune 
20558b0a5094SBarry Smith   PetscFunctionBegin;
20568b0a5094SBarry Smith   PetscValidHeaderSpecific(snes,SNES_CLASSID,1);
2057e03ab78fSPeter Brune   ierr = SNESGetDM(snes, &dm);CHKERRQ(ierr);
2058f8b49ee9SBarry Smith   ierr = DMSNESSetPicard(dm,b,J,ctx);CHKERRQ(ierr);
20598b0a5094SBarry Smith   ierr = SNESSetFunction(snes,r,SNESPicardComputeFunction,ctx);CHKERRQ(ierr);
2060e5d3d808SBarry Smith   ierr = SNESSetJacobian(snes,Amat,Pmat,SNESPicardComputeJacobian,ctx);CHKERRQ(ierr);
20618b0a5094SBarry Smith   PetscFunctionReturn(0);
20628b0a5094SBarry Smith }
20638b0a5094SBarry Smith 
20647971a8bfSPeter Brune /*@C
20657971a8bfSPeter Brune    SNESGetPicard - Returns the context for the Picard iteration
20667971a8bfSPeter Brune 
20677971a8bfSPeter Brune    Not Collective, but Vec is parallel if SNES is parallel. Collective if Vec is requested, but has not been created yet.
20687971a8bfSPeter Brune 
20697971a8bfSPeter Brune    Input Parameter:
20707971a8bfSPeter Brune .  snes - the SNES context
20717971a8bfSPeter Brune 
20727971a8bfSPeter Brune    Output Parameter:
20730298fd71SBarry Smith +  r - the function (or NULL)
2074f8b49ee9SBarry Smith .  f - the function (or NULL); see SNESFunction for calling sequence details
2075e4357dc4SBarry Smith .  Amat - the matrix used to defined the operation A(x) x - b(x) (or NULL)
2076e4357dc4SBarry Smith .  Pmat  - the matrix from which the preconditioner will be constructed (or NULL)
2077f8b49ee9SBarry Smith .  J - the function for matrix evaluation (or NULL); see SNESJacobianFunction for calling sequence details
20780298fd71SBarry Smith -  ctx - the function context (or NULL)
20797971a8bfSPeter Brune 
20807971a8bfSPeter Brune    Level: advanced
20817971a8bfSPeter Brune 
20827971a8bfSPeter Brune .keywords: SNES, nonlinear, get, function
20837971a8bfSPeter Brune 
2084e4357dc4SBarry Smith .seealso: SNESSetPicard(), SNESGetFunction(), SNESGetJacobian(), SNESGetDM(), SNESFunction, SNESJacobianFunction
20857971a8bfSPeter Brune @*/
2086d1e9a80fSBarry Smith PetscErrorCode  SNESGetPicard(SNES snes,Vec *r,PetscErrorCode (**f)(SNES,Vec,Vec,void*),Mat *Amat, Mat *Pmat, PetscErrorCode (**J)(SNES,Vec,Mat,Mat,void*),void **ctx)
20877971a8bfSPeter Brune {
20887971a8bfSPeter Brune   PetscErrorCode ierr;
20897971a8bfSPeter Brune   DM             dm;
20907971a8bfSPeter Brune 
20917971a8bfSPeter Brune   PetscFunctionBegin;
20927971a8bfSPeter Brune   PetscValidHeaderSpecific(snes,SNES_CLASSID,1);
20930298fd71SBarry Smith   ierr = SNESGetFunction(snes,r,NULL,NULL);CHKERRQ(ierr);
2094e4357dc4SBarry Smith   ierr = SNESGetJacobian(snes,Amat,Pmat,NULL,NULL);CHKERRQ(ierr);
20957971a8bfSPeter Brune   ierr = SNESGetDM(snes,&dm);CHKERRQ(ierr);
2096f8b49ee9SBarry Smith   ierr = DMSNESGetPicard(dm,f,J,ctx);CHKERRQ(ierr);
20977971a8bfSPeter Brune   PetscFunctionReturn(0);
20987971a8bfSPeter Brune }
20997971a8bfSPeter Brune 
2100d25893d9SBarry Smith /*@C
2101d25893d9SBarry Smith    SNESSetComputeInitialGuess - Sets a routine used to compute an initial guess for the problem
2102d25893d9SBarry Smith 
2103d25893d9SBarry Smith    Logically Collective on SNES
2104d25893d9SBarry Smith 
2105d25893d9SBarry Smith    Input Parameters:
2106d25893d9SBarry Smith +  snes - the SNES context
2107d25893d9SBarry Smith .  func - function evaluation routine
2108d25893d9SBarry Smith -  ctx - [optional] user-defined context for private data for the
21090298fd71SBarry Smith          function evaluation routine (may be NULL)
2110d25893d9SBarry Smith 
2111d25893d9SBarry Smith    Calling sequence of func:
2112d25893d9SBarry Smith $    func (SNES snes,Vec x,void *ctx);
2113d25893d9SBarry Smith 
2114d25893d9SBarry Smith .  f - function vector
2115d25893d9SBarry Smith -  ctx - optional user-defined function context
2116d25893d9SBarry Smith 
2117d25893d9SBarry Smith    Level: intermediate
2118d25893d9SBarry Smith 
2119d25893d9SBarry Smith .keywords: SNES, nonlinear, set, function
2120d25893d9SBarry Smith 
2121d25893d9SBarry Smith .seealso: SNESGetFunction(), SNESComputeFunction(), SNESSetJacobian()
2122d25893d9SBarry Smith @*/
2123d25893d9SBarry Smith PetscErrorCode  SNESSetComputeInitialGuess(SNES snes,PetscErrorCode (*func)(SNES,Vec,void*),void *ctx)
2124d25893d9SBarry Smith {
2125d25893d9SBarry Smith   PetscFunctionBegin;
2126d25893d9SBarry Smith   PetscValidHeaderSpecific(snes,SNES_CLASSID,1);
2127d25893d9SBarry Smith   if (func) snes->ops->computeinitialguess = func;
2128d25893d9SBarry Smith   if (ctx)  snes->initialguessP            = ctx;
2129d25893d9SBarry Smith   PetscFunctionReturn(0);
2130d25893d9SBarry Smith }
2131d25893d9SBarry Smith 
21323ab0aad5SBarry Smith /* --------------------------------------------------------------- */
21331096aae1SMatthew Knepley /*@C
21341096aae1SMatthew Knepley    SNESGetRhs - Gets the vector for solving F(x) = rhs. If rhs is not set
21351096aae1SMatthew Knepley    it assumes a zero right hand side.
21361096aae1SMatthew Knepley 
21373f9fe445SBarry Smith    Logically Collective on SNES
21381096aae1SMatthew Knepley 
21391096aae1SMatthew Knepley    Input Parameter:
21401096aae1SMatthew Knepley .  snes - the SNES context
21411096aae1SMatthew Knepley 
21421096aae1SMatthew Knepley    Output Parameter:
21430298fd71SBarry Smith .  rhs - the right hand side vector or NULL if the right hand side vector is null
21441096aae1SMatthew Knepley 
21451096aae1SMatthew Knepley    Level: intermediate
21461096aae1SMatthew Knepley 
21471096aae1SMatthew Knepley .keywords: SNES, nonlinear, get, function, right hand side
21481096aae1SMatthew Knepley 
214985385478SLisandro Dalcin .seealso: SNESGetSolution(), SNESGetFunction(), SNESComputeFunction(), SNESSetJacobian(), SNESSetFunction()
21501096aae1SMatthew Knepley @*/
21517087cfbeSBarry Smith PetscErrorCode  SNESGetRhs(SNES snes,Vec *rhs)
21521096aae1SMatthew Knepley {
21531096aae1SMatthew Knepley   PetscFunctionBegin;
21540700a824SBarry Smith   PetscValidHeaderSpecific(snes,SNES_CLASSID,1);
21551096aae1SMatthew Knepley   PetscValidPointer(rhs,2);
215685385478SLisandro Dalcin   *rhs = snes->vec_rhs;
21571096aae1SMatthew Knepley   PetscFunctionReturn(0);
21581096aae1SMatthew Knepley }
21591096aae1SMatthew Knepley 
21609b94acceSBarry Smith /*@
2161bf388a1fSBarry Smith    SNESComputeFunction - Calls the function that has been set with SNESSetFunction().
21629b94acceSBarry Smith 
2163c7afd0dbSLois Curfman McInnes    Collective on SNES
2164c7afd0dbSLois Curfman McInnes 
21659b94acceSBarry Smith    Input Parameters:
2166c7afd0dbSLois Curfman McInnes +  snes - the SNES context
2167c7afd0dbSLois Curfman McInnes -  x - input vector
21689b94acceSBarry Smith 
21699b94acceSBarry Smith    Output Parameter:
21703638b69dSLois Curfman McInnes .  y - function vector, as set by SNESSetFunction()
21719b94acceSBarry Smith 
21721bffabb2SLois Curfman McInnes    Notes:
217336851e7fSLois Curfman McInnes    SNESComputeFunction() is typically used within nonlinear solvers
217436851e7fSLois Curfman McInnes    implementations, so most users would not generally call this routine
217536851e7fSLois Curfman McInnes    themselves.
217636851e7fSLois Curfman McInnes 
217736851e7fSLois Curfman McInnes    Level: developer
217836851e7fSLois Curfman McInnes 
21799b94acceSBarry Smith .keywords: SNES, nonlinear, compute, function
21809b94acceSBarry Smith 
2181a86d99e1SLois Curfman McInnes .seealso: SNESSetFunction(), SNESGetFunction()
21829b94acceSBarry Smith @*/
21837087cfbeSBarry Smith PetscErrorCode  SNESComputeFunction(SNES snes,Vec x,Vec y)
21849b94acceSBarry Smith {
2185dfbe8321SBarry Smith   PetscErrorCode ierr;
21866cab3a1bSJed Brown   DM             dm;
2187942e3340SBarry Smith   DMSNES         sdm;
21889b94acceSBarry Smith 
21893a40ed3dSBarry Smith   PetscFunctionBegin;
21900700a824SBarry Smith   PetscValidHeaderSpecific(snes,SNES_CLASSID,1);
21910700a824SBarry Smith   PetscValidHeaderSpecific(x,VEC_CLASSID,2);
21920700a824SBarry Smith   PetscValidHeaderSpecific(y,VEC_CLASSID,3);
2193c9780b6fSBarry Smith   PetscCheckSameComm(snes,1,x,2);
2194c9780b6fSBarry Smith   PetscCheckSameComm(snes,1,y,3);
219562796dfbSBarry Smith   ierr = VecValidValues(x,2,PETSC_TRUE);CHKERRQ(ierr);
2196184914b5SBarry Smith 
21976cab3a1bSJed Brown   ierr = SNESGetDM(snes,&dm);CHKERRQ(ierr);
2198942e3340SBarry Smith   ierr = DMGetDMSNES(dm,&sdm);CHKERRQ(ierr);
219932f3f7c2SPeter Brune   if (sdm->ops->computefunction) {
220094db00ebSBarry Smith     if (sdm->ops->computefunction != SNESObjectiveComputeFunctionDefaultFD) {
2201ccf3c845SPeter Brune       ierr = PetscLogEventBegin(SNES_FunctionEval,snes,x,y,0);CHKERRQ(ierr);
220294db00ebSBarry Smith     }
22035edff71fSBarry Smith     ierr = VecLockPush(x);CHKERRQ(ierr);
2204d64ed03dSBarry Smith     PetscStackPush("SNES user function");
220522c6f798SBarry Smith     ierr = (*sdm->ops->computefunction)(snes,x,y,sdm->functionctx);CHKERRQ(ierr);
2206d64ed03dSBarry Smith     PetscStackPop;
22075edff71fSBarry Smith     ierr = VecLockPop(x);CHKERRQ(ierr);
220894db00ebSBarry Smith     if (sdm->ops->computefunction != SNESObjectiveComputeFunctionDefaultFD) {
2209ccf3c845SPeter Brune       ierr = PetscLogEventEnd(SNES_FunctionEval,snes,x,y,0);CHKERRQ(ierr);
221094db00ebSBarry Smith     }
2211c90fad12SPeter Brune   } else if (snes->vec_rhs) {
2212c90fad12SPeter Brune     ierr = MatMult(snes->jacobian, x, y);CHKERRQ(ierr);
2213644e2e5bSBarry Smith   } else SETERRQ(PETSC_COMM_SELF,PETSC_ERR_ARG_WRONGSTATE, "Must call SNESSetFunction() or SNESSetDM() before SNESComputeFunction(), likely called from SNESSolve().");
221485385478SLisandro Dalcin   if (snes->vec_rhs) {
221585385478SLisandro Dalcin     ierr = VecAXPY(y,-1.0,snes->vec_rhs);CHKERRQ(ierr);
22163ab0aad5SBarry Smith   }
2217ae3c334cSLois Curfman McInnes   snes->nfuncs++;
2218422a814eSBarry Smith   /*
2219422a814eSBarry Smith      domainerror might not be set on all processes; so we tag vector locally with Inf and the next inner product or norm will
2220422a814eSBarry Smith      propagate the value to all processes
2221422a814eSBarry Smith   */
2222422a814eSBarry Smith   if (snes->domainerror) {
2223422a814eSBarry Smith     ierr = VecSetInf(y);CHKERRQ(ierr);
2224422a814eSBarry Smith   }
22253a40ed3dSBarry Smith   PetscFunctionReturn(0);
22269b94acceSBarry Smith }
22279b94acceSBarry Smith 
2228c79ef259SPeter Brune /*@
2229be95d8f1SBarry Smith    SNESComputeNGS - Calls the Gauss-Seidel function that has been set with  SNESSetNGS().
2230c79ef259SPeter Brune 
2231c79ef259SPeter Brune    Collective on SNES
2232c79ef259SPeter Brune 
2233c79ef259SPeter Brune    Input Parameters:
2234c79ef259SPeter Brune +  snes - the SNES context
2235c79ef259SPeter Brune .  x - input vector
2236c79ef259SPeter Brune -  b - rhs vector
2237c79ef259SPeter Brune 
2238c79ef259SPeter Brune    Output Parameter:
2239c79ef259SPeter Brune .  x - new solution vector
2240c79ef259SPeter Brune 
2241c79ef259SPeter Brune    Notes:
2242be95d8f1SBarry Smith    SNESComputeNGS() is typically used within composed nonlinear solver
2243c79ef259SPeter Brune    implementations, so most users would not generally call this routine
2244c79ef259SPeter Brune    themselves.
2245c79ef259SPeter Brune 
2246c79ef259SPeter Brune    Level: developer
2247c79ef259SPeter Brune 
2248c79ef259SPeter Brune .keywords: SNES, nonlinear, compute, function
2249c79ef259SPeter Brune 
2250be95d8f1SBarry Smith .seealso: SNESSetNGS(), SNESComputeFunction()
2251c79ef259SPeter Brune @*/
2252be95d8f1SBarry Smith PetscErrorCode  SNESComputeNGS(SNES snes,Vec b,Vec x)
2253646217ecSPeter Brune {
2254646217ecSPeter Brune   PetscErrorCode ierr;
22556cab3a1bSJed Brown   DM             dm;
2256942e3340SBarry Smith   DMSNES         sdm;
2257646217ecSPeter Brune 
2258646217ecSPeter Brune   PetscFunctionBegin;
2259646217ecSPeter Brune   PetscValidHeaderSpecific(snes,SNES_CLASSID,1);
2260646217ecSPeter Brune   PetscValidHeaderSpecific(x,VEC_CLASSID,2);
2261646217ecSPeter Brune   if (b) PetscValidHeaderSpecific(b,VEC_CLASSID,3);
2262646217ecSPeter Brune   PetscCheckSameComm(snes,1,x,2);
2263646217ecSPeter Brune   if (b) PetscCheckSameComm(snes,1,b,3);
226462796dfbSBarry Smith   if (b) {ierr = VecValidValues(b,2,PETSC_TRUE);CHKERRQ(ierr);}
2265be95d8f1SBarry Smith   ierr = PetscLogEventBegin(SNES_NGSEval,snes,x,b,0);CHKERRQ(ierr);
22666cab3a1bSJed Brown   ierr = SNESGetDM(snes,&dm);CHKERRQ(ierr);
2267942e3340SBarry Smith   ierr = DMGetDMSNES(dm,&sdm);CHKERRQ(ierr);
226822c6f798SBarry Smith   if (sdm->ops->computegs) {
22695edff71fSBarry Smith     if (b) {ierr = VecLockPush(b);CHKERRQ(ierr);}
2270be95d8f1SBarry Smith     PetscStackPush("SNES user NGS");
227122c6f798SBarry Smith     ierr = (*sdm->ops->computegs)(snes,x,b,sdm->gsctx);CHKERRQ(ierr);
2272646217ecSPeter Brune     PetscStackPop;
22735edff71fSBarry Smith     if (b) {ierr = VecLockPop(b);CHKERRQ(ierr);}
2274be95d8f1SBarry Smith   } else SETERRQ(PETSC_COMM_SELF,PETSC_ERR_ARG_WRONGSTATE, "Must call SNESSetNGS() before SNESComputeNGS(), likely called from SNESSolve().");
2275be95d8f1SBarry Smith   ierr = PetscLogEventEnd(SNES_NGSEval,snes,x,b,0);CHKERRQ(ierr);
2276646217ecSPeter Brune   PetscFunctionReturn(0);
2277646217ecSPeter Brune }
2278646217ecSPeter Brune 
2279e885f1abSBarry Smith PetscErrorCode SNESTestJacobian(SNES snes)
2280e885f1abSBarry Smith {
228129e3d1bdSBarry Smith   Mat               A,B,C,D,jacobian;
2282e885f1abSBarry Smith   Vec               x = snes->vec_sol,f = snes->vec_func;
2283e885f1abSBarry Smith   PetscErrorCode    ierr;
2284e885f1abSBarry Smith   PetscReal         nrm,gnorm;
228581e7118cSBarry Smith   PetscReal         threshold = 1.e-5;
2286e885f1abSBarry Smith   PetscInt          m,n,M,N;
2287e885f1abSBarry Smith   void              *functx;
2288*18d89885SKarl Rupp   PetscBool         complete_print = PETSC_FALSE,threshold_print = PETSC_FALSE,test = PETSC_FALSE,flg;
2289841f23ebSBarry Smith   PetscViewer       viewer,mviewer;
2290e885f1abSBarry Smith   MPI_Comm          comm;
2291e885f1abSBarry Smith   PetscInt          tabs;
229229e3d1bdSBarry Smith   static PetscBool  directionsprinted = PETSC_FALSE;
2293841f23ebSBarry Smith   PetscViewerFormat format;
2294e885f1abSBarry Smith 
2295e885f1abSBarry Smith   PetscFunctionBegin;
2296c0724ecaSBarry Smith   ierr = PetscObjectOptionsBegin((PetscObject)snes);CHKERRQ(ierr);
229729e3d1bdSBarry Smith   ierr = PetscOptionsName("-snes_test_jacobian","Compare hand-coded and finite difference Jacobians","None",&test);CHKERRQ(ierr);
229829e3d1bdSBarry Smith   ierr = PetscOptionsReal("-snes_test_jacobian", "Threshold for element difference between hand-coded and finite difference being meaningful", "None", threshold, &threshold,NULL);CHKERRQ(ierr);
2299841f23ebSBarry Smith   ierr = PetscOptionsViewer("-snes_test_jacobian_view","View difference between hand-coded and finite difference Jacobians element entries","None",&mviewer,&format,&complete_print);CHKERRQ(ierr);
2300*18d89885SKarl Rupp   if (!complete_print) {
2301*18d89885SKarl Rupp     ierr = PetscOptionsViewer("-snes_test_jacobian_display","Display difference between hand-coded and finite difference Jacobians","None",&mviewer,&format,&complete_print);CHKERRQ(ierr);
2302*18d89885SKarl Rupp   }
2303*18d89885SKarl Rupp   /* for compatibility with PETSc 3.9 and older. */
2304*18d89885SKarl Rupp   ierr = PetscOptionsReal("-snes_test_jacobian_display_threshold", "Display difference between hand-coded and finite difference Jacobians which exceed input threshold", "None", threshold, &threshold, &threshold_print);CHKERRQ(ierr);
2305e885f1abSBarry Smith   ierr = PetscOptionsEnd();CHKERRQ(ierr);
2306e885f1abSBarry Smith   if (!test) PetscFunctionReturn(0);
2307e885f1abSBarry Smith 
2308e885f1abSBarry Smith   ierr = PetscObjectGetComm((PetscObject)snes,&comm);CHKERRQ(ierr);
2309e885f1abSBarry Smith   ierr = PetscViewerASCIIGetStdout(comm,&viewer);CHKERRQ(ierr);
2310e885f1abSBarry Smith   ierr = PetscViewerASCIIGetTab(viewer, &tabs);CHKERRQ(ierr);
2311e885f1abSBarry Smith   ierr = PetscViewerASCIISetTab(viewer, ((PetscObject)snes)->tablevel);CHKERRQ(ierr);
231229e3d1bdSBarry Smith   ierr = PetscViewerASCIIPrintf(viewer,"  ---------- Testing Jacobian -------------\n");CHKERRQ(ierr);
231329e3d1bdSBarry Smith   if (!complete_print && !directionsprinted) {
231429e3d1bdSBarry Smith     ierr = PetscViewerASCIIPrintf(viewer,"  Run with -snes_test_jacobian_view and optionally -snes_test_jacobian <threshold> to show difference\n");CHKERRQ(ierr);
2315c0724ecaSBarry Smith     ierr = PetscViewerASCIIPrintf(viewer,"    of hand-coded and finite difference Jacobian entries greater than <threshold>.\n");CHKERRQ(ierr);
231629e3d1bdSBarry Smith   }
231729e3d1bdSBarry Smith   if (!directionsprinted) {
231829e3d1bdSBarry Smith     ierr = PetscViewerASCIIPrintf(viewer,"  Testing hand-coded Jacobian, if (for double precision runs) ||J - Jfd||_F/||J||_F is\n");CHKERRQ(ierr);
2319e885f1abSBarry Smith     ierr = PetscViewerASCIIPrintf(viewer,"    O(1.e-8), the hand-coded Jacobian is probably correct.\n");CHKERRQ(ierr);
232029e3d1bdSBarry Smith     directionsprinted = PETSC_TRUE;
2321e885f1abSBarry Smith   }
2322841f23ebSBarry Smith   if (complete_print) {
2323841f23ebSBarry Smith     ierr = PetscViewerPushFormat(mviewer,format);CHKERRQ(ierr);
2324841f23ebSBarry Smith   }
2325e885f1abSBarry Smith 
232629e3d1bdSBarry Smith   /* evaluate the function at this point because SNESComputeJacobianDefault() assumes that the function has been evaluated and put into snes->vec_func */
2327e885f1abSBarry Smith   ierr = SNESComputeFunction(snes,x,f);CHKERRQ(ierr);
232829e3d1bdSBarry Smith 
232929e3d1bdSBarry Smith   ierr = PetscObjectTypeCompare((PetscObject)snes->jacobian,MATMFFD,&flg);CHKERRQ(ierr);
233029e3d1bdSBarry Smith   if (!flg) jacobian = snes->jacobian;
233129e3d1bdSBarry Smith   else jacobian = snes->jacobian_pre;
233229e3d1bdSBarry Smith 
233329e3d1bdSBarry Smith   while (jacobian) {
233429e3d1bdSBarry Smith     ierr = PetscObjectTypeCompareAny((PetscObject)jacobian,&flg,MATSEQAIJ,MATMPIAIJ,MATSEQDENSE,MATMPIDENSE,MATSEQBAIJ,MATMPIBAIJ,MATSEQSBAIJ,MATMPIBAIJ,"");CHKERRQ(ierr);
233529e3d1bdSBarry Smith     if (flg) {
233629e3d1bdSBarry Smith       A    = jacobian;
233729e3d1bdSBarry Smith       ierr = PetscObjectReference((PetscObject)A);CHKERRQ(ierr);
233829e3d1bdSBarry Smith     } else {
233929e3d1bdSBarry Smith       ierr = MatComputeExplicitOperator(jacobian,&A);CHKERRQ(ierr);
234029e3d1bdSBarry Smith     }
2341e885f1abSBarry Smith 
2342e885f1abSBarry Smith     ierr = MatCreate(PetscObjectComm((PetscObject)A),&B);CHKERRQ(ierr);
2343e885f1abSBarry Smith     ierr = MatGetSize(A,&M,&N);CHKERRQ(ierr);
2344e885f1abSBarry Smith     ierr = MatGetLocalSize(A,&m,&n);CHKERRQ(ierr);
2345e885f1abSBarry Smith     ierr = MatSetSizes(B,m,n,M,N);CHKERRQ(ierr);
2346e885f1abSBarry Smith     ierr = MatSetType(B,((PetscObject)A)->type_name);CHKERRQ(ierr);
2347e885f1abSBarry Smith     ierr = MatSetUp(B);CHKERRQ(ierr);
2348e885f1abSBarry Smith     ierr = MatSetOption(B,MAT_NEW_NONZERO_ALLOCATION_ERR,PETSC_FALSE);CHKERRQ(ierr);
2349e885f1abSBarry Smith 
2350e885f1abSBarry Smith     ierr = SNESGetFunction(snes,NULL,NULL,&functx);CHKERRQ(ierr);
2351e885f1abSBarry Smith     ierr = SNESComputeJacobianDefault(snes,x,B,B,functx);CHKERRQ(ierr);
235229e3d1bdSBarry Smith 
235329e3d1bdSBarry Smith     ierr = MatDuplicate(B,MAT_COPY_VALUES,&D);CHKERRQ(ierr);
235429e3d1bdSBarry Smith     ierr = MatAYPX(D,-1.0,A,DIFFERENT_NONZERO_PATTERN);CHKERRQ(ierr);
235529e3d1bdSBarry Smith     ierr = MatNorm(D,NORM_FROBENIUS,&nrm);CHKERRQ(ierr);
2356e885f1abSBarry Smith     ierr = MatNorm(A,NORM_FROBENIUS,&gnorm);CHKERRQ(ierr);
235729e3d1bdSBarry Smith     ierr = MatDestroy(&D);CHKERRQ(ierr);
235829e3d1bdSBarry Smith     if (!gnorm) gnorm = 1; /* just in case */
235929e3d1bdSBarry Smith     ierr = PetscViewerASCIIPrintf(viewer,"  ||J - Jfd||_F/||J||_F = %g, ||J - Jfd||_F = %g\n",(double)(nrm/gnorm),(double)nrm);CHKERRQ(ierr);
236029e3d1bdSBarry Smith 
2361e885f1abSBarry Smith     if (complete_print) {
236229e3d1bdSBarry Smith       ierr = PetscViewerASCIIPrintf(viewer,"  Hand-coded Jacobian ----------\n");CHKERRQ(ierr);
2363841f23ebSBarry Smith       ierr = MatView(jacobian,mviewer);CHKERRQ(ierr);
236429e3d1bdSBarry Smith       ierr = PetscViewerASCIIPrintf(viewer,"  Finite difference Jacobian ----------\n");CHKERRQ(ierr);
2365841f23ebSBarry Smith       ierr = MatView(B,mviewer);CHKERRQ(ierr);
2366e885f1abSBarry Smith     }
2367e885f1abSBarry Smith 
2368*18d89885SKarl Rupp     if (threshold_print) {
2369e885f1abSBarry Smith       PetscInt          Istart, Iend, *ccols, bncols, cncols, j, row;
2370e885f1abSBarry Smith       PetscScalar       *cvals;
2371e885f1abSBarry Smith       const PetscInt    *bcols;
2372e885f1abSBarry Smith       const PetscScalar *bvals;
2373e885f1abSBarry Smith 
237429e3d1bdSBarry Smith       ierr = MatAYPX(B,-1.0,A,DIFFERENT_NONZERO_PATTERN);CHKERRQ(ierr);
2375e885f1abSBarry Smith       ierr = MatCreate(PetscObjectComm((PetscObject)A),&C);CHKERRQ(ierr);
2376e885f1abSBarry Smith       ierr = MatSetSizes(C,m,n,M,N);CHKERRQ(ierr);
2377e885f1abSBarry Smith       ierr = MatSetType(C,((PetscObject)A)->type_name);CHKERRQ(ierr);
2378e885f1abSBarry Smith       ierr = MatSetUp(C);CHKERRQ(ierr);
2379e885f1abSBarry Smith       ierr = MatSetOption(C,MAT_NEW_NONZERO_ALLOCATION_ERR,PETSC_FALSE);CHKERRQ(ierr);
2380e885f1abSBarry Smith       ierr = MatGetOwnershipRange(B,&Istart,&Iend);CHKERRQ(ierr);
2381e885f1abSBarry Smith 
2382e885f1abSBarry Smith       for (row = Istart; row < Iend; row++) {
2383e885f1abSBarry Smith         ierr = MatGetRow(B,row,&bncols,&bcols,&bvals);CHKERRQ(ierr);
2384e885f1abSBarry Smith         ierr = PetscMalloc2(bncols,&ccols,bncols,&cvals);CHKERRQ(ierr);
2385e885f1abSBarry Smith         for (j = 0, cncols = 0; j < bncols; j++) {
238623a52b1dSBarry Smith           if (PetscAbsScalar(bvals[j]) > threshold) {
2387e885f1abSBarry Smith             ccols[cncols] = bcols[j];
2388e885f1abSBarry Smith             cvals[cncols] = bvals[j];
2389e885f1abSBarry Smith             cncols += 1;
2390e885f1abSBarry Smith           }
2391e885f1abSBarry Smith         }
2392e885f1abSBarry Smith         if (cncols) {
2393e885f1abSBarry Smith           ierr = MatSetValues(C,1,&row,cncols,ccols,cvals,INSERT_VALUES);CHKERRQ(ierr);
2394e885f1abSBarry Smith         }
2395e885f1abSBarry Smith         ierr = MatRestoreRow(B,row,&bncols,&bcols,&bvals);CHKERRQ(ierr);
2396e885f1abSBarry Smith         ierr = PetscFree2(ccols,cvals);CHKERRQ(ierr);
2397e885f1abSBarry Smith       }
2398e885f1abSBarry Smith       ierr = MatAssemblyBegin(C,MAT_FINAL_ASSEMBLY);CHKERRQ(ierr);
2399e885f1abSBarry Smith       ierr = MatAssemblyEnd(C,MAT_FINAL_ASSEMBLY);CHKERRQ(ierr);
240029e3d1bdSBarry Smith       ierr = PetscViewerASCIIPrintf(viewer,"  Hand-coded minus finite-difference Jacobian with tolerance %g ----------\n",(double)threshold);CHKERRQ(ierr);
2401*18d89885SKarl Rupp       ierr = MatView(C,complete_print ? mviewer : viewer);CHKERRQ(ierr);
2402e885f1abSBarry Smith       ierr = MatDestroy(&C);CHKERRQ(ierr);
2403e885f1abSBarry Smith     }
240429e3d1bdSBarry Smith     ierr = MatDestroy(&A);CHKERRQ(ierr);
2405e885f1abSBarry Smith     ierr = MatDestroy(&B);CHKERRQ(ierr);
240629e3d1bdSBarry Smith 
240729e3d1bdSBarry Smith     if (jacobian != snes->jacobian_pre) {
240829e3d1bdSBarry Smith       jacobian = snes->jacobian_pre;
240929e3d1bdSBarry Smith       ierr = PetscViewerASCIIPrintf(viewer,"  ---------- Testing Jacobian for preconditioner -------------\n");CHKERRQ(ierr);
241029e3d1bdSBarry Smith     }
241129e3d1bdSBarry Smith     else jacobian = NULL;
241229e3d1bdSBarry Smith   }
2413841f23ebSBarry Smith   if (complete_print) {
2414841f23ebSBarry Smith     ierr = PetscViewerPopFormat(mviewer);CHKERRQ(ierr);
2415841f23ebSBarry Smith   }
2416e885f1abSBarry Smith   ierr = PetscViewerASCIISetTab(viewer,tabs);CHKERRQ(ierr);
2417e885f1abSBarry Smith   PetscFunctionReturn(0);
2418e885f1abSBarry Smith }
2419e885f1abSBarry Smith 
242062fef451SLois Curfman McInnes /*@
2421bf388a1fSBarry Smith    SNESComputeJacobian - Computes the Jacobian matrix that has been set with SNESSetJacobian().
242262fef451SLois Curfman McInnes 
2423c7afd0dbSLois Curfman McInnes    Collective on SNES and Mat
2424c7afd0dbSLois Curfman McInnes 
242562fef451SLois Curfman McInnes    Input Parameters:
2426c7afd0dbSLois Curfman McInnes +  snes - the SNES context
2427c7afd0dbSLois Curfman McInnes -  x - input vector
242862fef451SLois Curfman McInnes 
242962fef451SLois Curfman McInnes    Output Parameters:
2430c7afd0dbSLois Curfman McInnes +  A - Jacobian matrix
2431d1e9a80fSBarry Smith -  B - optional preconditioning matrix
2432fee21e36SBarry Smith 
2433e35cf81dSBarry Smith   Options Database Keys:
2434e35cf81dSBarry Smith +    -snes_lag_preconditioner <lag>
2435693365a8SJed Brown .    -snes_lag_jacobian <lag>
2436e885f1abSBarry Smith .    -snes_test_jacobian - compare the user provided Jacobian with one compute via finite differences to check for errors
2437e885f1abSBarry Smith .    -snes_test_jacobian_display - display the user provided Jacobian, the finite difference Jacobian and the difference between them to help users detect the location of errors in the user provided Jacobian
2438e885f1abSBarry Smith .    -snes_test_jacobian_display_threshold <numerical value>  - display entries in the difference between the user provided Jacobian and finite difference Jacobian that are greater than a certain value to help users detect errors
2439693365a8SJed Brown .    -snes_compare_explicit - Compare the computed Jacobian to the finite difference Jacobian and output the differences
2440693365a8SJed Brown .    -snes_compare_explicit_draw  - Compare the computed Jacobian to the finite difference Jacobian and draw the result
2441693365a8SJed Brown .    -snes_compare_explicit_contour  - Compare the computed Jacobian to the finite difference Jacobian and draw a contour plot with the result
24424c30e9fbSJed Brown .    -snes_compare_operator  - Make the comparison options above use the operator instead of the preconditioning matrix
244394d6a431SBarry Smith .    -snes_compare_coloring - Compute the finite difference Jacobian using coloring and display norms of difference
2444c01495d3SJed Brown .    -snes_compare_coloring_display - Compute the finite differece Jacobian using coloring and display verbose differences
2445c01495d3SJed Brown .    -snes_compare_coloring_threshold - Display only those matrix entries that differ by more than a given threshold
2446c01495d3SJed Brown .    -snes_compare_coloring_threshold_atol - Absolute tolerance for difference in matrix entries to be displayed by -snes_compare_coloring_threshold
2447c01495d3SJed Brown .    -snes_compare_coloring_threshold_rtol - Relative tolerance for difference in matrix entries to be displayed by -snes_compare_coloring_threshold
24484c30e9fbSJed Brown .    -snes_compare_coloring_draw - Compute the finite differece Jacobian using coloring and draw differences
2449c01495d3SJed Brown -    -snes_compare_coloring_draw_contour - Compute the finite differece Jacobian using coloring and show contours of matrices and differences
2450c01495d3SJed Brown 
2451e35cf81dSBarry Smith 
245262fef451SLois Curfman McInnes    Notes:
245362fef451SLois Curfman McInnes    Most users should not need to explicitly call this routine, as it
245462fef451SLois Curfman McInnes    is used internally within the nonlinear solvers.
245562fef451SLois Curfman McInnes 
2456e885f1abSBarry Smith    Developer Notes: This has duplicative ways of checking the accuracy of the user provided Jacobian (see the options above). This is for historical reasons, the routine SNESTestJacobian() use to used
2457e885f1abSBarry Smith       for with the SNESType of test that has been removed.
2458e885f1abSBarry Smith 
245936851e7fSLois Curfman McInnes    Level: developer
246036851e7fSLois Curfman McInnes 
246162fef451SLois Curfman McInnes .keywords: SNES, compute, Jacobian, matrix
246262fef451SLois Curfman McInnes 
2463e35cf81dSBarry Smith .seealso:  SNESSetJacobian(), KSPSetOperators(), MatStructure, SNESSetLagPreconditioner(), SNESSetLagJacobian()
246462fef451SLois Curfman McInnes @*/
2465d1e9a80fSBarry Smith PetscErrorCode  SNESComputeJacobian(SNES snes,Vec X,Mat A,Mat B)
24669b94acceSBarry Smith {
2467dfbe8321SBarry Smith   PetscErrorCode ierr;
2468ace3abfcSBarry Smith   PetscBool      flag;
24696cab3a1bSJed Brown   DM             dm;
2470942e3340SBarry Smith   DMSNES         sdm;
2471e0e3a89bSBarry Smith   KSP            ksp;
24723a40ed3dSBarry Smith 
24733a40ed3dSBarry Smith   PetscFunctionBegin;
24740700a824SBarry Smith   PetscValidHeaderSpecific(snes,SNES_CLASSID,1);
24750700a824SBarry Smith   PetscValidHeaderSpecific(X,VEC_CLASSID,2);
2476c9780b6fSBarry Smith   PetscCheckSameComm(snes,1,X,2);
247762796dfbSBarry Smith   ierr = VecValidValues(X,2,PETSC_TRUE);CHKERRQ(ierr);
24786cab3a1bSJed Brown   ierr = SNESGetDM(snes,&dm);CHKERRQ(ierr);
2479942e3340SBarry Smith   ierr = DMGetDMSNES(dm,&sdm);CHKERRQ(ierr);
24803232da50SPeter Brune 
2481ce94432eSBarry Smith   if (!sdm->ops->computejacobian) SETERRQ(PetscObjectComm((PetscObject)snes),PETSC_ERR_USER,"Must call SNESSetJacobian(), DMSNESSetJacobian(), DMDASNESSetJacobianLocal(), etc");
2482ebd3b9afSBarry Smith 
2483ebd3b9afSBarry Smith   /* make sure that MatAssemblyBegin/End() is called on A matrix if it is matrix free */
2484ebd3b9afSBarry Smith 
2485fe3ffe1eSBarry Smith   if (snes->lagjacobian == -2) {
2486fe3ffe1eSBarry Smith     snes->lagjacobian = -1;
2487f5af7f23SKarl Rupp 
2488fe3ffe1eSBarry Smith     ierr = PetscInfo(snes,"Recomputing Jacobian/preconditioner because lag is -2 (means compute Jacobian, but then never again) \n");CHKERRQ(ierr);
2489fe3ffe1eSBarry Smith   } else if (snes->lagjacobian == -1) {
2490e35cf81dSBarry Smith     ierr = PetscInfo(snes,"Reusing Jacobian/preconditioner because lag is -1\n");CHKERRQ(ierr);
249194ab13aaSBarry Smith     ierr = PetscObjectTypeCompare((PetscObject)A,MATMFFD,&flag);CHKERRQ(ierr);
2492ebd3b9afSBarry Smith     if (flag) {
249394ab13aaSBarry Smith       ierr = MatAssemblyBegin(A,MAT_FINAL_ASSEMBLY);CHKERRQ(ierr);
249494ab13aaSBarry Smith       ierr = MatAssemblyEnd(A,MAT_FINAL_ASSEMBLY);CHKERRQ(ierr);
2495ebd3b9afSBarry Smith     }
2496e35cf81dSBarry Smith     PetscFunctionReturn(0);
249737ec4e1aSPeter Brune   } else if (snes->lagjacobian > 1 && (snes->iter + snes->jac_iter) % snes->lagjacobian) {
2498e35cf81dSBarry Smith     ierr = PetscInfo2(snes,"Reusing Jacobian/preconditioner because lag is %D and SNES iteration is %D\n",snes->lagjacobian,snes->iter);CHKERRQ(ierr);
249994ab13aaSBarry Smith     ierr = PetscObjectTypeCompare((PetscObject)A,MATMFFD,&flag);CHKERRQ(ierr);
2500ebd3b9afSBarry Smith     if (flag) {
250194ab13aaSBarry Smith       ierr = MatAssemblyBegin(A,MAT_FINAL_ASSEMBLY);CHKERRQ(ierr);
250294ab13aaSBarry Smith       ierr = MatAssemblyEnd(A,MAT_FINAL_ASSEMBLY);CHKERRQ(ierr);
2503ebd3b9afSBarry Smith     }
2504e35cf81dSBarry Smith     PetscFunctionReturn(0);
2505e35cf81dSBarry Smith   }
2506efd4aadfSBarry Smith   if (snes->npc && snes->npcside== PC_LEFT) {
250794ab13aaSBarry Smith       ierr = MatAssemblyBegin(A,MAT_FINAL_ASSEMBLY);CHKERRQ(ierr);
250894ab13aaSBarry Smith       ierr = MatAssemblyEnd(A,MAT_FINAL_ASSEMBLY);CHKERRQ(ierr);
2509d728fb7dSPeter Brune       PetscFunctionReturn(0);
2510d728fb7dSPeter Brune   }
2511e35cf81dSBarry Smith 
251294ab13aaSBarry Smith   ierr = PetscLogEventBegin(SNES_JacobianEval,snes,X,A,B);CHKERRQ(ierr);
25135edff71fSBarry Smith   ierr = VecLockPush(X);CHKERRQ(ierr);
2514d64ed03dSBarry Smith   PetscStackPush("SNES user Jacobian function");
2515d1e9a80fSBarry Smith   ierr = (*sdm->ops->computejacobian)(snes,X,A,B,sdm->jacobianctx);CHKERRQ(ierr);
2516d64ed03dSBarry Smith   PetscStackPop;
25175edff71fSBarry Smith   ierr = VecLockPop(X);CHKERRQ(ierr);
251894ab13aaSBarry Smith   ierr = PetscLogEventEnd(SNES_JacobianEval,snes,X,A,B);CHKERRQ(ierr);
2519a8054027SBarry Smith 
2520e0e3a89bSBarry Smith   /* the next line ensures that snes->ksp exists */
2521e0e3a89bSBarry Smith   ierr = SNESGetKSP(snes,&ksp);CHKERRQ(ierr);
25223b4f5425SBarry Smith   if (snes->lagpreconditioner == -2) {
25233b4f5425SBarry Smith     ierr = PetscInfo(snes,"Rebuilding preconditioner exactly once since lag is -2\n");CHKERRQ(ierr);
2524d1e9a80fSBarry Smith     ierr = KSPSetReusePreconditioner(snes->ksp,PETSC_FALSE);CHKERRQ(ierr);
25253b4f5425SBarry Smith     snes->lagpreconditioner = -1;
25263b4f5425SBarry Smith   } else if (snes->lagpreconditioner == -1) {
2527a8054027SBarry Smith     ierr = PetscInfo(snes,"Reusing preconditioner because lag is -1\n");CHKERRQ(ierr);
2528d1e9a80fSBarry Smith     ierr = KSPSetReusePreconditioner(snes->ksp,PETSC_TRUE);CHKERRQ(ierr);
252937ec4e1aSPeter Brune   } else if (snes->lagpreconditioner > 1 && (snes->iter + snes->pre_iter) % snes->lagpreconditioner) {
2530a8054027SBarry Smith     ierr = PetscInfo2(snes,"Reusing preconditioner because lag is %D and SNES iteration is %D\n",snes->lagpreconditioner,snes->iter);CHKERRQ(ierr);
2531d1e9a80fSBarry Smith     ierr = KSPSetReusePreconditioner(snes->ksp,PETSC_TRUE);CHKERRQ(ierr);
2532d1e9a80fSBarry Smith   } else {
2533d1e9a80fSBarry Smith     ierr = PetscInfo(snes,"Rebuilding preconditioner\n");CHKERRQ(ierr);
2534d1e9a80fSBarry Smith     ierr = KSPSetReusePreconditioner(snes->ksp,PETSC_FALSE);CHKERRQ(ierr);
2535a8054027SBarry Smith   }
2536a8054027SBarry Smith 
2537e885f1abSBarry Smith   ierr = SNESTestJacobian(snes);CHKERRQ(ierr);
25386d84be18SBarry Smith   /* make sure user returned a correct Jacobian and preconditioner */
253994ab13aaSBarry Smith   /* PetscValidHeaderSpecific(A,MAT_CLASSID,3);
254094ab13aaSBarry Smith     PetscValidHeaderSpecific(B,MAT_CLASSID,4);   */
2541693365a8SJed Brown   {
2542693365a8SJed Brown     PetscBool flag = PETSC_FALSE,flag_draw = PETSC_FALSE,flag_contour = PETSC_FALSE,flag_operator = PETSC_FALSE;
254327b0f280SBarry Smith     ierr = PetscOptionsGetViewer(PetscObjectComm((PetscObject)snes),((PetscObject)snes)->prefix,"-snes_compare_explicit",NULL,NULL,&flag);CHKERRQ(ierr);
254427b0f280SBarry Smith     ierr = PetscOptionsGetViewer(PetscObjectComm((PetscObject)snes),((PetscObject)snes)->prefix,"-snes_compare_explicit_draw",NULL,NULL,&flag_draw);CHKERRQ(ierr);
254527b0f280SBarry Smith     ierr = PetscOptionsGetViewer(PetscObjectComm((PetscObject)snes),((PetscObject)snes)->prefix,"-snes_compare_explicit_draw_contour",NULL,NULL,&flag_contour);CHKERRQ(ierr);
254627b0f280SBarry Smith     ierr = PetscOptionsGetViewer(PetscObjectComm((PetscObject)snes),((PetscObject)snes)->prefix,"-snes_compare_operator",NULL,NULL,&flag_operator);CHKERRQ(ierr);
2547693365a8SJed Brown     if (flag || flag_draw || flag_contour) {
25480298fd71SBarry Smith       Mat          Bexp_mine = NULL,Bexp,FDexp;
2549693365a8SJed Brown       PetscViewer  vdraw,vstdout;
25506b3a5b13SJed Brown       PetscBool    flg;
2551693365a8SJed Brown       if (flag_operator) {
255294ab13aaSBarry Smith         ierr = MatComputeExplicitOperator(A,&Bexp_mine);CHKERRQ(ierr);
2553693365a8SJed Brown         Bexp = Bexp_mine;
2554693365a8SJed Brown       } else {
2555693365a8SJed Brown         /* See if the preconditioning matrix can be viewed and added directly */
255694ab13aaSBarry Smith         ierr = PetscObjectTypeCompareAny((PetscObject)B,&flg,MATSEQAIJ,MATMPIAIJ,MATSEQDENSE,MATMPIDENSE,MATSEQBAIJ,MATMPIBAIJ,MATSEQSBAIJ,MATMPIBAIJ,"");CHKERRQ(ierr);
255794ab13aaSBarry Smith         if (flg) Bexp = B;
2558693365a8SJed Brown         else {
2559693365a8SJed Brown           /* If the "preconditioning" matrix is itself MATSHELL or some other type without direct support */
256094ab13aaSBarry Smith           ierr = MatComputeExplicitOperator(B,&Bexp_mine);CHKERRQ(ierr);
2561693365a8SJed Brown           Bexp = Bexp_mine;
2562693365a8SJed Brown         }
2563693365a8SJed Brown       }
2564693365a8SJed Brown       ierr = MatConvert(Bexp,MATSAME,MAT_INITIAL_MATRIX,&FDexp);CHKERRQ(ierr);
2565d1e9a80fSBarry Smith       ierr = SNESComputeJacobianDefault(snes,X,FDexp,FDexp,NULL);CHKERRQ(ierr);
2566ce94432eSBarry Smith       ierr = PetscViewerASCIIGetStdout(PetscObjectComm((PetscObject)snes),&vstdout);CHKERRQ(ierr);
2567693365a8SJed Brown       if (flag_draw || flag_contour) {
2568ce94432eSBarry Smith         ierr = PetscViewerDrawOpen(PetscObjectComm((PetscObject)snes),0,"Explicit Jacobians",PETSC_DECIDE,PETSC_DECIDE,300,300,&vdraw);CHKERRQ(ierr);
2569693365a8SJed Brown         if (flag_contour) {ierr = PetscViewerPushFormat(vdraw,PETSC_VIEWER_DRAW_CONTOUR);CHKERRQ(ierr);}
25700298fd71SBarry Smith       } else vdraw = NULL;
2571693365a8SJed Brown       ierr = PetscViewerASCIIPrintf(vstdout,"Explicit %s\n",flag_operator ? "Jacobian" : "preconditioning Jacobian");CHKERRQ(ierr);
2572693365a8SJed Brown       if (flag) {ierr = MatView(Bexp,vstdout);CHKERRQ(ierr);}
2573693365a8SJed Brown       if (vdraw) {ierr = MatView(Bexp,vdraw);CHKERRQ(ierr);}
2574693365a8SJed Brown       ierr = PetscViewerASCIIPrintf(vstdout,"Finite difference Jacobian\n");CHKERRQ(ierr);
2575693365a8SJed Brown       if (flag) {ierr = MatView(FDexp,vstdout);CHKERRQ(ierr);}
2576693365a8SJed Brown       if (vdraw) {ierr = MatView(FDexp,vdraw);CHKERRQ(ierr);}
2577693365a8SJed Brown       ierr = MatAYPX(FDexp,-1.0,Bexp,SAME_NONZERO_PATTERN);CHKERRQ(ierr);
2578693365a8SJed Brown       ierr = PetscViewerASCIIPrintf(vstdout,"User-provided matrix minus finite difference Jacobian\n");CHKERRQ(ierr);
2579693365a8SJed Brown       if (flag) {ierr = MatView(FDexp,vstdout);CHKERRQ(ierr);}
2580693365a8SJed Brown       if (vdraw) {              /* Always use contour for the difference */
2581693365a8SJed Brown         ierr = PetscViewerPushFormat(vdraw,PETSC_VIEWER_DRAW_CONTOUR);CHKERRQ(ierr);
2582693365a8SJed Brown         ierr = MatView(FDexp,vdraw);CHKERRQ(ierr);
2583693365a8SJed Brown         ierr = PetscViewerPopFormat(vdraw);CHKERRQ(ierr);
2584693365a8SJed Brown       }
2585693365a8SJed Brown       if (flag_contour) {ierr = PetscViewerPopFormat(vdraw);CHKERRQ(ierr);}
2586693365a8SJed Brown       ierr = PetscViewerDestroy(&vdraw);CHKERRQ(ierr);
2587693365a8SJed Brown       ierr = MatDestroy(&Bexp_mine);CHKERRQ(ierr);
2588693365a8SJed Brown       ierr = MatDestroy(&FDexp);CHKERRQ(ierr);
2589693365a8SJed Brown     }
2590693365a8SJed Brown   }
25914c30e9fbSJed Brown   {
25926719d8e4SJed Brown     PetscBool flag = PETSC_FALSE,flag_display = PETSC_FALSE,flag_draw = PETSC_FALSE,flag_contour = PETSC_FALSE,flag_threshold = PETSC_FALSE;
25936719d8e4SJed Brown     PetscReal threshold_atol = PETSC_SQRT_MACHINE_EPSILON,threshold_rtol = 10*PETSC_SQRT_MACHINE_EPSILON;
259427b0f280SBarry Smith     ierr = PetscOptionsGetViewer(PetscObjectComm((PetscObject)snes),((PetscObject)snes)->prefix,"-snes_compare_coloring",NULL,NULL,&flag);CHKERRQ(ierr);
259527b0f280SBarry Smith     ierr = PetscOptionsGetViewer(PetscObjectComm((PetscObject)snes),((PetscObject)snes)->prefix,"-snes_compare_coloring_display",NULL,NULL,&flag_display);CHKERRQ(ierr);
259627b0f280SBarry Smith     ierr = PetscOptionsGetViewer(PetscObjectComm((PetscObject)snes),((PetscObject)snes)->prefix,"-snes_compare_coloring_draw",NULL,NULL,&flag_draw);CHKERRQ(ierr);
259727b0f280SBarry Smith     ierr = PetscOptionsGetViewer(PetscObjectComm((PetscObject)snes),((PetscObject)snes)->prefix,"-snes_compare_coloring_draw_contour",NULL,NULL,&flag_contour);CHKERRQ(ierr);
259827b0f280SBarry Smith     ierr = PetscOptionsGetViewer(PetscObjectComm((PetscObject)snes),((PetscObject)snes)->prefix,"-snes_compare_coloring_threshold",NULL,NULL,&flag_threshold);CHKERRQ(ierr);
259927b0f280SBarry Smith     if (flag_threshold) {
2600c5929fdfSBarry Smith       ierr = PetscOptionsGetReal(((PetscObject)snes)->options,((PetscObject)snes)->prefix,"-snes_compare_coloring_threshold_rtol",&threshold_rtol,NULL);CHKERRQ(ierr);
2601c5929fdfSBarry Smith       ierr = PetscOptionsGetReal(((PetscObject)snes)->options,((PetscObject)snes)->prefix,"-snes_compare_coloring_threshold_atol",&threshold_atol,NULL);CHKERRQ(ierr);
260227b0f280SBarry Smith     }
26036719d8e4SJed Brown     if (flag || flag_display || flag_draw || flag_contour || flag_threshold) {
26044c30e9fbSJed Brown       Mat            Bfd;
26054c30e9fbSJed Brown       PetscViewer    vdraw,vstdout;
2606335efc43SPeter Brune       MatColoring    coloring;
26074c30e9fbSJed Brown       ISColoring     iscoloring;
26084c30e9fbSJed Brown       MatFDColoring  matfdcoloring;
26094c30e9fbSJed Brown       PetscErrorCode (*func)(SNES,Vec,Vec,void*);
26104c30e9fbSJed Brown       void           *funcctx;
26116719d8e4SJed Brown       PetscReal      norm1,norm2,normmax;
26124c30e9fbSJed Brown 
261394ab13aaSBarry Smith       ierr = MatDuplicate(B,MAT_DO_NOT_COPY_VALUES,&Bfd);CHKERRQ(ierr);
2614335efc43SPeter Brune       ierr = MatColoringCreate(Bfd,&coloring);CHKERRQ(ierr);
2615335efc43SPeter Brune       ierr = MatColoringSetType(coloring,MATCOLORINGSL);CHKERRQ(ierr);
2616335efc43SPeter Brune       ierr = MatColoringSetFromOptions(coloring);CHKERRQ(ierr);
2617335efc43SPeter Brune       ierr = MatColoringApply(coloring,&iscoloring);CHKERRQ(ierr);
2618335efc43SPeter Brune       ierr = MatColoringDestroy(&coloring);CHKERRQ(ierr);
26194c30e9fbSJed Brown       ierr = MatFDColoringCreate(Bfd,iscoloring,&matfdcoloring);CHKERRQ(ierr);
2620f86b9fbaSHong Zhang       ierr = MatFDColoringSetFromOptions(matfdcoloring);CHKERRQ(ierr);
2621f86b9fbaSHong Zhang       ierr = MatFDColoringSetUp(Bfd,iscoloring,matfdcoloring);CHKERRQ(ierr);
26224c30e9fbSJed Brown       ierr = ISColoringDestroy(&iscoloring);CHKERRQ(ierr);
26234c30e9fbSJed Brown 
26244c30e9fbSJed Brown       /* This method of getting the function is currently unreliable since it doesn't work for DM local functions. */
26250298fd71SBarry Smith       ierr = SNESGetFunction(snes,NULL,&func,&funcctx);CHKERRQ(ierr);
26264c30e9fbSJed Brown       ierr = MatFDColoringSetFunction(matfdcoloring,(PetscErrorCode (*)(void))func,funcctx);CHKERRQ(ierr);
26274c30e9fbSJed Brown       ierr = PetscObjectSetOptionsPrefix((PetscObject)matfdcoloring,((PetscObject)snes)->prefix);CHKERRQ(ierr);
26284c30e9fbSJed Brown       ierr = PetscObjectAppendOptionsPrefix((PetscObject)matfdcoloring,"coloring_");CHKERRQ(ierr);
26294c30e9fbSJed Brown       ierr = MatFDColoringSetFromOptions(matfdcoloring);CHKERRQ(ierr);
2630d1e9a80fSBarry Smith       ierr = MatFDColoringApply(Bfd,matfdcoloring,X,snes);CHKERRQ(ierr);
26314c30e9fbSJed Brown       ierr = MatFDColoringDestroy(&matfdcoloring);CHKERRQ(ierr);
26324c30e9fbSJed Brown 
2633ce94432eSBarry Smith       ierr = PetscViewerASCIIGetStdout(PetscObjectComm((PetscObject)snes),&vstdout);CHKERRQ(ierr);
26344c30e9fbSJed Brown       if (flag_draw || flag_contour) {
2635ce94432eSBarry Smith         ierr = PetscViewerDrawOpen(PetscObjectComm((PetscObject)snes),0,"Colored Jacobians",PETSC_DECIDE,PETSC_DECIDE,300,300,&vdraw);CHKERRQ(ierr);
26364c30e9fbSJed Brown         if (flag_contour) {ierr = PetscViewerPushFormat(vdraw,PETSC_VIEWER_DRAW_CONTOUR);CHKERRQ(ierr);}
26370298fd71SBarry Smith       } else vdraw = NULL;
26384c30e9fbSJed Brown       ierr = PetscViewerASCIIPrintf(vstdout,"Explicit preconditioning Jacobian\n");CHKERRQ(ierr);
263994ab13aaSBarry Smith       if (flag_display) {ierr = MatView(B,vstdout);CHKERRQ(ierr);}
264094ab13aaSBarry Smith       if (vdraw) {ierr = MatView(B,vdraw);CHKERRQ(ierr);}
26414c30e9fbSJed Brown       ierr = PetscViewerASCIIPrintf(vstdout,"Colored Finite difference Jacobian\n");CHKERRQ(ierr);
26426719d8e4SJed Brown       if (flag_display) {ierr = MatView(Bfd,vstdout);CHKERRQ(ierr);}
26434c30e9fbSJed Brown       if (vdraw) {ierr = MatView(Bfd,vdraw);CHKERRQ(ierr);}
264494ab13aaSBarry Smith       ierr = MatAYPX(Bfd,-1.0,B,SAME_NONZERO_PATTERN);CHKERRQ(ierr);
26454c30e9fbSJed Brown       ierr = MatNorm(Bfd,NORM_1,&norm1);CHKERRQ(ierr);
26466719d8e4SJed Brown       ierr = MatNorm(Bfd,NORM_FROBENIUS,&norm2);CHKERRQ(ierr);
26474c30e9fbSJed Brown       ierr = MatNorm(Bfd,NORM_MAX,&normmax);CHKERRQ(ierr);
264857622a8eSBarry Smith       ierr = PetscViewerASCIIPrintf(vstdout,"User-provided matrix minus finite difference Jacobian, norm1=%g normFrob=%g normmax=%g\n",(double)norm1,(double)norm2,(double)normmax);CHKERRQ(ierr);
26496719d8e4SJed Brown       if (flag_display) {ierr = MatView(Bfd,vstdout);CHKERRQ(ierr);}
26504c30e9fbSJed Brown       if (vdraw) {              /* Always use contour for the difference */
26514c30e9fbSJed Brown         ierr = PetscViewerPushFormat(vdraw,PETSC_VIEWER_DRAW_CONTOUR);CHKERRQ(ierr);
26524c30e9fbSJed Brown         ierr = MatView(Bfd,vdraw);CHKERRQ(ierr);
26534c30e9fbSJed Brown         ierr = PetscViewerPopFormat(vdraw);CHKERRQ(ierr);
26544c30e9fbSJed Brown       }
26554c30e9fbSJed Brown       if (flag_contour) {ierr = PetscViewerPopFormat(vdraw);CHKERRQ(ierr);}
26566719d8e4SJed Brown 
26576719d8e4SJed Brown       if (flag_threshold) {
26586719d8e4SJed Brown         PetscInt bs,rstart,rend,i;
265994ab13aaSBarry Smith         ierr = MatGetBlockSize(B,&bs);CHKERRQ(ierr);
266094ab13aaSBarry Smith         ierr = MatGetOwnershipRange(B,&rstart,&rend);CHKERRQ(ierr);
26616719d8e4SJed Brown         for (i=rstart; i<rend; i++) {
26626719d8e4SJed Brown           const PetscScalar *ba,*ca;
26636719d8e4SJed Brown           const PetscInt    *bj,*cj;
26646719d8e4SJed Brown           PetscInt          bn,cn,j,maxentrycol = -1,maxdiffcol = -1,maxrdiffcol = -1;
26656719d8e4SJed Brown           PetscReal         maxentry = 0,maxdiff = 0,maxrdiff = 0;
266694ab13aaSBarry Smith           ierr = MatGetRow(B,i,&bn,&bj,&ba);CHKERRQ(ierr);
26676719d8e4SJed Brown           ierr = MatGetRow(Bfd,i,&cn,&cj,&ca);CHKERRQ(ierr);
266894ab13aaSBarry Smith           if (bn != cn) SETERRQ(((PetscObject)A)->comm,PETSC_ERR_PLIB,"Unexpected different nonzero pattern in -snes_compare_coloring_threshold");
26696719d8e4SJed Brown           for (j=0; j<bn; j++) {
26706719d8e4SJed Brown             PetscReal rdiff = PetscAbsScalar(ca[j]) / (threshold_atol + threshold_rtol*PetscAbsScalar(ba[j]));
26716719d8e4SJed Brown             if (PetscAbsScalar(ba[j]) > PetscAbs(maxentry)) {
26726719d8e4SJed Brown               maxentrycol = bj[j];
26736719d8e4SJed Brown               maxentry    = PetscRealPart(ba[j]);
26746719d8e4SJed Brown             }
26756719d8e4SJed Brown             if (PetscAbsScalar(ca[j]) > PetscAbs(maxdiff)) {
26766719d8e4SJed Brown               maxdiffcol = bj[j];
26776719d8e4SJed Brown               maxdiff    = PetscRealPart(ca[j]);
26786719d8e4SJed Brown             }
26796719d8e4SJed Brown             if (rdiff > maxrdiff) {
26806719d8e4SJed Brown               maxrdiffcol = bj[j];
26816719d8e4SJed Brown               maxrdiff    = rdiff;
26826719d8e4SJed Brown             }
26836719d8e4SJed Brown           }
26846719d8e4SJed Brown           if (maxrdiff > 1) {
268557622a8eSBarry Smith             ierr = PetscViewerASCIIPrintf(vstdout,"row %D (maxentry=%g at %D, maxdiff=%g at %D, maxrdiff=%g at %D):",i,(double)maxentry,maxentrycol,(double)maxdiff,maxdiffcol,(double)maxrdiff,maxrdiffcol);CHKERRQ(ierr);
26866719d8e4SJed Brown             for (j=0; j<bn; j++) {
26876719d8e4SJed Brown               PetscReal rdiff;
26886719d8e4SJed Brown               rdiff = PetscAbsScalar(ca[j]) / (threshold_atol + threshold_rtol*PetscAbsScalar(ba[j]));
26896719d8e4SJed Brown               if (rdiff > 1) {
269057622a8eSBarry Smith                 ierr = PetscViewerASCIIPrintf(vstdout," (%D,%g:%g)",bj[j],(double)PetscRealPart(ba[j]),(double)PetscRealPart(ca[j]));CHKERRQ(ierr);
26916719d8e4SJed Brown               }
26926719d8e4SJed Brown             }
26936719d8e4SJed Brown             ierr = PetscViewerASCIIPrintf(vstdout,"\n",i,maxentry,maxdiff,maxrdiff);CHKERRQ(ierr);
26946719d8e4SJed Brown           }
269594ab13aaSBarry Smith           ierr = MatRestoreRow(B,i,&bn,&bj,&ba);CHKERRQ(ierr);
26966719d8e4SJed Brown           ierr = MatRestoreRow(Bfd,i,&cn,&cj,&ca);CHKERRQ(ierr);
26976719d8e4SJed Brown         }
26986719d8e4SJed Brown       }
26994c30e9fbSJed Brown       ierr = PetscViewerDestroy(&vdraw);CHKERRQ(ierr);
27004c30e9fbSJed Brown       ierr = MatDestroy(&Bfd);CHKERRQ(ierr);
27014c30e9fbSJed Brown     }
27024c30e9fbSJed Brown   }
27033a40ed3dSBarry Smith   PetscFunctionReturn(0);
27049b94acceSBarry Smith }
27059b94acceSBarry Smith 
2706bf388a1fSBarry Smith /*MC
2707411c0326SBarry Smith     SNESJacobianFunction - Function used to convey the nonlinear Jacobian of the function to be solved by SNES
2708bf388a1fSBarry Smith 
2709bf388a1fSBarry Smith      Synopsis:
2710411c0326SBarry Smith      #include "petscsnes.h"
2711411c0326SBarry Smith      PetscErrorCode SNESJacobianFunction(SNES snes,Vec x,Mat Amat,Mat Pmat,void *ctx);
2712bf388a1fSBarry Smith 
2713bf388a1fSBarry Smith +  x - input vector
2714e5d3d808SBarry Smith .  Amat - the matrix that defines the (approximate) Jacobian
2715e5d3d808SBarry Smith .  Pmat - the matrix to be used in constructing the preconditioner, usually the same as Amat.
2716bf388a1fSBarry Smith -  ctx - [optional] user-defined Jacobian context
2717bf388a1fSBarry Smith 
2718878cb397SSatish Balay    Level: intermediate
2719878cb397SSatish Balay 
2720bf388a1fSBarry Smith .seealso:   SNESSetFunction(), SNESGetFunction(), SNESSetJacobian(), SNESGetJacobian()
2721bf388a1fSBarry Smith M*/
2722bf388a1fSBarry Smith 
27239b94acceSBarry Smith /*@C
27249b94acceSBarry Smith    SNESSetJacobian - Sets the function to compute Jacobian as well as the
2725044dda88SLois Curfman McInnes    location to store the matrix.
27269b94acceSBarry Smith 
27273f9fe445SBarry Smith    Logically Collective on SNES and Mat
2728c7afd0dbSLois Curfman McInnes 
27299b94acceSBarry Smith    Input Parameters:
2730c7afd0dbSLois Curfman McInnes +  snes - the SNES context
2731e5d3d808SBarry Smith .  Amat - the matrix that defines the (approximate) Jacobian
2732e5d3d808SBarry Smith .  Pmat - the matrix to be used in constructing the preconditioner, usually the same as Amat.
2733411c0326SBarry Smith .  J - Jacobian evaluation routine (if NULL then SNES retains any previously set value), see SNESJacobianFunction for details
2734c7afd0dbSLois Curfman McInnes -  ctx - [optional] user-defined context for private data for the
27350298fd71SBarry Smith          Jacobian evaluation routine (may be NULL) (if NULL then SNES retains any previously set value)
27369b94acceSBarry Smith 
27379b94acceSBarry Smith    Notes:
2738e5d3d808SBarry Smith    If the Amat matrix and Pmat matrix are different you must call MatAssemblyBegin/End() on
273916913363SBarry Smith    each matrix.
274016913363SBarry Smith 
2741895c21f2SBarry Smith    If you know the operator Amat has a null space you can use MatSetNullSpace() and MatSetTransposeNullSpace() to supply the null
2742895c21f2SBarry Smith    space to Amat and the KSP solvers will automatically use that null space as needed during the solution process.
2743895c21f2SBarry Smith 
27448d359177SBarry Smith    If using SNESComputeJacobianDefaultColor() to assemble a Jacobian, the ctx argument
2745a8a26c1eSJed Brown    must be a MatFDColoring.
2746a8a26c1eSJed Brown 
2747c3cc8fd1SJed Brown    Other defect-correction schemes can be used by computing a different matrix in place of the Jacobian.  One common
2748c3cc8fd1SJed Brown    example is to use the "Picard linearization" which only differentiates through the highest order parts of each term.
2749c3cc8fd1SJed Brown 
275036851e7fSLois Curfman McInnes    Level: beginner
275136851e7fSLois Curfman McInnes 
27529b94acceSBarry Smith .keywords: SNES, nonlinear, set, Jacobian, matrix
27539b94acceSBarry Smith 
2754411c0326SBarry Smith .seealso: KSPSetOperators(), SNESSetFunction(), MatMFFDComputeJacobian(), SNESComputeJacobianDefaultColor(), MatStructure, J,
2755411c0326SBarry Smith           SNESSetPicard(), SNESJacobianFunction
27569b94acceSBarry Smith @*/
2757d1e9a80fSBarry Smith PetscErrorCode  SNESSetJacobian(SNES snes,Mat Amat,Mat Pmat,PetscErrorCode (*J)(SNES,Vec,Mat,Mat,void*),void *ctx)
27589b94acceSBarry Smith {
2759dfbe8321SBarry Smith   PetscErrorCode ierr;
27606cab3a1bSJed Brown   DM             dm;
27613a7fca6bSBarry Smith 
27623a40ed3dSBarry Smith   PetscFunctionBegin;
27630700a824SBarry Smith   PetscValidHeaderSpecific(snes,SNES_CLASSID,1);
2764e5d3d808SBarry Smith   if (Amat) PetscValidHeaderSpecific(Amat,MAT_CLASSID,2);
2765e5d3d808SBarry Smith   if (Pmat) PetscValidHeaderSpecific(Pmat,MAT_CLASSID,3);
2766e5d3d808SBarry Smith   if (Amat) PetscCheckSameComm(snes,1,Amat,2);
2767e5d3d808SBarry Smith   if (Pmat) PetscCheckSameComm(snes,1,Pmat,3);
27686cab3a1bSJed Brown   ierr = SNESGetDM(snes,&dm);CHKERRQ(ierr);
2769f8b49ee9SBarry Smith   ierr = DMSNESSetJacobian(dm,J,ctx);CHKERRQ(ierr);
2770e5d3d808SBarry Smith   if (Amat) {
2771e5d3d808SBarry Smith     ierr = PetscObjectReference((PetscObject)Amat);CHKERRQ(ierr);
27726bf464f9SBarry Smith     ierr = MatDestroy(&snes->jacobian);CHKERRQ(ierr);
2773f5af7f23SKarl Rupp 
2774e5d3d808SBarry Smith     snes->jacobian = Amat;
27753a7fca6bSBarry Smith   }
2776e5d3d808SBarry Smith   if (Pmat) {
2777e5d3d808SBarry Smith     ierr = PetscObjectReference((PetscObject)Pmat);CHKERRQ(ierr);
27786bf464f9SBarry Smith     ierr = MatDestroy(&snes->jacobian_pre);CHKERRQ(ierr);
2779f5af7f23SKarl Rupp 
2780e5d3d808SBarry Smith     snes->jacobian_pre = Pmat;
27813a7fca6bSBarry Smith   }
27823a40ed3dSBarry Smith   PetscFunctionReturn(0);
27839b94acceSBarry Smith }
278462fef451SLois Curfman McInnes 
2785c2aafc4cSSatish Balay /*@C
2786b4fd4287SBarry Smith    SNESGetJacobian - Returns the Jacobian matrix and optionally the user
2787b4fd4287SBarry Smith    provided context for evaluating the Jacobian.
2788b4fd4287SBarry Smith 
2789c7afd0dbSLois Curfman McInnes    Not Collective, but Mat object will be parallel if SNES object is
2790c7afd0dbSLois Curfman McInnes 
2791b4fd4287SBarry Smith    Input Parameter:
2792b4fd4287SBarry Smith .  snes - the nonlinear solver context
2793b4fd4287SBarry Smith 
2794b4fd4287SBarry Smith    Output Parameters:
2795e5d3d808SBarry Smith +  Amat - location to stash (approximate) Jacobian matrix (or NULL)
2796e5d3d808SBarry Smith .  Pmat - location to stash matrix used to compute the preconditioner (or NULL)
2797411c0326SBarry Smith .  J - location to put Jacobian function (or NULL), see SNESJacobianFunction for details on its calling sequence
27980298fd71SBarry Smith -  ctx - location to stash Jacobian ctx (or NULL)
2799fee21e36SBarry Smith 
280036851e7fSLois Curfman McInnes    Level: advanced
280136851e7fSLois Curfman McInnes 
2802411c0326SBarry Smith .seealso: SNESSetJacobian(), SNESComputeJacobian(), SNESJacobianFunction, SNESGetFunction()
2803b4fd4287SBarry Smith @*/
2804d1e9a80fSBarry Smith PetscErrorCode SNESGetJacobian(SNES snes,Mat *Amat,Mat *Pmat,PetscErrorCode (**J)(SNES,Vec,Mat,Mat,void*),void **ctx)
2805b4fd4287SBarry Smith {
28066cab3a1bSJed Brown   PetscErrorCode ierr;
28076cab3a1bSJed Brown   DM             dm;
2808942e3340SBarry Smith   DMSNES         sdm;
28096cab3a1bSJed Brown 
28103a40ed3dSBarry Smith   PetscFunctionBegin;
28110700a824SBarry Smith   PetscValidHeaderSpecific(snes,SNES_CLASSID,1);
2812e5d3d808SBarry Smith   if (Amat) *Amat = snes->jacobian;
2813e5d3d808SBarry Smith   if (Pmat) *Pmat = snes->jacobian_pre;
28146cab3a1bSJed Brown   ierr = SNESGetDM(snes,&dm);CHKERRQ(ierr);
2815942e3340SBarry Smith   ierr = DMGetDMSNES(dm,&sdm);CHKERRQ(ierr);
2816f8b49ee9SBarry Smith   if (J) *J = sdm->ops->computejacobian;
28176cab3a1bSJed Brown   if (ctx) *ctx = sdm->jacobianctx;
28183a40ed3dSBarry Smith   PetscFunctionReturn(0);
2819b4fd4287SBarry Smith }
2820b4fd4287SBarry Smith 
28219b94acceSBarry Smith /*@
28229b94acceSBarry Smith    SNESSetUp - Sets up the internal data structures for the later use
2823272ac6f2SLois Curfman McInnes    of a nonlinear solver.
28249b94acceSBarry Smith 
2825fee21e36SBarry Smith    Collective on SNES
2826fee21e36SBarry Smith 
2827c7afd0dbSLois Curfman McInnes    Input Parameters:
282870e92668SMatthew Knepley .  snes - the SNES context
2829c7afd0dbSLois Curfman McInnes 
2830272ac6f2SLois Curfman McInnes    Notes:
2831272ac6f2SLois Curfman McInnes    For basic use of the SNES solvers the user need not explicitly call
2832272ac6f2SLois Curfman McInnes    SNESSetUp(), since these actions will automatically occur during
2833272ac6f2SLois Curfman McInnes    the call to SNESSolve().  However, if one wishes to control this
2834272ac6f2SLois Curfman McInnes    phase separately, SNESSetUp() should be called after SNESCreate()
2835272ac6f2SLois Curfman McInnes    and optional routines of the form SNESSetXXX(), but before SNESSolve().
2836272ac6f2SLois Curfman McInnes 
283736851e7fSLois Curfman McInnes    Level: advanced
283836851e7fSLois Curfman McInnes 
28399b94acceSBarry Smith .keywords: SNES, nonlinear, setup
28409b94acceSBarry Smith 
28419b94acceSBarry Smith .seealso: SNESCreate(), SNESSolve(), SNESDestroy()
28429b94acceSBarry Smith @*/
28437087cfbeSBarry Smith PetscErrorCode  SNESSetUp(SNES snes)
28449b94acceSBarry Smith {
2845dfbe8321SBarry Smith   PetscErrorCode ierr;
28466cab3a1bSJed Brown   DM             dm;
2847942e3340SBarry Smith   DMSNES         sdm;
2848c35f09e5SBarry Smith   SNESLineSearch linesearch, pclinesearch;
28496e2a1849SPeter Brune   void           *lsprectx,*lspostctx;
28506b2b7091SBarry Smith   PetscErrorCode (*precheck)(SNESLineSearch,Vec,Vec,PetscBool*,void*);
28516b2b7091SBarry Smith   PetscErrorCode (*postcheck)(SNESLineSearch,Vec,Vec,Vec,PetscBool*,PetscBool*,void*);
28526e2a1849SPeter Brune   PetscErrorCode (*func)(SNES,Vec,Vec,void*);
28536e2a1849SPeter Brune   Vec            f,fpc;
28546e2a1849SPeter Brune   void           *funcctx;
2855d1e9a80fSBarry Smith   PetscErrorCode (*jac)(SNES,Vec,Mat,Mat,void*);
28561eb13d49SPeter Brune   void           *jacctx,*appctx;
285732b97717SPeter Brune   Mat            j,jpre;
28583a40ed3dSBarry Smith 
28593a40ed3dSBarry Smith   PetscFunctionBegin;
28600700a824SBarry Smith   PetscValidHeaderSpecific(snes,SNES_CLASSID,1);
28614dc4c822SBarry Smith   if (snes->setupcalled) PetscFunctionReturn(0);
28629b94acceSBarry Smith 
28637adad957SLisandro Dalcin   if (!((PetscObject)snes)->type_name) {
286404d7464bSBarry Smith     ierr = SNESSetType(snes,SNESNEWTONLS);CHKERRQ(ierr);
286585385478SLisandro Dalcin   }
286685385478SLisandro Dalcin 
28670298fd71SBarry Smith   ierr = SNESGetFunction(snes,&snes->vec_func,NULL,NULL);CHKERRQ(ierr);
286858c9b817SLisandro Dalcin 
28696cab3a1bSJed Brown   ierr = SNESGetDM(snes,&dm);CHKERRQ(ierr);
2870942e3340SBarry Smith   ierr = DMGetDMSNES(dm,&sdm);CHKERRQ(ierr);
2871ce94432eSBarry Smith   if (!sdm->ops->computefunction) SETERRQ(PetscObjectComm((PetscObject)dm),PETSC_ERR_ARG_WRONGSTATE,"Function never provided to SNES object");
287222c6f798SBarry Smith   if (!sdm->ops->computejacobian) {
28738d359177SBarry Smith     ierr = DMSNESSetJacobian(dm,SNESComputeJacobianDefaultColor,NULL);CHKERRQ(ierr);
287419f7a02aSBarry Smith   }
28756cab3a1bSJed Brown   if (!snes->vec_func) {
28766cab3a1bSJed Brown     ierr = DMCreateGlobalVector(dm,&snes->vec_func);CHKERRQ(ierr);
2877214df951SJed Brown   }
2878efd51863SBarry Smith 
287922d28d08SBarry Smith   if (!snes->ksp) {
288022d28d08SBarry Smith     ierr = SNESGetKSP(snes, &snes->ksp);CHKERRQ(ierr);
288122d28d08SBarry Smith   }
2882b710008aSBarry Smith 
288322d28d08SBarry Smith   if (!snes->linesearch) {
28847601faf0SJed Brown     ierr = SNESGetLineSearch(snes, &snes->linesearch);CHKERRQ(ierr);
288522d28d08SBarry Smith   }
2886ed07d7d7SPeter Brune   ierr = SNESLineSearchSetFunction(snes->linesearch,SNESComputeFunction);CHKERRQ(ierr);
28879e764e56SPeter Brune 
2888efd4aadfSBarry Smith   if (snes->npc && (snes->npcside== PC_LEFT)) {
2889172a4300SPeter Brune     snes->mf          = PETSC_TRUE;
2890172a4300SPeter Brune     snes->mf_operator = PETSC_FALSE;
2891172a4300SPeter Brune   }
2892d8f46077SPeter Brune 
2893efd4aadfSBarry Smith   if (snes->npc) {
28946e2a1849SPeter Brune     /* copy the DM over */
28956e2a1849SPeter Brune     ierr = SNESGetDM(snes,&dm);CHKERRQ(ierr);
2896efd4aadfSBarry Smith     ierr = SNESSetDM(snes->npc,dm);CHKERRQ(ierr);
28976e2a1849SPeter Brune 
28986e2a1849SPeter Brune     ierr = SNESGetFunction(snes,&f,&func,&funcctx);CHKERRQ(ierr);
28996e2a1849SPeter Brune     ierr = VecDuplicate(f,&fpc);CHKERRQ(ierr);
2900efd4aadfSBarry Smith     ierr = SNESSetFunction(snes->npc,fpc,func,funcctx);CHKERRQ(ierr);
290132b97717SPeter Brune     ierr = SNESGetJacobian(snes,&j,&jpre,&jac,&jacctx);CHKERRQ(ierr);
2902efd4aadfSBarry Smith     ierr = SNESSetJacobian(snes->npc,j,jpre,jac,jacctx);CHKERRQ(ierr);
29031eb13d49SPeter Brune     ierr = SNESGetApplicationContext(snes,&appctx);CHKERRQ(ierr);
2904efd4aadfSBarry Smith     ierr = SNESSetApplicationContext(snes->npc,appctx);CHKERRQ(ierr);
29056e2a1849SPeter Brune     ierr = VecDestroy(&fpc);CHKERRQ(ierr);
29066e2a1849SPeter Brune 
29076e2a1849SPeter Brune     /* copy the function pointers over */
2908efd4aadfSBarry Smith     ierr = PetscObjectCopyFortranFunctionPointers((PetscObject)snes,(PetscObject)snes->npc);CHKERRQ(ierr);
29096e2a1849SPeter Brune 
29106e2a1849SPeter Brune     /* default to 1 iteration */
2911efd4aadfSBarry Smith     ierr = SNESSetTolerances(snes->npc,0.0,0.0,0.0,1,snes->npc->max_funcs);CHKERRQ(ierr);
2912efd4aadfSBarry Smith     if (snes->npcside==PC_RIGHT) {
2913efd4aadfSBarry Smith       ierr = SNESSetNormSchedule(snes->npc,SNES_NORM_FINAL_ONLY);CHKERRQ(ierr);
2914a9936a0cSPeter Brune     } else {
2915efd4aadfSBarry Smith       ierr = SNESSetNormSchedule(snes->npc,SNES_NORM_NONE);CHKERRQ(ierr);
2916a9936a0cSPeter Brune     }
2917efd4aadfSBarry Smith     ierr = SNESSetFromOptions(snes->npc);CHKERRQ(ierr);
29186e2a1849SPeter Brune 
29196e2a1849SPeter Brune     /* copy the line search context over */
29207601faf0SJed Brown     ierr = SNESGetLineSearch(snes,&linesearch);CHKERRQ(ierr);
2921efd4aadfSBarry Smith     ierr = SNESGetLineSearch(snes->npc,&pclinesearch);CHKERRQ(ierr);
29226b2b7091SBarry Smith     ierr = SNESLineSearchGetPreCheck(linesearch,&precheck,&lsprectx);CHKERRQ(ierr);
29236b2b7091SBarry Smith     ierr = SNESLineSearchGetPostCheck(linesearch,&postcheck,&lspostctx);CHKERRQ(ierr);
29246b2b7091SBarry Smith     ierr = SNESLineSearchSetPreCheck(pclinesearch,precheck,lsprectx);CHKERRQ(ierr);
29256b2b7091SBarry Smith     ierr = SNESLineSearchSetPostCheck(pclinesearch,postcheck,lspostctx);CHKERRQ(ierr);
29266e2a1849SPeter Brune     ierr = PetscObjectCopyFortranFunctionPointers((PetscObject)linesearch, (PetscObject)pclinesearch);CHKERRQ(ierr);
29276e2a1849SPeter Brune   }
292832b97717SPeter Brune   if (snes->mf) {
292932b97717SPeter Brune     ierr = SNESSetUpMatrixFree_Private(snes, snes->mf_operator, snes->mf_version);CHKERRQ(ierr);
293032b97717SPeter Brune   }
293132b97717SPeter Brune   if (snes->ops->usercompute && !snes->user) {
293232b97717SPeter Brune     ierr = (*snes->ops->usercompute)(snes,(void**)&snes->user);CHKERRQ(ierr);
293332b97717SPeter Brune   }
29346e2a1849SPeter Brune 
293537ec4e1aSPeter Brune   snes->jac_iter = 0;
293637ec4e1aSPeter Brune   snes->pre_iter = 0;
293737ec4e1aSPeter Brune 
2938410397dcSLisandro Dalcin   if (snes->ops->setup) {
2939410397dcSLisandro Dalcin     ierr = (*snes->ops->setup)(snes);CHKERRQ(ierr);
2940410397dcSLisandro Dalcin   }
294158c9b817SLisandro Dalcin 
2942efd4aadfSBarry Smith   if (snes->npc && (snes->npcside== PC_LEFT)) {
29436c67d002SPeter Brune     if (snes->functype == SNES_FUNCTION_PRECONDITIONED) {
294455d4788fSPeter Brune       ierr = SNESGetLineSearch(snes,&linesearch);CHKERRQ(ierr);
2945be95d8f1SBarry Smith       ierr = SNESLineSearchSetFunction(linesearch,SNESComputeFunctionDefaultNPC);CHKERRQ(ierr);
29466c67d002SPeter Brune     }
29476c67d002SPeter Brune   }
29486c67d002SPeter Brune 
29497aaed0d8SBarry Smith   snes->setupcalled = PETSC_TRUE;
29503a40ed3dSBarry Smith   PetscFunctionReturn(0);
29519b94acceSBarry Smith }
29529b94acceSBarry Smith 
295337596af1SLisandro Dalcin /*@
295437596af1SLisandro Dalcin    SNESReset - Resets a SNES context to the snessetupcalled = 0 state and removes any allocated Vecs and Mats
295537596af1SLisandro Dalcin 
295637596af1SLisandro Dalcin    Collective on SNES
295737596af1SLisandro Dalcin 
295837596af1SLisandro Dalcin    Input Parameter:
295937596af1SLisandro Dalcin .  snes - iterative context obtained from SNESCreate()
296037596af1SLisandro Dalcin 
2961d25893d9SBarry Smith    Level: intermediate
2962d25893d9SBarry Smith 
2963d25893d9SBarry Smith    Notes: Also calls the application context destroy routine set with SNESSetComputeApplicationContext()
296437596af1SLisandro Dalcin 
296537596af1SLisandro Dalcin .keywords: SNES, destroy
296637596af1SLisandro Dalcin 
296737596af1SLisandro Dalcin .seealso: SNESCreate(), SNESSetUp(), SNESSolve()
296837596af1SLisandro Dalcin @*/
296937596af1SLisandro Dalcin PetscErrorCode  SNESReset(SNES snes)
297037596af1SLisandro Dalcin {
297137596af1SLisandro Dalcin   PetscErrorCode ierr;
297237596af1SLisandro Dalcin 
297337596af1SLisandro Dalcin   PetscFunctionBegin;
297437596af1SLisandro Dalcin   PetscValidHeaderSpecific(snes,SNES_CLASSID,1);
2975d25893d9SBarry Smith   if (snes->ops->userdestroy && snes->user) {
2976d25893d9SBarry Smith     ierr       = (*snes->ops->userdestroy)((void**)&snes->user);CHKERRQ(ierr);
29770298fd71SBarry Smith     snes->user = NULL;
2978d25893d9SBarry Smith   }
2979efd4aadfSBarry Smith   if (snes->npc) {
2980efd4aadfSBarry Smith     ierr = SNESReset(snes->npc);CHKERRQ(ierr);
29818a23116dSBarry Smith   }
29828a23116dSBarry Smith 
298337596af1SLisandro Dalcin   if (snes->ops->reset) {
298437596af1SLisandro Dalcin     ierr = (*snes->ops->reset)(snes);CHKERRQ(ierr);
298537596af1SLisandro Dalcin   }
29869e764e56SPeter Brune   if (snes->ksp) {
29879e764e56SPeter Brune     ierr = KSPReset(snes->ksp);CHKERRQ(ierr);
29889e764e56SPeter Brune   }
29899e764e56SPeter Brune 
29909e764e56SPeter Brune   if (snes->linesearch) {
2991f1c6b773SPeter Brune     ierr = SNESLineSearchReset(snes->linesearch);CHKERRQ(ierr);
29929e764e56SPeter Brune   }
29939e764e56SPeter Brune 
29946bf464f9SBarry Smith   ierr = VecDestroy(&snes->vec_rhs);CHKERRQ(ierr);
29956bf464f9SBarry Smith   ierr = VecDestroy(&snes->vec_sol);CHKERRQ(ierr);
29966bf464f9SBarry Smith   ierr = VecDestroy(&snes->vec_sol_update);CHKERRQ(ierr);
29976bf464f9SBarry Smith   ierr = VecDestroy(&snes->vec_func);CHKERRQ(ierr);
29986bf464f9SBarry Smith   ierr = MatDestroy(&snes->jacobian);CHKERRQ(ierr);
29996bf464f9SBarry Smith   ierr = MatDestroy(&snes->jacobian_pre);CHKERRQ(ierr);
3000c41d97abSJed Brown   ierr = VecDestroyVecs(snes->nwork,&snes->work);CHKERRQ(ierr);
3001c41d97abSJed Brown   ierr = VecDestroyVecs(snes->nvwork,&snes->vwork);CHKERRQ(ierr);
3002f5af7f23SKarl Rupp 
300340fdac6aSLawrence Mitchell   snes->alwayscomputesfinalresidual = PETSC_FALSE;
300440fdac6aSLawrence Mitchell 
300537596af1SLisandro Dalcin   snes->nwork       = snes->nvwork = 0;
300637596af1SLisandro Dalcin   snes->setupcalled = PETSC_FALSE;
300737596af1SLisandro Dalcin   PetscFunctionReturn(0);
300837596af1SLisandro Dalcin }
300937596af1SLisandro Dalcin 
301052baeb72SSatish Balay /*@
30119b94acceSBarry Smith    SNESDestroy - Destroys the nonlinear solver context that was created
30129b94acceSBarry Smith    with SNESCreate().
30139b94acceSBarry Smith 
3014c7afd0dbSLois Curfman McInnes    Collective on SNES
3015c7afd0dbSLois Curfman McInnes 
30169b94acceSBarry Smith    Input Parameter:
30179b94acceSBarry Smith .  snes - the SNES context
30189b94acceSBarry Smith 
301936851e7fSLois Curfman McInnes    Level: beginner
302036851e7fSLois Curfman McInnes 
30219b94acceSBarry Smith .keywords: SNES, nonlinear, destroy
30229b94acceSBarry Smith 
302363a78c88SLois Curfman McInnes .seealso: SNESCreate(), SNESSolve()
30249b94acceSBarry Smith @*/
30256bf464f9SBarry Smith PetscErrorCode  SNESDestroy(SNES *snes)
30269b94acceSBarry Smith {
30276849ba73SBarry Smith   PetscErrorCode ierr;
30283a40ed3dSBarry Smith 
30293a40ed3dSBarry Smith   PetscFunctionBegin;
30306bf464f9SBarry Smith   if (!*snes) PetscFunctionReturn(0);
30316bf464f9SBarry Smith   PetscValidHeaderSpecific((*snes),SNES_CLASSID,1);
30326bf464f9SBarry Smith   if (--((PetscObject)(*snes))->refct > 0) {*snes = 0; PetscFunctionReturn(0);}
3033d4bb536fSBarry Smith 
30346bf464f9SBarry Smith   ierr = SNESReset((*snes));CHKERRQ(ierr);
3035efd4aadfSBarry Smith   ierr = SNESDestroy(&(*snes)->npc);CHKERRQ(ierr);
30366b8b9a38SLisandro Dalcin 
3037e04113cfSBarry Smith   /* if memory was published with SAWs then destroy it */
3038e04113cfSBarry Smith   ierr = PetscObjectSAWsViewOff((PetscObject)*snes);CHKERRQ(ierr);
30396bf464f9SBarry Smith   if ((*snes)->ops->destroy) {ierr = (*((*snes))->ops->destroy)((*snes));CHKERRQ(ierr);}
30406d4c513bSLisandro Dalcin 
304133124788SMatthew G. Knepley   if ((*snes)->dm) {ierr = DMCoarsenHookRemove((*snes)->dm,DMCoarsenHook_SNESVecSol,DMRestrictHook_SNESVecSol,*snes);CHKERRQ(ierr);}
30426bf464f9SBarry Smith   ierr = DMDestroy(&(*snes)->dm);CHKERRQ(ierr);
30436bf464f9SBarry Smith   ierr = KSPDestroy(&(*snes)->ksp);CHKERRQ(ierr);
3044f1c6b773SPeter Brune   ierr = SNESLineSearchDestroy(&(*snes)->linesearch);CHKERRQ(ierr);
30456b8b9a38SLisandro Dalcin 
30466bf464f9SBarry Smith   ierr = PetscFree((*snes)->kspconvctx);CHKERRQ(ierr);
30476bf464f9SBarry Smith   if ((*snes)->ops->convergeddestroy) {
30486bf464f9SBarry Smith     ierr = (*(*snes)->ops->convergeddestroy)((*snes)->cnvP);CHKERRQ(ierr);
30496b8b9a38SLisandro Dalcin   }
30506bf464f9SBarry Smith   if ((*snes)->conv_malloc) {
30516bf464f9SBarry Smith     ierr = PetscFree((*snes)->conv_hist);CHKERRQ(ierr);
30526bf464f9SBarry Smith     ierr = PetscFree((*snes)->conv_hist_its);CHKERRQ(ierr);
305358c9b817SLisandro Dalcin   }
30546bf464f9SBarry Smith   ierr = SNESMonitorCancel((*snes));CHKERRQ(ierr);
3055a79aaaedSSatish Balay   ierr = PetscHeaderDestroy(snes);CHKERRQ(ierr);
30563a40ed3dSBarry Smith   PetscFunctionReturn(0);
30579b94acceSBarry Smith }
30589b94acceSBarry Smith 
30599b94acceSBarry Smith /* ----------- Routines to set solver parameters ---------- */
30609b94acceSBarry Smith 
3061a8054027SBarry Smith /*@
3062a8054027SBarry Smith    SNESSetLagPreconditioner - Determines when the preconditioner is rebuilt in the nonlinear solve.
3063a8054027SBarry Smith 
30643f9fe445SBarry Smith    Logically Collective on SNES
3065a8054027SBarry Smith 
3066a8054027SBarry Smith    Input Parameters:
3067a8054027SBarry Smith +  snes - the SNES context
3068a8054027SBarry Smith -  lag - -1 indicates NEVER rebuild, 1 means rebuild every time the Jacobian is computed within a single nonlinear solve, 2 means every second time
30693b4f5425SBarry Smith          the Jacobian is built etc. -2 indicates rebuild preconditioner at next chance but then never rebuild after that
3070a8054027SBarry Smith 
3071a8054027SBarry Smith    Options Database Keys:
3072a8054027SBarry Smith .    -snes_lag_preconditioner <lag>
3073a8054027SBarry Smith 
3074a8054027SBarry Smith    Notes:
3075a8054027SBarry Smith    The default is 1
3076a8054027SBarry Smith    The preconditioner is ALWAYS built in the first iteration of a nonlinear solve unless lag is -1
3077a8054027SBarry Smith    If  -1 is used before the very first nonlinear solve the preconditioner is still built because there is no previous preconditioner to use
3078a8054027SBarry Smith 
3079a8054027SBarry Smith    Level: intermediate
3080a8054027SBarry Smith 
3081a8054027SBarry Smith .keywords: SNES, nonlinear, set, convergence, tolerances
3082a8054027SBarry Smith 
3083e35cf81dSBarry Smith .seealso: SNESSetTrustRegionTolerance(), SNESGetLagPreconditioner(), SNESSetLagJacobian(), SNESGetLagJacobian()
3084a8054027SBarry Smith 
3085a8054027SBarry Smith @*/
30867087cfbeSBarry Smith PetscErrorCode  SNESSetLagPreconditioner(SNES snes,PetscInt lag)
3087a8054027SBarry Smith {
3088a8054027SBarry Smith   PetscFunctionBegin;
30890700a824SBarry Smith   PetscValidHeaderSpecific(snes,SNES_CLASSID,1);
3090e32f2f54SBarry Smith   if (lag < -2) SETERRQ(PETSC_COMM_SELF,PETSC_ERR_ARG_OUTOFRANGE,"Lag must be -2, -1, 1 or greater");
3091e32f2f54SBarry Smith   if (!lag) SETERRQ(PETSC_COMM_SELF,PETSC_ERR_ARG_OUTOFRANGE,"Lag cannot be 0");
3092c5eb9154SBarry Smith   PetscValidLogicalCollectiveInt(snes,lag,2);
3093a8054027SBarry Smith   snes->lagpreconditioner = lag;
3094a8054027SBarry Smith   PetscFunctionReturn(0);
3095a8054027SBarry Smith }
3096a8054027SBarry Smith 
3097efd51863SBarry Smith /*@
3098efd51863SBarry Smith    SNESSetGridSequence - sets the number of steps of grid sequencing that SNES does
3099efd51863SBarry Smith 
3100efd51863SBarry Smith    Logically Collective on SNES
3101efd51863SBarry Smith 
3102efd51863SBarry Smith    Input Parameters:
3103efd51863SBarry Smith +  snes - the SNES context
3104efd51863SBarry Smith -  steps - the number of refinements to do, defaults to 0
3105efd51863SBarry Smith 
3106efd51863SBarry Smith    Options Database Keys:
3107efd51863SBarry Smith .    -snes_grid_sequence <steps>
3108efd51863SBarry Smith 
3109efd51863SBarry Smith    Level: intermediate
3110efd51863SBarry Smith 
3111c0df2a02SJed Brown    Notes:
3112c0df2a02SJed Brown    Use SNESGetSolution() to extract the fine grid solution after grid sequencing.
3113c0df2a02SJed Brown 
3114efd51863SBarry Smith .keywords: SNES, nonlinear, set, convergence, tolerances
3115efd51863SBarry Smith 
3116fa19ca70SBarry Smith .seealso: SNESSetTrustRegionTolerance(), SNESGetLagPreconditioner(), SNESSetLagJacobian(), SNESGetLagJacobian(), SNESGetGridSequence()
3117efd51863SBarry Smith 
3118efd51863SBarry Smith @*/
3119efd51863SBarry Smith PetscErrorCode  SNESSetGridSequence(SNES snes,PetscInt steps)
3120efd51863SBarry Smith {
3121efd51863SBarry Smith   PetscFunctionBegin;
3122efd51863SBarry Smith   PetscValidHeaderSpecific(snes,SNES_CLASSID,1);
3123efd51863SBarry Smith   PetscValidLogicalCollectiveInt(snes,steps,2);
3124efd51863SBarry Smith   snes->gridsequence = steps;
3125efd51863SBarry Smith   PetscFunctionReturn(0);
3126efd51863SBarry Smith }
3127efd51863SBarry Smith 
3128fa19ca70SBarry Smith /*@
3129fa19ca70SBarry Smith    SNESGetGridSequence - gets the number of steps of grid sequencing that SNES does
3130fa19ca70SBarry Smith 
3131fa19ca70SBarry Smith    Logically Collective on SNES
3132fa19ca70SBarry Smith 
3133fa19ca70SBarry Smith    Input Parameter:
3134fa19ca70SBarry Smith .  snes - the SNES context
3135fa19ca70SBarry Smith 
3136fa19ca70SBarry Smith    Output Parameter:
3137fa19ca70SBarry Smith .  steps - the number of refinements to do, defaults to 0
3138fa19ca70SBarry Smith 
3139fa19ca70SBarry Smith    Options Database Keys:
3140fa19ca70SBarry Smith .    -snes_grid_sequence <steps>
3141fa19ca70SBarry Smith 
3142fa19ca70SBarry Smith    Level: intermediate
3143fa19ca70SBarry Smith 
3144fa19ca70SBarry Smith    Notes:
3145fa19ca70SBarry Smith    Use SNESGetSolution() to extract the fine grid solution after grid sequencing.
3146fa19ca70SBarry Smith 
3147fa19ca70SBarry Smith .keywords: SNES, nonlinear, set, convergence, tolerances
3148fa19ca70SBarry Smith 
3149fa19ca70SBarry Smith .seealso: SNESSetTrustRegionTolerance(), SNESGetLagPreconditioner(), SNESSetLagJacobian(), SNESGetLagJacobian(), SNESSetGridSequence()
3150fa19ca70SBarry Smith 
3151fa19ca70SBarry Smith @*/
3152fa19ca70SBarry Smith PetscErrorCode  SNESGetGridSequence(SNES snes,PetscInt *steps)
3153fa19ca70SBarry Smith {
3154fa19ca70SBarry Smith   PetscFunctionBegin;
3155fa19ca70SBarry Smith   PetscValidHeaderSpecific(snes,SNES_CLASSID,1);
3156fa19ca70SBarry Smith   *steps = snes->gridsequence;
3157fa19ca70SBarry Smith   PetscFunctionReturn(0);
3158fa19ca70SBarry Smith }
3159fa19ca70SBarry Smith 
3160a8054027SBarry Smith /*@
3161a8054027SBarry Smith    SNESGetLagPreconditioner - Indicates how often the preconditioner is rebuilt
3162a8054027SBarry Smith 
31633f9fe445SBarry Smith    Not Collective
3164a8054027SBarry Smith 
3165a8054027SBarry Smith    Input Parameter:
3166a8054027SBarry Smith .  snes - the SNES context
3167a8054027SBarry Smith 
3168a8054027SBarry Smith    Output Parameter:
3169a8054027SBarry Smith .   lag - -1 indicates NEVER rebuild, 1 means rebuild every time the Jacobian is computed within a single nonlinear solve, 2 means every second time
31703b4f5425SBarry Smith          the Jacobian is built etc. -2 indicates rebuild preconditioner at next chance but then never rebuild after that
3171a8054027SBarry Smith 
3172a8054027SBarry Smith    Options Database Keys:
3173a8054027SBarry Smith .    -snes_lag_preconditioner <lag>
3174a8054027SBarry Smith 
3175a8054027SBarry Smith    Notes:
3176a8054027SBarry Smith    The default is 1
3177a8054027SBarry Smith    The preconditioner is ALWAYS built in the first iteration of a nonlinear solve unless lag is -1
3178a8054027SBarry Smith 
3179a8054027SBarry Smith    Level: intermediate
3180a8054027SBarry Smith 
3181a8054027SBarry Smith .keywords: SNES, nonlinear, set, convergence, tolerances
3182a8054027SBarry Smith 
3183a8054027SBarry Smith .seealso: SNESSetTrustRegionTolerance(), SNESSetLagPreconditioner()
3184a8054027SBarry Smith 
3185a8054027SBarry Smith @*/
31867087cfbeSBarry Smith PetscErrorCode  SNESGetLagPreconditioner(SNES snes,PetscInt *lag)
3187a8054027SBarry Smith {
3188a8054027SBarry Smith   PetscFunctionBegin;
31890700a824SBarry Smith   PetscValidHeaderSpecific(snes,SNES_CLASSID,1);
3190a8054027SBarry Smith   *lag = snes->lagpreconditioner;
3191a8054027SBarry Smith   PetscFunctionReturn(0);
3192a8054027SBarry Smith }
3193a8054027SBarry Smith 
3194e35cf81dSBarry Smith /*@
3195e35cf81dSBarry Smith    SNESSetLagJacobian - Determines when the Jacobian is rebuilt in the nonlinear solve. See SNESSetLagPreconditioner() for determining how
3196e35cf81dSBarry Smith      often the preconditioner is rebuilt.
3197e35cf81dSBarry Smith 
31983f9fe445SBarry Smith    Logically Collective on SNES
3199e35cf81dSBarry Smith 
3200e35cf81dSBarry Smith    Input Parameters:
3201e35cf81dSBarry Smith +  snes - the SNES context
3202e35cf81dSBarry Smith -  lag - -1 indicates NEVER rebuild, 1 means rebuild every time the Jacobian is computed within a single nonlinear solve, 2 means every second time
3203fe3ffe1eSBarry Smith          the Jacobian is built etc. -2 means rebuild at next chance but then never again
3204e35cf81dSBarry Smith 
3205e35cf81dSBarry Smith    Options Database Keys:
3206e35cf81dSBarry Smith .    -snes_lag_jacobian <lag>
3207e35cf81dSBarry Smith 
3208e35cf81dSBarry Smith    Notes:
3209e35cf81dSBarry Smith    The default is 1
3210e35cf81dSBarry Smith    The Jacobian is ALWAYS built in the first iteration of a nonlinear solve unless lag is -1
3211fe3ffe1eSBarry Smith    If  -1 is used before the very first nonlinear solve the CODE WILL FAIL! because no Jacobian is used, use -2 to indicate you want it recomputed
3212fe3ffe1eSBarry Smith    at the next Newton step but never again (unless it is reset to another value)
3213e35cf81dSBarry Smith 
3214e35cf81dSBarry Smith    Level: intermediate
3215e35cf81dSBarry Smith 
3216e35cf81dSBarry Smith .keywords: SNES, nonlinear, set, convergence, tolerances
3217e35cf81dSBarry Smith 
3218e35cf81dSBarry Smith .seealso: SNESSetTrustRegionTolerance(), SNESGetLagPreconditioner(), SNESSetLagPreconditioner(), SNESGetLagJacobian()
3219e35cf81dSBarry Smith 
3220e35cf81dSBarry Smith @*/
32217087cfbeSBarry Smith PetscErrorCode  SNESSetLagJacobian(SNES snes,PetscInt lag)
3222e35cf81dSBarry Smith {
3223e35cf81dSBarry Smith   PetscFunctionBegin;
32240700a824SBarry Smith   PetscValidHeaderSpecific(snes,SNES_CLASSID,1);
3225e32f2f54SBarry Smith   if (lag < -2) SETERRQ(PETSC_COMM_SELF,PETSC_ERR_ARG_OUTOFRANGE,"Lag must be -2, -1, 1 or greater");
3226e32f2f54SBarry Smith   if (!lag) SETERRQ(PETSC_COMM_SELF,PETSC_ERR_ARG_OUTOFRANGE,"Lag cannot be 0");
3227c5eb9154SBarry Smith   PetscValidLogicalCollectiveInt(snes,lag,2);
3228e35cf81dSBarry Smith   snes->lagjacobian = lag;
3229e35cf81dSBarry Smith   PetscFunctionReturn(0);
3230e35cf81dSBarry Smith }
3231e35cf81dSBarry Smith 
3232e35cf81dSBarry Smith /*@
3233e35cf81dSBarry Smith    SNESGetLagJacobian - Indicates how often the Jacobian is rebuilt. See SNESGetLagPreconditioner() to determine when the preconditioner is rebuilt
3234e35cf81dSBarry Smith 
32353f9fe445SBarry Smith    Not Collective
3236e35cf81dSBarry Smith 
3237e35cf81dSBarry Smith    Input Parameter:
3238e35cf81dSBarry Smith .  snes - the SNES context
3239e35cf81dSBarry Smith 
3240e35cf81dSBarry Smith    Output Parameter:
3241e35cf81dSBarry Smith .   lag - -1 indicates NEVER rebuild, 1 means rebuild every time the Jacobian is computed within a single nonlinear solve, 2 means every second time
3242e35cf81dSBarry Smith          the Jacobian is built etc.
3243e35cf81dSBarry Smith 
3244e35cf81dSBarry Smith    Options Database Keys:
3245e35cf81dSBarry Smith .    -snes_lag_jacobian <lag>
3246e35cf81dSBarry Smith 
3247e35cf81dSBarry Smith    Notes:
3248e35cf81dSBarry Smith    The default is 1
3249e35cf81dSBarry Smith    The jacobian is ALWAYS built in the first iteration of a nonlinear solve unless lag is -1
3250e35cf81dSBarry Smith 
3251e35cf81dSBarry Smith    Level: intermediate
3252e35cf81dSBarry Smith 
3253e35cf81dSBarry Smith .keywords: SNES, nonlinear, set, convergence, tolerances
3254e35cf81dSBarry Smith 
3255e35cf81dSBarry Smith .seealso: SNESSetTrustRegionTolerance(), SNESSetLagJacobian(), SNESSetLagPreconditioner(), SNESGetLagPreconditioner()
3256e35cf81dSBarry Smith 
3257e35cf81dSBarry Smith @*/
32587087cfbeSBarry Smith PetscErrorCode  SNESGetLagJacobian(SNES snes,PetscInt *lag)
3259e35cf81dSBarry Smith {
3260e35cf81dSBarry Smith   PetscFunctionBegin;
32610700a824SBarry Smith   PetscValidHeaderSpecific(snes,SNES_CLASSID,1);
3262e35cf81dSBarry Smith   *lag = snes->lagjacobian;
3263e35cf81dSBarry Smith   PetscFunctionReturn(0);
3264e35cf81dSBarry Smith }
3265e35cf81dSBarry Smith 
326637ec4e1aSPeter Brune /*@
326737ec4e1aSPeter Brune    SNESSetLagJacobianPersists - Set whether or not the Jacobian lagging persists through multiple solves
326837ec4e1aSPeter Brune 
326937ec4e1aSPeter Brune    Logically collective on SNES
327037ec4e1aSPeter Brune 
327137ec4e1aSPeter Brune    Input Parameter:
327237ec4e1aSPeter Brune +  snes - the SNES context
32739d7e2deaSPeter Brune -   flg - jacobian lagging persists if true
327437ec4e1aSPeter Brune 
327537ec4e1aSPeter Brune    Options Database Keys:
327637ec4e1aSPeter Brune .    -snes_lag_jacobian_persists <flg>
327737ec4e1aSPeter Brune 
327837ec4e1aSPeter Brune    Notes: This is useful both for nonlinear preconditioning, where it's appropriate to have the Jacobian be stale by
327937ec4e1aSPeter Brune    several solves, and for implicit time-stepping, where Jacobian lagging in the inner nonlinear solve over several
328037ec4e1aSPeter Brune    timesteps may present huge efficiency gains.
328137ec4e1aSPeter Brune 
328237ec4e1aSPeter Brune    Level: developer
328337ec4e1aSPeter Brune 
3284be95d8f1SBarry Smith .keywords: SNES, nonlinear, lag
328537ec4e1aSPeter Brune 
3286be95d8f1SBarry Smith .seealso: SNESSetLagPreconditionerPersists(), SNESSetLagJacobian(), SNESGetLagJacobian(), SNESGetNPC()
328737ec4e1aSPeter Brune 
328837ec4e1aSPeter Brune @*/
328937ec4e1aSPeter Brune PetscErrorCode  SNESSetLagJacobianPersists(SNES snes,PetscBool flg)
329037ec4e1aSPeter Brune {
329137ec4e1aSPeter Brune   PetscFunctionBegin;
329237ec4e1aSPeter Brune   PetscValidHeaderSpecific(snes,SNES_CLASSID,1);
329337ec4e1aSPeter Brune   PetscValidLogicalCollectiveBool(snes,flg,2);
329437ec4e1aSPeter Brune   snes->lagjac_persist = flg;
329537ec4e1aSPeter Brune   PetscFunctionReturn(0);
329637ec4e1aSPeter Brune }
329737ec4e1aSPeter Brune 
329837ec4e1aSPeter Brune /*@
329937ec4e1aSPeter Brune    SNESSetLagPreconditionerPersists - Set whether or not the preconditioner lagging persists through multiple solves
330037ec4e1aSPeter Brune 
330137ec4e1aSPeter Brune    Logically Collective on SNES
330237ec4e1aSPeter Brune 
330337ec4e1aSPeter Brune    Input Parameter:
330437ec4e1aSPeter Brune +  snes - the SNES context
33059d7e2deaSPeter Brune -   flg - preconditioner lagging persists if true
330637ec4e1aSPeter Brune 
330737ec4e1aSPeter Brune    Options Database Keys:
330837ec4e1aSPeter Brune .    -snes_lag_jacobian_persists <flg>
330937ec4e1aSPeter Brune 
331037ec4e1aSPeter Brune    Notes: This is useful both for nonlinear preconditioning, where it's appropriate to have the preconditioner be stale
331137ec4e1aSPeter Brune    by several solves, and for implicit time-stepping, where preconditioner lagging in the inner nonlinear solve over
331237ec4e1aSPeter Brune    several timesteps may present huge efficiency gains.
331337ec4e1aSPeter Brune 
331437ec4e1aSPeter Brune    Level: developer
331537ec4e1aSPeter Brune 
3316be95d8f1SBarry Smith .keywords: SNES, nonlinear, lag
331737ec4e1aSPeter Brune 
3318be95d8f1SBarry Smith .seealso: SNESSetLagJacobianPersists(), SNESSetLagJacobian(), SNESGetLagJacobian(), SNESGetNPC()
331937ec4e1aSPeter Brune 
332037ec4e1aSPeter Brune @*/
332137ec4e1aSPeter Brune PetscErrorCode  SNESSetLagPreconditionerPersists(SNES snes,PetscBool flg)
332237ec4e1aSPeter Brune {
332337ec4e1aSPeter Brune   PetscFunctionBegin;
332437ec4e1aSPeter Brune   PetscValidHeaderSpecific(snes,SNES_CLASSID,1);
332537ec4e1aSPeter Brune   PetscValidLogicalCollectiveBool(snes,flg,2);
332637ec4e1aSPeter Brune   snes->lagpre_persist = flg;
332737ec4e1aSPeter Brune   PetscFunctionReturn(0);
332837ec4e1aSPeter Brune }
332937ec4e1aSPeter Brune 
33309b94acceSBarry Smith /*@
3331be5caee7SBarry Smith    SNESSetForceIteration - force SNESSolve() to take at least one iteration regardless of the initial residual norm
3332be5caee7SBarry Smith 
3333be5caee7SBarry Smith    Logically Collective on SNES
3334be5caee7SBarry Smith 
3335be5caee7SBarry Smith    Input Parameters:
3336be5caee7SBarry Smith +  snes - the SNES context
3337be5caee7SBarry Smith -  force - PETSC_TRUE require at least one iteration
3338be5caee7SBarry Smith 
3339be5caee7SBarry Smith    Options Database Keys:
3340be5caee7SBarry Smith .    -snes_force_iteration <force> - Sets forcing an iteration
3341be5caee7SBarry Smith 
3342be5caee7SBarry Smith    Notes:
3343be5caee7SBarry Smith    This is used sometimes with TS to prevent TS from detecting a false steady state solution
3344be5caee7SBarry Smith 
3345be5caee7SBarry Smith    Level: intermediate
3346be5caee7SBarry Smith 
3347be5caee7SBarry Smith .keywords: SNES, nonlinear, set, convergence, tolerances
3348be5caee7SBarry Smith 
3349be5caee7SBarry Smith .seealso: SNESSetTrustRegionTolerance(), SNESSetDivergenceTolerance()
3350be5caee7SBarry Smith @*/
3351be5caee7SBarry Smith PetscErrorCode  SNESSetForceIteration(SNES snes,PetscBool force)
3352be5caee7SBarry Smith {
3353be5caee7SBarry Smith   PetscFunctionBegin;
3354be5caee7SBarry Smith   PetscValidHeaderSpecific(snes,SNES_CLASSID,1);
3355be5caee7SBarry Smith   snes->forceiteration = force;
3356be5caee7SBarry Smith   PetscFunctionReturn(0);
3357be5caee7SBarry Smith }
3358be5caee7SBarry Smith 
335985216dc7SFande Kong /*@
336085216dc7SFande Kong    SNESGetForceIteration - Whether or not to force SNESSolve() take at least one iteration regardless of the initial residual norm
336185216dc7SFande Kong 
336285216dc7SFande Kong    Logically Collective on SNES
336385216dc7SFande Kong 
336485216dc7SFande Kong    Input Parameters:
336585216dc7SFande Kong .  snes - the SNES context
336685216dc7SFande Kong 
336785216dc7SFande Kong    Output Parameter:
336885216dc7SFande Kong .  force - PETSC_TRUE requires at least one iteration.
336985216dc7SFande Kong 
337085216dc7SFande Kong .keywords: SNES, nonlinear, set, convergence, tolerances
337185216dc7SFande Kong 
337285216dc7SFande Kong .seealso: SNESSetForceIteration(), SNESSetTrustRegionTolerance(), SNESSetDivergenceTolerance()
337385216dc7SFande Kong @*/
337485216dc7SFande Kong PetscErrorCode  SNESGetForceIteration(SNES snes,PetscBool *force)
337585216dc7SFande Kong {
337685216dc7SFande Kong   PetscFunctionBegin;
337785216dc7SFande Kong   PetscValidHeaderSpecific(snes,SNES_CLASSID,1);
337885216dc7SFande Kong   *force = snes->forceiteration;
337985216dc7SFande Kong   PetscFunctionReturn(0);
338085216dc7SFande Kong }
3381be5caee7SBarry Smith 
3382be5caee7SBarry Smith /*@
3383d7a720efSLois Curfman McInnes    SNESSetTolerances - Sets various parameters used in convergence tests.
33849b94acceSBarry Smith 
33853f9fe445SBarry Smith    Logically Collective on SNES
3386c7afd0dbSLois Curfman McInnes 
33879b94acceSBarry Smith    Input Parameters:
3388c7afd0dbSLois Curfman McInnes +  snes - the SNES context
338970441072SBarry Smith .  abstol - absolute convergence tolerance
339033174efeSLois Curfman McInnes .  rtol - relative convergence tolerance
33915358d0d4SBarry Smith .  stol -  convergence tolerance in terms of the norm of the change in the solution between steps,  || delta x || < stol*|| x ||
339233174efeSLois Curfman McInnes .  maxit - maximum number of iterations
3393c7afd0dbSLois Curfman McInnes -  maxf - maximum number of function evaluations
3394fee21e36SBarry Smith 
339533174efeSLois Curfman McInnes    Options Database Keys:
339670441072SBarry Smith +    -snes_atol <abstol> - Sets abstol
3397c7afd0dbSLois Curfman McInnes .    -snes_rtol <rtol> - Sets rtol
3398c7afd0dbSLois Curfman McInnes .    -snes_stol <stol> - Sets stol
3399c7afd0dbSLois Curfman McInnes .    -snes_max_it <maxit> - Sets maxit
3400c7afd0dbSLois Curfman McInnes -    -snes_max_funcs <maxf> - Sets maxf
34019b94acceSBarry Smith 
3402d7a720efSLois Curfman McInnes    Notes:
34039b94acceSBarry Smith    The default maximum number of iterations is 50.
34049b94acceSBarry Smith    The default maximum number of function evaluations is 1000.
34059b94acceSBarry Smith 
340636851e7fSLois Curfman McInnes    Level: intermediate
340736851e7fSLois Curfman McInnes 
340833174efeSLois Curfman McInnes .keywords: SNES, nonlinear, set, convergence, tolerances
34099b94acceSBarry Smith 
3410be5caee7SBarry Smith .seealso: SNESSetTrustRegionTolerance(), SNESSetDivergenceTolerance(), SNESSetForceIteration()
34119b94acceSBarry Smith @*/
34127087cfbeSBarry Smith PetscErrorCode  SNESSetTolerances(SNES snes,PetscReal abstol,PetscReal rtol,PetscReal stol,PetscInt maxit,PetscInt maxf)
34139b94acceSBarry Smith {
34143a40ed3dSBarry Smith   PetscFunctionBegin;
34150700a824SBarry Smith   PetscValidHeaderSpecific(snes,SNES_CLASSID,1);
3416c5eb9154SBarry Smith   PetscValidLogicalCollectiveReal(snes,abstol,2);
3417c5eb9154SBarry Smith   PetscValidLogicalCollectiveReal(snes,rtol,3);
3418c5eb9154SBarry Smith   PetscValidLogicalCollectiveReal(snes,stol,4);
3419c5eb9154SBarry Smith   PetscValidLogicalCollectiveInt(snes,maxit,5);
3420c5eb9154SBarry Smith   PetscValidLogicalCollectiveInt(snes,maxf,6);
3421c5eb9154SBarry Smith 
3422ab54825eSJed Brown   if (abstol != PETSC_DEFAULT) {
342357622a8eSBarry Smith     if (abstol < 0.0) SETERRQ1(PetscObjectComm((PetscObject)snes),PETSC_ERR_ARG_OUTOFRANGE,"Absolute tolerance %g must be non-negative",(double)abstol);
3424ab54825eSJed Brown     snes->abstol = abstol;
3425ab54825eSJed Brown   }
3426ab54825eSJed Brown   if (rtol != PETSC_DEFAULT) {
342757622a8eSBarry Smith     if (rtol < 0.0 || 1.0 <= rtol) SETERRQ1(PetscObjectComm((PetscObject)snes),PETSC_ERR_ARG_OUTOFRANGE,"Relative tolerance %g must be non-negative and less than 1.0",(double)rtol);
3428ab54825eSJed Brown     snes->rtol = rtol;
3429ab54825eSJed Brown   }
3430ab54825eSJed Brown   if (stol != PETSC_DEFAULT) {
343157622a8eSBarry Smith     if (stol < 0.0) SETERRQ1(PetscObjectComm((PetscObject)snes),PETSC_ERR_ARG_OUTOFRANGE,"Step tolerance %g must be non-negative",(double)stol);
3432c60f73f4SPeter Brune     snes->stol = stol;
3433ab54825eSJed Brown   }
3434ab54825eSJed Brown   if (maxit != PETSC_DEFAULT) {
3435ce94432eSBarry Smith     if (maxit < 0) SETERRQ1(PetscObjectComm((PetscObject)snes),PETSC_ERR_ARG_OUTOFRANGE,"Maximum number of iterations %D must be non-negative",maxit);
3436ab54825eSJed Brown     snes->max_its = maxit;
3437ab54825eSJed Brown   }
3438ab54825eSJed Brown   if (maxf != PETSC_DEFAULT) {
3439ce94432eSBarry Smith     if (maxf < 0) SETERRQ1(PetscObjectComm((PetscObject)snes),PETSC_ERR_ARG_OUTOFRANGE,"Maximum number of function evaluations %D must be non-negative",maxf);
3440ab54825eSJed Brown     snes->max_funcs = maxf;
3441ab54825eSJed Brown   }
344288976e71SPeter Brune   snes->tolerancesset = PETSC_TRUE;
34433a40ed3dSBarry Smith   PetscFunctionReturn(0);
34449b94acceSBarry Smith }
34459b94acceSBarry Smith 
3446e4d06f11SPatrick Farrell /*@
3447e4d06f11SPatrick Farrell    SNESSetDivergenceTolerance - Sets the divergence tolerance used for the SNES divergence test.
3448e4d06f11SPatrick Farrell 
3449e4d06f11SPatrick Farrell    Logically Collective on SNES
3450e4d06f11SPatrick Farrell 
3451e4d06f11SPatrick Farrell    Input Parameters:
3452e4d06f11SPatrick Farrell +  snes - the SNES context
3453e4d06f11SPatrick Farrell -  divtol - the divergence tolerance. Use -1 to deactivate the test.
3454e4d06f11SPatrick Farrell 
3455e4d06f11SPatrick Farrell    Options Database Keys:
3456e4d06f11SPatrick Farrell +    -snes_divergence_tolerance <divtol> - Sets divtol
3457e4d06f11SPatrick Farrell 
3458e4d06f11SPatrick Farrell    Notes:
3459e4d06f11SPatrick Farrell    The default divergence tolerance is 1e4.
3460e4d06f11SPatrick Farrell 
3461e4d06f11SPatrick Farrell    Level: intermediate
3462e4d06f11SPatrick Farrell 
3463e4d06f11SPatrick Farrell .keywords: SNES, nonlinear, set, divergence, tolerance
3464e4d06f11SPatrick Farrell 
3465e4d06f11SPatrick Farrell .seealso: SNESSetTolerances(), SNESGetDivergenceTolerance
3466e4d06f11SPatrick Farrell @*/
3467e4d06f11SPatrick Farrell PetscErrorCode  SNESSetDivergenceTolerance(SNES snes,PetscReal divtol)
3468e4d06f11SPatrick Farrell {
3469e4d06f11SPatrick Farrell   PetscFunctionBegin;
3470e4d06f11SPatrick Farrell   PetscValidHeaderSpecific(snes,SNES_CLASSID,1);
3471e4d06f11SPatrick Farrell   PetscValidLogicalCollectiveReal(snes,divtol,2);
3472e4d06f11SPatrick Farrell 
3473e4d06f11SPatrick Farrell   if (divtol != PETSC_DEFAULT) {
3474e4d06f11SPatrick Farrell     snes->divtol = divtol;
3475e4d06f11SPatrick Farrell   }
3476e4d06f11SPatrick Farrell   else {
3477e4d06f11SPatrick Farrell     snes->divtol = 1.0e4;
3478e4d06f11SPatrick Farrell   }
3479e4d06f11SPatrick Farrell   PetscFunctionReturn(0);
3480e4d06f11SPatrick Farrell }
3481e4d06f11SPatrick Farrell 
34829b94acceSBarry Smith /*@
348333174efeSLois Curfman McInnes    SNESGetTolerances - Gets various parameters used in convergence tests.
348433174efeSLois Curfman McInnes 
3485c7afd0dbSLois Curfman McInnes    Not Collective
3486c7afd0dbSLois Curfman McInnes 
348733174efeSLois Curfman McInnes    Input Parameters:
3488c7afd0dbSLois Curfman McInnes +  snes - the SNES context
348985385478SLisandro Dalcin .  atol - absolute convergence tolerance
349033174efeSLois Curfman McInnes .  rtol - relative convergence tolerance
349133174efeSLois Curfman McInnes .  stol -  convergence tolerance in terms of the norm
349233174efeSLois Curfman McInnes            of the change in the solution between steps
349333174efeSLois Curfman McInnes .  maxit - maximum number of iterations
3494c7afd0dbSLois Curfman McInnes -  maxf - maximum number of function evaluations
3495fee21e36SBarry Smith 
349633174efeSLois Curfman McInnes    Notes:
34970298fd71SBarry Smith    The user can specify NULL for any parameter that is not needed.
349833174efeSLois Curfman McInnes 
349936851e7fSLois Curfman McInnes    Level: intermediate
350036851e7fSLois Curfman McInnes 
350133174efeSLois Curfman McInnes .keywords: SNES, nonlinear, get, convergence, tolerances
350233174efeSLois Curfman McInnes 
350333174efeSLois Curfman McInnes .seealso: SNESSetTolerances()
350433174efeSLois Curfman McInnes @*/
35057087cfbeSBarry Smith PetscErrorCode  SNESGetTolerances(SNES snes,PetscReal *atol,PetscReal *rtol,PetscReal *stol,PetscInt *maxit,PetscInt *maxf)
350633174efeSLois Curfman McInnes {
35073a40ed3dSBarry Smith   PetscFunctionBegin;
35080700a824SBarry Smith   PetscValidHeaderSpecific(snes,SNES_CLASSID,1);
350985385478SLisandro Dalcin   if (atol)  *atol  = snes->abstol;
351033174efeSLois Curfman McInnes   if (rtol)  *rtol  = snes->rtol;
3511c60f73f4SPeter Brune   if (stol)  *stol  = snes->stol;
351233174efeSLois Curfman McInnes   if (maxit) *maxit = snes->max_its;
351333174efeSLois Curfman McInnes   if (maxf)  *maxf  = snes->max_funcs;
35143a40ed3dSBarry Smith   PetscFunctionReturn(0);
351533174efeSLois Curfman McInnes }
351633174efeSLois Curfman McInnes 
3517e4d06f11SPatrick Farrell /*@
3518e4d06f11SPatrick Farrell    SNESGetDivergenceTolerance - Gets divergence tolerance used in divergence test.
3519e4d06f11SPatrick Farrell 
3520e4d06f11SPatrick Farrell    Not Collective
3521e4d06f11SPatrick Farrell 
3522e4d06f11SPatrick Farrell    Input Parameters:
3523e4d06f11SPatrick Farrell +  snes - the SNES context
3524e4d06f11SPatrick Farrell -  divtol - divergence tolerance
3525e4d06f11SPatrick Farrell 
3526e4d06f11SPatrick Farrell    Level: intermediate
3527e4d06f11SPatrick Farrell 
3528e4d06f11SPatrick Farrell .keywords: SNES, nonlinear, get, divergence, tolerance
3529e4d06f11SPatrick Farrell 
3530e4d06f11SPatrick Farrell .seealso: SNESSetDivergenceTolerance()
3531e4d06f11SPatrick Farrell @*/
3532e4d06f11SPatrick Farrell PetscErrorCode  SNESGetDivergenceTolerance(SNES snes,PetscReal *divtol)
3533e4d06f11SPatrick Farrell {
3534e4d06f11SPatrick Farrell   PetscFunctionBegin;
3535e4d06f11SPatrick Farrell   PetscValidHeaderSpecific(snes,SNES_CLASSID,1);
3536e4d06f11SPatrick Farrell   if (divtol) *divtol = snes->divtol;
3537e4d06f11SPatrick Farrell   PetscFunctionReturn(0);
3538e4d06f11SPatrick Farrell }
3539e4d06f11SPatrick Farrell 
354033174efeSLois Curfman McInnes /*@
35419b94acceSBarry Smith    SNESSetTrustRegionTolerance - Sets the trust region parameter tolerance.
35429b94acceSBarry Smith 
35433f9fe445SBarry Smith    Logically Collective on SNES
3544fee21e36SBarry Smith 
3545c7afd0dbSLois Curfman McInnes    Input Parameters:
3546c7afd0dbSLois Curfman McInnes +  snes - the SNES context
3547c7afd0dbSLois Curfman McInnes -  tol - tolerance
3548c7afd0dbSLois Curfman McInnes 
35499b94acceSBarry Smith    Options Database Key:
3550c7afd0dbSLois Curfman McInnes .  -snes_trtol <tol> - Sets tol
35519b94acceSBarry Smith 
355236851e7fSLois Curfman McInnes    Level: intermediate
355336851e7fSLois Curfman McInnes 
35549b94acceSBarry Smith .keywords: SNES, nonlinear, set, trust region, tolerance
35559b94acceSBarry Smith 
35562492ecdbSBarry Smith .seealso: SNESSetTolerances()
35579b94acceSBarry Smith @*/
35587087cfbeSBarry Smith PetscErrorCode  SNESSetTrustRegionTolerance(SNES snes,PetscReal tol)
35599b94acceSBarry Smith {
35603a40ed3dSBarry Smith   PetscFunctionBegin;
35610700a824SBarry Smith   PetscValidHeaderSpecific(snes,SNES_CLASSID,1);
3562c5eb9154SBarry Smith   PetscValidLogicalCollectiveReal(snes,tol,2);
35639b94acceSBarry Smith   snes->deltatol = tol;
35643a40ed3dSBarry Smith   PetscFunctionReturn(0);
35659b94acceSBarry Smith }
35669b94acceSBarry Smith 
3567df9fa365SBarry Smith /*
3568df9fa365SBarry Smith    Duplicate the lg monitors for SNES from KSP; for some reason with
3569df9fa365SBarry Smith    dynamic libraries things don't work under Sun4 if we just use
3570df9fa365SBarry Smith    macros instead of functions
3571df9fa365SBarry Smith */
3572d96771aaSLisandro Dalcin PetscErrorCode  SNESMonitorLGResidualNorm(SNES snes,PetscInt it,PetscReal norm,void *ctx)
3573ce1608b8SBarry Smith {
3574dfbe8321SBarry Smith   PetscErrorCode ierr;
3575ce1608b8SBarry Smith 
3576ce1608b8SBarry Smith   PetscFunctionBegin;
35770700a824SBarry Smith   PetscValidHeaderSpecific(snes,SNES_CLASSID,1);
3578d96771aaSLisandro Dalcin   ierr = KSPMonitorLGResidualNorm((KSP)snes,it,norm,ctx);CHKERRQ(ierr);
3579ce1608b8SBarry Smith   PetscFunctionReturn(0);
3580ce1608b8SBarry Smith }
3581ce1608b8SBarry Smith 
3582d96771aaSLisandro Dalcin PetscErrorCode  SNESMonitorLGCreate(MPI_Comm comm,const char host[],const char label[],int x,int y,int m,int n,PetscDrawLG *lgctx)
3583df9fa365SBarry Smith {
3584dfbe8321SBarry Smith   PetscErrorCode ierr;
3585df9fa365SBarry Smith 
3586df9fa365SBarry Smith   PetscFunctionBegin;
3587d96771aaSLisandro Dalcin   ierr = KSPMonitorLGResidualNormCreate(comm,host,label,x,y,m,n,lgctx);CHKERRQ(ierr);
3588df9fa365SBarry Smith   PetscFunctionReturn(0);
3589df9fa365SBarry Smith }
3590df9fa365SBarry Smith 
35916ba87a44SLisandro Dalcin PETSC_INTERN PetscErrorCode  SNESMonitorRange_Private(SNES,PetscInt,PetscReal*);
35926ba87a44SLisandro Dalcin 
35937087cfbeSBarry Smith PetscErrorCode  SNESMonitorLGRange(SNES snes,PetscInt n,PetscReal rnorm,void *monctx)
3594b271bb04SBarry Smith {
3595b271bb04SBarry Smith   PetscDrawLG      lg;
3596b271bb04SBarry Smith   PetscErrorCode   ierr;
3597b271bb04SBarry Smith   PetscReal        x,y,per;
3598b271bb04SBarry Smith   PetscViewer      v = (PetscViewer)monctx;
3599b271bb04SBarry Smith   static PetscReal prev; /* should be in the context */
3600b271bb04SBarry Smith   PetscDraw        draw;
3601b271bb04SBarry Smith 
3602459f5d12SBarry Smith   PetscFunctionBegin;
36034d4332d5SBarry Smith   PetscValidHeaderSpecific(v,PETSC_VIEWER_CLASSID,4);
3604b271bb04SBarry Smith   ierr = PetscViewerDrawGetDrawLG(v,0,&lg);CHKERRQ(ierr);
3605b271bb04SBarry Smith   if (!n) {ierr = PetscDrawLGReset(lg);CHKERRQ(ierr);}
3606b271bb04SBarry Smith   ierr = PetscDrawLGGetDraw(lg,&draw);CHKERRQ(ierr);
3607b271bb04SBarry Smith   ierr = PetscDrawSetTitle(draw,"Residual norm");CHKERRQ(ierr);
3608b271bb04SBarry Smith   x    = (PetscReal)n;
360977b4d14cSPeter Brune   if (rnorm > 0.0) y = PetscLog10Real(rnorm);
361094c9c6d3SKarl Rupp   else y = -15.0;
3611b271bb04SBarry Smith   ierr = PetscDrawLGAddPoint(lg,&x,&y);CHKERRQ(ierr);
36126934998bSLisandro Dalcin   if (n < 20 || !(n % 5) || snes->reason) {
3613b271bb04SBarry Smith     ierr = PetscDrawLGDraw(lg);CHKERRQ(ierr);
36146934998bSLisandro Dalcin     ierr = PetscDrawLGSave(lg);CHKERRQ(ierr);
3615b271bb04SBarry Smith   }
3616b271bb04SBarry Smith 
3617b271bb04SBarry Smith   ierr = PetscViewerDrawGetDrawLG(v,1,&lg);CHKERRQ(ierr);
3618b271bb04SBarry Smith   if (!n) {ierr = PetscDrawLGReset(lg);CHKERRQ(ierr);}
3619b271bb04SBarry Smith   ierr = PetscDrawLGGetDraw(lg,&draw);CHKERRQ(ierr);
3620b271bb04SBarry Smith   ierr = PetscDrawSetTitle(draw,"% elemts > .2*max elemt");CHKERRQ(ierr);
3621b271bb04SBarry Smith   ierr =  SNESMonitorRange_Private(snes,n,&per);CHKERRQ(ierr);
3622b271bb04SBarry Smith   x    = (PetscReal)n;
3623b271bb04SBarry Smith   y    = 100.0*per;
3624b271bb04SBarry Smith   ierr = PetscDrawLGAddPoint(lg,&x,&y);CHKERRQ(ierr);
36256934998bSLisandro Dalcin   if (n < 20 || !(n % 5) || snes->reason) {
3626b271bb04SBarry Smith     ierr = PetscDrawLGDraw(lg);CHKERRQ(ierr);
36276934998bSLisandro Dalcin     ierr = PetscDrawLGSave(lg);CHKERRQ(ierr);
3628b271bb04SBarry Smith   }
3629b271bb04SBarry Smith 
3630b271bb04SBarry Smith   ierr = PetscViewerDrawGetDrawLG(v,2,&lg);CHKERRQ(ierr);
3631b271bb04SBarry Smith   if (!n) {prev = rnorm;ierr = PetscDrawLGReset(lg);CHKERRQ(ierr);}
3632b271bb04SBarry Smith   ierr = PetscDrawLGGetDraw(lg,&draw);CHKERRQ(ierr);
3633b271bb04SBarry Smith   ierr = PetscDrawSetTitle(draw,"(norm -oldnorm)/oldnorm");CHKERRQ(ierr);
3634b271bb04SBarry Smith   x    = (PetscReal)n;
3635b271bb04SBarry Smith   y    = (prev - rnorm)/prev;
3636b271bb04SBarry Smith   ierr = PetscDrawLGAddPoint(lg,&x,&y);CHKERRQ(ierr);
36376934998bSLisandro Dalcin   if (n < 20 || !(n % 5) || snes->reason) {
3638b271bb04SBarry Smith     ierr = PetscDrawLGDraw(lg);CHKERRQ(ierr);
36396934998bSLisandro Dalcin     ierr = PetscDrawLGSave(lg);CHKERRQ(ierr);
3640b271bb04SBarry Smith   }
3641b271bb04SBarry Smith 
3642b271bb04SBarry Smith   ierr = PetscViewerDrawGetDrawLG(v,3,&lg);CHKERRQ(ierr);
3643b271bb04SBarry Smith   if (!n) {ierr = PetscDrawLGReset(lg);CHKERRQ(ierr);}
3644b271bb04SBarry Smith   ierr = PetscDrawLGGetDraw(lg,&draw);CHKERRQ(ierr);
3645b271bb04SBarry Smith   ierr = PetscDrawSetTitle(draw,"(norm -oldnorm)/oldnorm*(% > .2 max)");CHKERRQ(ierr);
3646b271bb04SBarry Smith   x    = (PetscReal)n;
3647b271bb04SBarry Smith   y    = (prev - rnorm)/(prev*per);
3648b271bb04SBarry Smith   if (n > 2) { /*skip initial crazy value */
3649b271bb04SBarry Smith     ierr = PetscDrawLGAddPoint(lg,&x,&y);CHKERRQ(ierr);
3650b271bb04SBarry Smith   }
36516934998bSLisandro Dalcin   if (n < 20 || !(n % 5) || snes->reason) {
3652b271bb04SBarry Smith     ierr = PetscDrawLGDraw(lg);CHKERRQ(ierr);
36536934998bSLisandro Dalcin     ierr = PetscDrawLGSave(lg);CHKERRQ(ierr);
3654b271bb04SBarry Smith   }
3655b271bb04SBarry Smith   prev = rnorm;
3656b271bb04SBarry Smith   PetscFunctionReturn(0);
3657b271bb04SBarry Smith }
3658b271bb04SBarry Smith 
3659228d79bcSJed Brown /*@
3660228d79bcSJed Brown    SNESMonitor - runs the user provided monitor routines, if they exist
3661228d79bcSJed Brown 
3662228d79bcSJed Brown    Collective on SNES
3663228d79bcSJed Brown 
3664228d79bcSJed Brown    Input Parameters:
3665228d79bcSJed Brown +  snes - nonlinear solver context obtained from SNESCreate()
3666228d79bcSJed Brown .  iter - iteration number
3667228d79bcSJed Brown -  rnorm - relative norm of the residual
3668228d79bcSJed Brown 
3669228d79bcSJed Brown    Notes:
3670228d79bcSJed Brown    This routine is called by the SNES implementations.
3671228d79bcSJed Brown    It does not typically need to be called by the user.
3672228d79bcSJed Brown 
3673228d79bcSJed Brown    Level: developer
3674228d79bcSJed Brown 
3675228d79bcSJed Brown .seealso: SNESMonitorSet()
3676228d79bcSJed Brown @*/
36777a03ce2fSLisandro Dalcin PetscErrorCode  SNESMonitor(SNES snes,PetscInt iter,PetscReal rnorm)
36787a03ce2fSLisandro Dalcin {
36797a03ce2fSLisandro Dalcin   PetscErrorCode ierr;
36807a03ce2fSLisandro Dalcin   PetscInt       i,n = snes->numbermonitors;
36817a03ce2fSLisandro Dalcin 
36827a03ce2fSLisandro Dalcin   PetscFunctionBegin;
36835edff71fSBarry Smith   ierr = VecLockPush(snes->vec_sol);CHKERRQ(ierr);
36847a03ce2fSLisandro Dalcin   for (i=0; i<n; i++) {
36857a03ce2fSLisandro Dalcin     ierr = (*snes->monitor[i])(snes,iter,rnorm,snes->monitorcontext[i]);CHKERRQ(ierr);
36867a03ce2fSLisandro Dalcin   }
36875edff71fSBarry Smith   ierr = VecLockPop(snes->vec_sol);CHKERRQ(ierr);
36887a03ce2fSLisandro Dalcin   PetscFunctionReturn(0);
36897a03ce2fSLisandro Dalcin }
36907a03ce2fSLisandro Dalcin 
36919b94acceSBarry Smith /* ------------ Routines to set performance monitoring options ----------- */
36929b94acceSBarry Smith 
3693bf388a1fSBarry Smith /*MC
3694bf388a1fSBarry Smith     SNESMonitorFunction - functional form passed to SNESMonitorSet() to monitor convergence of nonlinear solver
3695bf388a1fSBarry Smith 
3696bf388a1fSBarry Smith      Synopsis:
3697aaa7dc30SBarry Smith      #include <petscsnes.h>
3698bf388a1fSBarry Smith $    PetscErrorCode SNESMonitorFunction(SNES snes,PetscInt its, PetscReal norm,void *mctx)
3699bf388a1fSBarry Smith 
3700bf388a1fSBarry Smith +    snes - the SNES context
3701bf388a1fSBarry Smith .    its - iteration number
3702bf388a1fSBarry Smith .    norm - 2-norm function value (may be estimated)
3703bf388a1fSBarry Smith -    mctx - [optional] monitoring context
3704bf388a1fSBarry Smith 
3705878cb397SSatish Balay    Level: advanced
3706878cb397SSatish Balay 
3707bf388a1fSBarry Smith .seealso:   SNESMonitorSet(), SNESMonitorGet()
3708bf388a1fSBarry Smith M*/
3709bf388a1fSBarry Smith 
37109b94acceSBarry Smith /*@C
3711a6570f20SBarry Smith    SNESMonitorSet - Sets an ADDITIONAL function that is to be used at every
37129b94acceSBarry Smith    iteration of the nonlinear solver to display the iteration's
37139b94acceSBarry Smith    progress.
37149b94acceSBarry Smith 
37153f9fe445SBarry Smith    Logically Collective on SNES
3716fee21e36SBarry Smith 
3717c7afd0dbSLois Curfman McInnes    Input Parameters:
3718c7afd0dbSLois Curfman McInnes +  snes - the SNES context
37196e4dcb14SBarry Smith .  f - the monitor function, see SNESMonitorFunction for the calling sequence
3720b8a78c4aSBarry Smith .  mctx - [optional] user-defined context for private data for the
37210298fd71SBarry Smith           monitor routine (use NULL if no context is desired)
3722b3006f0bSLois Curfman McInnes -  monitordestroy - [optional] routine that frees monitor context
37230298fd71SBarry Smith           (may be NULL)
37249b94acceSBarry Smith 
37259665c990SLois Curfman McInnes    Options Database Keys:
3726a6570f20SBarry Smith +    -snes_monitor        - sets SNESMonitorDefault()
37274619e776SBarry Smith .    -snes_monitor_lg_residualnorm    - sets line graph monitor,
3728a6570f20SBarry Smith                             uses SNESMonitorLGCreate()
3729cca6129bSJed Brown -    -snes_monitor_cancel - cancels all monitors that have
3730c7afd0dbSLois Curfman McInnes                             been hardwired into a code by
3731a6570f20SBarry Smith                             calls to SNESMonitorSet(), but
3732c7afd0dbSLois Curfman McInnes                             does not cancel those set via
3733c7afd0dbSLois Curfman McInnes                             the options database.
37349665c990SLois Curfman McInnes 
3735639f9d9dSBarry Smith    Notes:
37366bc08f3fSLois Curfman McInnes    Several different monitoring routines may be set by calling
3737a6570f20SBarry Smith    SNESMonitorSet() multiple times; all will be called in the
37386bc08f3fSLois Curfman McInnes    order in which they were set.
3739639f9d9dSBarry Smith 
3740025f1a04SBarry Smith    Fortran notes: Only a single monitor function can be set for each SNES object
3741025f1a04SBarry Smith 
374236851e7fSLois Curfman McInnes    Level: intermediate
374336851e7fSLois Curfman McInnes 
37449b94acceSBarry Smith .keywords: SNES, nonlinear, set, monitor
37459b94acceSBarry Smith 
3746bf388a1fSBarry Smith .seealso: SNESMonitorDefault(), SNESMonitorCancel(), SNESMonitorFunction
37479b94acceSBarry Smith @*/
37486e4dcb14SBarry Smith PetscErrorCode  SNESMonitorSet(SNES snes,PetscErrorCode (*f)(SNES,PetscInt,PetscReal,void*),void *mctx,PetscErrorCode (*monitordestroy)(void**))
37499b94acceSBarry Smith {
3750b90d0a6eSBarry Smith   PetscInt       i;
3751649052a6SBarry Smith   PetscErrorCode ierr;
375278064530SBarry Smith   PetscBool      identical;
3753b90d0a6eSBarry Smith 
37543a40ed3dSBarry Smith   PetscFunctionBegin;
37550700a824SBarry Smith   PetscValidHeaderSpecific(snes,SNES_CLASSID,1);
3756b90d0a6eSBarry Smith   for (i=0; i<snes->numbermonitors;i++) {
375778064530SBarry Smith     ierr = PetscMonitorCompare((PetscErrorCode (*)(void))f,mctx,monitordestroy,(PetscErrorCode (*)(void))snes->monitor[i],snes->monitorcontext[i],snes->monitordestroy[i],&identical);CHKERRQ(ierr);
375878064530SBarry Smith     if (identical) PetscFunctionReturn(0);
3759649052a6SBarry Smith   }
376078064530SBarry Smith   if (snes->numbermonitors >= MAXSNESMONITORS) SETERRQ(PETSC_COMM_SELF,PETSC_ERR_ARG_OUTOFRANGE,"Too many monitors set");
37616e4dcb14SBarry Smith   snes->monitor[snes->numbermonitors]          = f;
3762b8a78c4aSBarry Smith   snes->monitordestroy[snes->numbermonitors]   = monitordestroy;
3763639f9d9dSBarry Smith   snes->monitorcontext[snes->numbermonitors++] = (void*)mctx;
37643a40ed3dSBarry Smith   PetscFunctionReturn(0);
37659b94acceSBarry Smith }
37669b94acceSBarry Smith 
3767a278d85bSSatish Balay /*@
3768a6570f20SBarry Smith    SNESMonitorCancel - Clears all the monitor functions for a SNES object.
37695cd90555SBarry Smith 
37703f9fe445SBarry Smith    Logically Collective on SNES
3771c7afd0dbSLois Curfman McInnes 
37725cd90555SBarry Smith    Input Parameters:
37735cd90555SBarry Smith .  snes - the SNES context
37745cd90555SBarry Smith 
37751a480d89SAdministrator    Options Database Key:
3776a6570f20SBarry Smith .  -snes_monitor_cancel - cancels all monitors that have been hardwired
3777a6570f20SBarry Smith     into a code by calls to SNESMonitorSet(), but does not cancel those
3778c7afd0dbSLois Curfman McInnes     set via the options database
37795cd90555SBarry Smith 
37805cd90555SBarry Smith    Notes:
37815cd90555SBarry Smith    There is no way to clear one specific monitor from a SNES object.
37825cd90555SBarry Smith 
378336851e7fSLois Curfman McInnes    Level: intermediate
378436851e7fSLois Curfman McInnes 
37855cd90555SBarry Smith .keywords: SNES, nonlinear, set, monitor
37865cd90555SBarry Smith 
3787a6570f20SBarry Smith .seealso: SNESMonitorDefault(), SNESMonitorSet()
37885cd90555SBarry Smith @*/
37897087cfbeSBarry Smith PetscErrorCode  SNESMonitorCancel(SNES snes)
37905cd90555SBarry Smith {
3791d952e501SBarry Smith   PetscErrorCode ierr;
3792d952e501SBarry Smith   PetscInt       i;
3793d952e501SBarry Smith 
37945cd90555SBarry Smith   PetscFunctionBegin;
37950700a824SBarry Smith   PetscValidHeaderSpecific(snes,SNES_CLASSID,1);
3796d952e501SBarry Smith   for (i=0; i<snes->numbermonitors; i++) {
3797d952e501SBarry Smith     if (snes->monitordestroy[i]) {
37983c4aec1bSBarry Smith       ierr = (*snes->monitordestroy[i])(&snes->monitorcontext[i]);CHKERRQ(ierr);
3799d952e501SBarry Smith     }
3800d952e501SBarry Smith   }
38015cd90555SBarry Smith   snes->numbermonitors = 0;
38025cd90555SBarry Smith   PetscFunctionReturn(0);
38035cd90555SBarry Smith }
38045cd90555SBarry Smith 
3805bf388a1fSBarry Smith /*MC
3806bf388a1fSBarry Smith     SNESConvergenceTestFunction - functional form used for testing of convergence of nonlinear solver
3807bf388a1fSBarry Smith 
3808bf388a1fSBarry Smith      Synopsis:
3809aaa7dc30SBarry Smith      #include <petscsnes.h>
3810bf388a1fSBarry Smith $     PetscErrorCode SNESConvergenceTest(SNES snes,PetscInt it,PetscReal xnorm,PetscReal gnorm,PetscReal f,SNESConvergedReason *reason,void *cctx)
3811bf388a1fSBarry Smith 
3812bf388a1fSBarry Smith +    snes - the SNES context
3813bf388a1fSBarry Smith .    it - current iteration (0 is the first and is before any Newton step)
3814bf388a1fSBarry Smith .    cctx - [optional] convergence context
3815bf388a1fSBarry Smith .    reason - reason for convergence/divergence
3816bf388a1fSBarry Smith .    xnorm - 2-norm of current iterate
3817bf388a1fSBarry Smith .    gnorm - 2-norm of current step
3818bf388a1fSBarry Smith -    f - 2-norm of function
3819bf388a1fSBarry Smith 
3820878cb397SSatish Balay    Level: intermediate
3821bf388a1fSBarry Smith 
3822bf388a1fSBarry Smith .seealso:   SNESSetConvergenceTest(), SNESGetConvergenceTest()
3823bf388a1fSBarry Smith M*/
3824bf388a1fSBarry Smith 
38259b94acceSBarry Smith /*@C
38269b94acceSBarry Smith    SNESSetConvergenceTest - Sets the function that is to be used
38279b94acceSBarry Smith    to test for convergence of the nonlinear iterative solution.
38289b94acceSBarry Smith 
38293f9fe445SBarry Smith    Logically Collective on SNES
3830fee21e36SBarry Smith 
3831c7afd0dbSLois Curfman McInnes    Input Parameters:
3832c7afd0dbSLois Curfman McInnes +  snes - the SNES context
3833bf388a1fSBarry Smith .  SNESConvergenceTestFunction - routine to test for convergence
38340298fd71SBarry Smith .  cctx - [optional] context for private data for the convergence routine  (may be NULL)
38350298fd71SBarry Smith -  destroy - [optional] destructor for the context (may be NULL; NULL_FUNCTION in Fortran)
38369b94acceSBarry Smith 
383736851e7fSLois Curfman McInnes    Level: advanced
383836851e7fSLois Curfman McInnes 
38399b94acceSBarry Smith .keywords: SNES, nonlinear, set, convergence, test
38409b94acceSBarry Smith 
3841e2a6519dSDmitry Karpeev .seealso: SNESConvergedDefault(), SNESConvergedSkip(), SNESConvergenceTestFunction
38429b94acceSBarry Smith @*/
3843bf388a1fSBarry Smith PetscErrorCode  SNESSetConvergenceTest(SNES snes,PetscErrorCode (*SNESConvergenceTestFunction)(SNES,PetscInt,PetscReal,PetscReal,PetscReal,SNESConvergedReason*,void*),void *cctx,PetscErrorCode (*destroy)(void*))
38449b94acceSBarry Smith {
38457f7931b9SBarry Smith   PetscErrorCode ierr;
38467f7931b9SBarry Smith 
38473a40ed3dSBarry Smith   PetscFunctionBegin;
38480700a824SBarry Smith   PetscValidHeaderSpecific(snes,SNES_CLASSID,1);
3849e2a6519dSDmitry Karpeev   if (!SNESConvergenceTestFunction) SNESConvergenceTestFunction = SNESConvergedSkip;
38507f7931b9SBarry Smith   if (snes->ops->convergeddestroy) {
38517f7931b9SBarry Smith     ierr = (*snes->ops->convergeddestroy)(snes->cnvP);CHKERRQ(ierr);
38527f7931b9SBarry Smith   }
3853bf388a1fSBarry Smith   snes->ops->converged        = SNESConvergenceTestFunction;
38547f7931b9SBarry Smith   snes->ops->convergeddestroy = destroy;
385585385478SLisandro Dalcin   snes->cnvP                  = cctx;
38563a40ed3dSBarry Smith   PetscFunctionReturn(0);
38579b94acceSBarry Smith }
38589b94acceSBarry Smith 
385952baeb72SSatish Balay /*@
3860184914b5SBarry Smith    SNESGetConvergedReason - Gets the reason the SNES iteration was stopped.
3861184914b5SBarry Smith 
3862184914b5SBarry Smith    Not Collective
3863184914b5SBarry Smith 
3864184914b5SBarry Smith    Input Parameter:
3865184914b5SBarry Smith .  snes - the SNES context
3866184914b5SBarry Smith 
3867184914b5SBarry Smith    Output Parameter:
38684d0a8057SBarry Smith .  reason - negative value indicates diverged, positive value converged, see SNESConvergedReason or the
3869184914b5SBarry Smith             manual pages for the individual convergence tests for complete lists
3870184914b5SBarry Smith 
38716a4d7782SBarry Smith    Options Database:
38726a4d7782SBarry Smith .   -snes_converged_reason - prints the reason to standard out
38736a4d7782SBarry Smith 
3874184914b5SBarry Smith    Level: intermediate
3875184914b5SBarry Smith 
38766a4d7782SBarry Smith    Notes: Should only be called after the call the SNESSolve() is complete, if it is called earlier it returns the value SNES__CONVERGED_ITERATING.
3877184914b5SBarry Smith 
3878184914b5SBarry Smith .keywords: SNES, nonlinear, set, convergence, test
3879184914b5SBarry Smith 
388033866048SMatthew G. Knepley .seealso: SNESSetConvergenceTest(), SNESSetConvergedReason(), SNESConvergedReason
3881184914b5SBarry Smith @*/
38827087cfbeSBarry Smith PetscErrorCode SNESGetConvergedReason(SNES snes,SNESConvergedReason *reason)
3883184914b5SBarry Smith {
3884184914b5SBarry Smith   PetscFunctionBegin;
38850700a824SBarry Smith   PetscValidHeaderSpecific(snes,SNES_CLASSID,1);
38864482741eSBarry Smith   PetscValidPointer(reason,2);
3887184914b5SBarry Smith   *reason = snes->reason;
3888184914b5SBarry Smith   PetscFunctionReturn(0);
3889184914b5SBarry Smith }
3890184914b5SBarry Smith 
389133866048SMatthew G. Knepley /*@
389233866048SMatthew G. Knepley    SNESSetConvergedReason - Sets the reason the SNES iteration was stopped.
389333866048SMatthew G. Knepley 
389433866048SMatthew G. Knepley    Not Collective
389533866048SMatthew G. Knepley 
389633866048SMatthew G. Knepley    Input Parameters:
389733866048SMatthew G. Knepley +  snes - the SNES context
389833866048SMatthew G. Knepley -  reason - negative value indicates diverged, positive value converged, see SNESConvergedReason or the
389933866048SMatthew G. Knepley             manual pages for the individual convergence tests for complete lists
390033866048SMatthew G. Knepley 
390133866048SMatthew G. Knepley    Level: intermediate
390233866048SMatthew G. Knepley 
390333866048SMatthew G. Knepley .keywords: SNES, nonlinear, set, convergence, test
390433866048SMatthew G. Knepley .seealso: SNESGetConvergedReason(), SNESSetConvergenceTest(), SNESConvergedReason
390533866048SMatthew G. Knepley @*/
390633866048SMatthew G. Knepley PetscErrorCode SNESSetConvergedReason(SNES snes,SNESConvergedReason reason)
390733866048SMatthew G. Knepley {
390833866048SMatthew G. Knepley   PetscFunctionBegin;
390933866048SMatthew G. Knepley   PetscValidHeaderSpecific(snes,SNES_CLASSID,1);
391033866048SMatthew G. Knepley   snes->reason = reason;
391133866048SMatthew G. Knepley   PetscFunctionReturn(0);
391233866048SMatthew G. Knepley }
391333866048SMatthew G. Knepley 
3914c9005455SLois Curfman McInnes /*@
3915c9005455SLois Curfman McInnes    SNESSetConvergenceHistory - Sets the array used to hold the convergence history.
3916c9005455SLois Curfman McInnes 
39173f9fe445SBarry Smith    Logically Collective on SNES
3918fee21e36SBarry Smith 
3919c7afd0dbSLois Curfman McInnes    Input Parameters:
3920c7afd0dbSLois Curfman McInnes +  snes - iterative context obtained from SNESCreate()
39218c7482ecSBarry Smith .  a   - array to hold history, this array will contain the function norms computed at each step
3922cd5578b5SBarry Smith .  its - integer array holds the number of linear iterations for each solve.
3923758f92a0SBarry Smith .  na  - size of a and its
392464731454SLois Curfman McInnes -  reset - PETSC_TRUE indicates each new nonlinear solve resets the history counter to zero,
3925758f92a0SBarry Smith            else it continues storing new values for new nonlinear solves after the old ones
3926c7afd0dbSLois Curfman McInnes 
3927308dcc3eSBarry Smith    Notes:
39280298fd71SBarry Smith    If 'a' and 'its' are NULL then space is allocated for the history. If 'na' PETSC_DECIDE or PETSC_DEFAULT then a
3929308dcc3eSBarry Smith    default array of length 10000 is allocated.
3930308dcc3eSBarry Smith 
3931c9005455SLois Curfman McInnes    This routine is useful, e.g., when running a code for purposes
3932c9005455SLois Curfman McInnes    of accurate performance monitoring, when no I/O should be done
3933c9005455SLois Curfman McInnes    during the section of code that is being timed.
3934c9005455SLois Curfman McInnes 
393536851e7fSLois Curfman McInnes    Level: intermediate
393636851e7fSLois Curfman McInnes 
3937c9005455SLois Curfman McInnes .keywords: SNES, set, convergence, history
3938758f92a0SBarry Smith 
393908405cd6SLois Curfman McInnes .seealso: SNESGetConvergenceHistory()
3940758f92a0SBarry Smith 
3941c9005455SLois Curfman McInnes @*/
39427087cfbeSBarry Smith PetscErrorCode  SNESSetConvergenceHistory(SNES snes,PetscReal a[],PetscInt its[],PetscInt na,PetscBool reset)
3943c9005455SLois Curfman McInnes {
3944308dcc3eSBarry Smith   PetscErrorCode ierr;
3945308dcc3eSBarry Smith 
39463a40ed3dSBarry Smith   PetscFunctionBegin;
39470700a824SBarry Smith   PetscValidHeaderSpecific(snes,SNES_CLASSID,1);
39487a1ec6d4SBarry Smith   if (a) PetscValidScalarPointer(a,2);
3949a562a398SLisandro Dalcin   if (its) PetscValidIntPointer(its,3);
39507a1ec6d4SBarry Smith   if (!a) {
3951308dcc3eSBarry Smith     if (na == PETSC_DECIDE || na == PETSC_DEFAULT) na = 1000;
39527fdeb8b9SBarry Smith     ierr = PetscCalloc1(na,&a);CHKERRQ(ierr);
39537fdeb8b9SBarry Smith     ierr = PetscCalloc1(na,&its);CHKERRQ(ierr);
3954f5af7f23SKarl Rupp 
3955308dcc3eSBarry Smith     snes->conv_malloc = PETSC_TRUE;
3956308dcc3eSBarry Smith   }
3957c9005455SLois Curfman McInnes   snes->conv_hist       = a;
3958758f92a0SBarry Smith   snes->conv_hist_its   = its;
3959758f92a0SBarry Smith   snes->conv_hist_max   = na;
3960a12bc48fSLisandro Dalcin   snes->conv_hist_len   = 0;
3961758f92a0SBarry Smith   snes->conv_hist_reset = reset;
3962758f92a0SBarry Smith   PetscFunctionReturn(0);
3963758f92a0SBarry Smith }
3964758f92a0SBarry Smith 
3965308dcc3eSBarry Smith #if defined(PETSC_HAVE_MATLAB_ENGINE)
3966c6db04a5SJed Brown #include <engine.h>   /* MATLAB include file */
3967c6db04a5SJed Brown #include <mex.h>      /* MATLAB include file */
396899e0435eSBarry Smith 
39698cc058d9SJed Brown PETSC_EXTERN mxArray *SNESGetConvergenceHistoryMatlab(SNES snes)
3970308dcc3eSBarry Smith {
3971308dcc3eSBarry Smith   mxArray   *mat;
3972308dcc3eSBarry Smith   PetscInt  i;
3973308dcc3eSBarry Smith   PetscReal *ar;
3974308dcc3eSBarry Smith 
3975308dcc3eSBarry Smith   PetscFunctionBegin;
3976308dcc3eSBarry Smith   mat = mxCreateDoubleMatrix(snes->conv_hist_len,1,mxREAL);
3977308dcc3eSBarry Smith   ar  = (PetscReal*) mxGetData(mat);
3978f5af7f23SKarl Rupp   for (i=0; i<snes->conv_hist_len; i++) ar[i] = snes->conv_hist[i];
3979308dcc3eSBarry Smith   PetscFunctionReturn(mat);
3980308dcc3eSBarry Smith }
3981308dcc3eSBarry Smith #endif
3982308dcc3eSBarry Smith 
39830c4c9dddSBarry Smith /*@C
3984758f92a0SBarry Smith    SNESGetConvergenceHistory - Gets the array used to hold the convergence history.
3985758f92a0SBarry Smith 
39863f9fe445SBarry Smith    Not Collective
3987758f92a0SBarry Smith 
3988758f92a0SBarry Smith    Input Parameter:
3989758f92a0SBarry Smith .  snes - iterative context obtained from SNESCreate()
3990758f92a0SBarry Smith 
3991758f92a0SBarry Smith    Output Parameters:
3992758f92a0SBarry Smith .  a   - array to hold history
3993758f92a0SBarry Smith .  its - integer array holds the number of linear iterations (or
3994758f92a0SBarry Smith          negative if not converged) for each solve.
3995758f92a0SBarry Smith -  na  - size of a and its
3996758f92a0SBarry Smith 
3997758f92a0SBarry Smith    Notes:
3998758f92a0SBarry Smith     The calling sequence for this routine in Fortran is
3999758f92a0SBarry Smith $   call SNESGetConvergenceHistory(SNES snes, integer na, integer ierr)
4000758f92a0SBarry Smith 
4001758f92a0SBarry Smith    This routine is useful, e.g., when running a code for purposes
4002758f92a0SBarry Smith    of accurate performance monitoring, when no I/O should be done
4003758f92a0SBarry Smith    during the section of code that is being timed.
4004758f92a0SBarry Smith 
4005758f92a0SBarry Smith    Level: intermediate
4006758f92a0SBarry Smith 
4007758f92a0SBarry Smith .keywords: SNES, get, convergence, history
4008758f92a0SBarry Smith 
4009758f92a0SBarry Smith .seealso: SNESSetConvergencHistory()
4010758f92a0SBarry Smith 
4011758f92a0SBarry Smith @*/
40127087cfbeSBarry Smith PetscErrorCode  SNESGetConvergenceHistory(SNES snes,PetscReal *a[],PetscInt *its[],PetscInt *na)
4013758f92a0SBarry Smith {
4014758f92a0SBarry Smith   PetscFunctionBegin;
40150700a824SBarry Smith   PetscValidHeaderSpecific(snes,SNES_CLASSID,1);
4016758f92a0SBarry Smith   if (a)   *a   = snes->conv_hist;
4017758f92a0SBarry Smith   if (its) *its = snes->conv_hist_its;
4018758f92a0SBarry Smith   if (na)  *na  = snes->conv_hist_len;
40193a40ed3dSBarry Smith   PetscFunctionReturn(0);
4020c9005455SLois Curfman McInnes }
4021c9005455SLois Curfman McInnes 
4022ac226902SBarry Smith /*@C
402376b2cf59SMatthew Knepley   SNESSetUpdate - Sets the general-purpose update function called
4024eec8f646SJed Brown   at the beginning of every iteration of the nonlinear solve. Specifically
40257e4bb74cSBarry Smith   it is called just before the Jacobian is "evaluated".
402676b2cf59SMatthew Knepley 
40273f9fe445SBarry Smith   Logically Collective on SNES
402876b2cf59SMatthew Knepley 
402976b2cf59SMatthew Knepley   Input Parameters:
403076b2cf59SMatthew Knepley . snes - The nonlinear solver context
403176b2cf59SMatthew Knepley . func - The function
403276b2cf59SMatthew Knepley 
403376b2cf59SMatthew Knepley   Calling sequence of func:
4034b5d30489SBarry Smith . func (SNES snes, PetscInt step);
403576b2cf59SMatthew Knepley 
403676b2cf59SMatthew Knepley . step - The current step of the iteration
403776b2cf59SMatthew Knepley 
4038fe97e370SBarry Smith   Level: advanced
4039fe97e370SBarry Smith 
4040fe97e370SBarry Smith   Note: This is NOT what one uses to update the ghost points before a function evaluation, that should be done at the beginning of your FormFunction()
4041fe97e370SBarry Smith         This is not used by most users.
404276b2cf59SMatthew Knepley 
404376b2cf59SMatthew Knepley .keywords: SNES, update
4044b5d30489SBarry Smith 
40458d359177SBarry Smith .seealso SNESSetJacobian(), SNESSolve()
404676b2cf59SMatthew Knepley @*/
40477087cfbeSBarry Smith PetscErrorCode  SNESSetUpdate(SNES snes, PetscErrorCode (*func)(SNES, PetscInt))
404876b2cf59SMatthew Knepley {
404976b2cf59SMatthew Knepley   PetscFunctionBegin;
40500700a824SBarry Smith   PetscValidHeaderSpecific(snes, SNES_CLASSID,1);
4051e7788613SBarry Smith   snes->ops->update = func;
405276b2cf59SMatthew Knepley   PetscFunctionReturn(0);
405376b2cf59SMatthew Knepley }
405476b2cf59SMatthew Knepley 
40559b94acceSBarry Smith /*
40569b94acceSBarry Smith    SNESScaleStep_Private - Scales a step so that its length is less than the
40579b94acceSBarry Smith    positive parameter delta.
40589b94acceSBarry Smith 
40599b94acceSBarry Smith     Input Parameters:
4060c7afd0dbSLois Curfman McInnes +   snes - the SNES context
40619b94acceSBarry Smith .   y - approximate solution of linear system
40629b94acceSBarry Smith .   fnorm - 2-norm of current function
4063c7afd0dbSLois Curfman McInnes -   delta - trust region size
40649b94acceSBarry Smith 
40659b94acceSBarry Smith     Output Parameters:
4066c7afd0dbSLois Curfman McInnes +   gpnorm - predicted function norm at the new point, assuming local
40679b94acceSBarry Smith     linearization.  The value is zero if the step lies within the trust
40689b94acceSBarry Smith     region, and exceeds zero otherwise.
4069c7afd0dbSLois Curfman McInnes -   ynorm - 2-norm of the step
40709b94acceSBarry Smith 
40719b94acceSBarry Smith     Note:
407204d7464bSBarry Smith     For non-trust region methods such as SNESNEWTONLS, the parameter delta
40739b94acceSBarry Smith     is set to be the maximum allowable step size.
40749b94acceSBarry Smith 
40759b94acceSBarry Smith .keywords: SNES, nonlinear, scale, step
40769b94acceSBarry Smith */
4077dfbe8321SBarry Smith PetscErrorCode SNESScaleStep_Private(SNES snes,Vec y,PetscReal *fnorm,PetscReal *delta,PetscReal *gpnorm,PetscReal *ynorm)
40789b94acceSBarry Smith {
4079064f8208SBarry Smith   PetscReal      nrm;
4080ea709b57SSatish Balay   PetscScalar    cnorm;
4081dfbe8321SBarry Smith   PetscErrorCode ierr;
40823a40ed3dSBarry Smith 
40833a40ed3dSBarry Smith   PetscFunctionBegin;
40840700a824SBarry Smith   PetscValidHeaderSpecific(snes,SNES_CLASSID,1);
40850700a824SBarry Smith   PetscValidHeaderSpecific(y,VEC_CLASSID,2);
4086c9780b6fSBarry Smith   PetscCheckSameComm(snes,1,y,2);
4087184914b5SBarry Smith 
4088064f8208SBarry Smith   ierr = VecNorm(y,NORM_2,&nrm);CHKERRQ(ierr);
4089064f8208SBarry Smith   if (nrm > *delta) {
4090064f8208SBarry Smith     nrm     = *delta/nrm;
4091064f8208SBarry Smith     *gpnorm = (1.0 - nrm)*(*fnorm);
4092064f8208SBarry Smith     cnorm   = nrm;
40932dcb1b2aSMatthew Knepley     ierr    = VecScale(y,cnorm);CHKERRQ(ierr);
40949b94acceSBarry Smith     *ynorm  = *delta;
40959b94acceSBarry Smith   } else {
40969b94acceSBarry Smith     *gpnorm = 0.0;
4097064f8208SBarry Smith     *ynorm  = nrm;
40989b94acceSBarry Smith   }
40993a40ed3dSBarry Smith   PetscFunctionReturn(0);
41009b94acceSBarry Smith }
41019b94acceSBarry Smith 
41022a359c20SBarry Smith /*@
41032a359c20SBarry Smith    SNESReasonView - Displays the reason a SNES solve converged or diverged to a viewer
41042a359c20SBarry Smith 
41052a359c20SBarry Smith    Collective on SNES
41062a359c20SBarry Smith 
41072a359c20SBarry Smith    Parameter:
41082a359c20SBarry Smith +  snes - iterative context obtained from SNESCreate()
41092a359c20SBarry Smith -  viewer - the viewer to display the reason
41102a359c20SBarry Smith 
41112a359c20SBarry Smith 
41122a359c20SBarry Smith    Options Database Keys:
41132a359c20SBarry Smith .  -snes_converged_reason - print reason for converged or diverged, also prints number of iterations
41142a359c20SBarry Smith 
41152a359c20SBarry Smith    Level: beginner
41162a359c20SBarry Smith 
41172a359c20SBarry Smith .keywords: SNES, solve, linear system
41182a359c20SBarry Smith 
41192a359c20SBarry Smith .seealso: SNESCreate(), SNESSetUp(), SNESDestroy(), SNESSetTolerances(), SNESConvergedDefault()
41202a359c20SBarry Smith 
41212a359c20SBarry Smith @*/
41222a359c20SBarry Smith PetscErrorCode  SNESReasonView(SNES snes,PetscViewer viewer)
41232a359c20SBarry Smith {
412475cca76cSMatthew G. Knepley   PetscViewerFormat format;
41252a359c20SBarry Smith   PetscBool         isAscii;
412675cca76cSMatthew G. Knepley   PetscErrorCode    ierr;
41272a359c20SBarry Smith 
41282a359c20SBarry Smith   PetscFunctionBegin;
41292a359c20SBarry Smith   ierr = PetscObjectTypeCompare((PetscObject)viewer,PETSCVIEWERASCII,&isAscii);CHKERRQ(ierr);
41302a359c20SBarry Smith   if (isAscii) {
413175cca76cSMatthew G. Knepley     ierr = PetscViewerGetFormat(viewer, &format);CHKERRQ(ierr);
41322a359c20SBarry Smith     ierr = PetscViewerASCIIAddTab(viewer,((PetscObject)snes)->tablevel);CHKERRQ(ierr);
413375cca76cSMatthew G. Knepley     if (format == PETSC_VIEWER_ASCII_INFO_DETAIL) {
413475cca76cSMatthew G. Knepley       DM                dm;
413575cca76cSMatthew G. Knepley       Vec               u;
413675cca76cSMatthew G. Knepley       PetscDS           prob;
413775cca76cSMatthew G. Knepley       PetscInt          Nf, f;
413875cca76cSMatthew G. Knepley       PetscErrorCode (**exactFuncs)(PetscInt, PetscReal, const PetscReal[], PetscInt, PetscScalar[], void *);
413975cca76cSMatthew G. Knepley       PetscReal         error;
414075cca76cSMatthew G. Knepley 
414175cca76cSMatthew G. Knepley       ierr = SNESGetDM(snes, &dm);CHKERRQ(ierr);
414275cca76cSMatthew G. Knepley       ierr = SNESGetSolution(snes, &u);CHKERRQ(ierr);
414375cca76cSMatthew G. Knepley       ierr = DMGetDS(dm, &prob);CHKERRQ(ierr);
414475cca76cSMatthew G. Knepley       ierr = PetscDSGetNumFields(prob, &Nf);CHKERRQ(ierr);
414575cca76cSMatthew G. Knepley       ierr = PetscMalloc1(Nf, &exactFuncs);CHKERRQ(ierr);
414675cca76cSMatthew G. Knepley       for (f = 0; f < Nf; ++f) {ierr = PetscDSGetExactSolution(prob, f, &exactFuncs[f]);CHKERRQ(ierr);}
414775cca76cSMatthew G. Knepley       ierr = DMComputeL2Diff(dm, 0.0, exactFuncs, NULL, u, &error);CHKERRQ(ierr);
414875cca76cSMatthew G. Knepley       ierr = PetscFree(exactFuncs);CHKERRQ(ierr);
414975cca76cSMatthew G. Knepley       if (error < 1.0e-11) {ierr = PetscViewerASCIIPrintf(viewer, "L_2 Error: < 1.0e-11\n");CHKERRQ(ierr);}
415075cca76cSMatthew G. Knepley       else                 {ierr = PetscViewerASCIIPrintf(viewer, "L_2 Error: %g\n", error);CHKERRQ(ierr);}
415175cca76cSMatthew G. Knepley     }
41522a359c20SBarry Smith     if (snes->reason > 0) {
41532a359c20SBarry Smith       if (((PetscObject) snes)->prefix) {
41542a359c20SBarry Smith         ierr = PetscViewerASCIIPrintf(viewer,"Nonlinear %s solve converged due to %s iterations %D\n",((PetscObject) snes)->prefix,SNESConvergedReasons[snes->reason],snes->iter);CHKERRQ(ierr);
41552a359c20SBarry Smith       } else {
41562a359c20SBarry Smith         ierr = PetscViewerASCIIPrintf(viewer,"Nonlinear solve converged due to %s iterations %D\n",SNESConvergedReasons[snes->reason],snes->iter);CHKERRQ(ierr);
41572a359c20SBarry Smith       }
41582a359c20SBarry Smith     } else {
41592a359c20SBarry Smith       if (((PetscObject) snes)->prefix) {
41602a359c20SBarry Smith         ierr = PetscViewerASCIIPrintf(viewer,"Nonlinear %s solve did not converge due to %s iterations %D\n",((PetscObject) snes)->prefix,SNESConvergedReasons[snes->reason],snes->iter);CHKERRQ(ierr);
41612a359c20SBarry Smith       } else {
41622a359c20SBarry Smith         ierr = PetscViewerASCIIPrintf(viewer,"Nonlinear solve did not converge due to %s iterations %D\n",SNESConvergedReasons[snes->reason],snes->iter);CHKERRQ(ierr);
41632a359c20SBarry Smith       }
41642a359c20SBarry Smith     }
41652a359c20SBarry Smith     ierr = PetscViewerASCIISubtractTab(viewer,((PetscObject)snes)->tablevel);CHKERRQ(ierr);
41662a359c20SBarry Smith   }
41672a359c20SBarry Smith   PetscFunctionReturn(0);
41682a359c20SBarry Smith }
41692a359c20SBarry Smith 
41702a359c20SBarry Smith /*@C
41712a359c20SBarry Smith   SNESReasonViewFromOptions - Processes command line options to determine if/how a SNESReason is to be viewed.
41722a359c20SBarry Smith 
41732a359c20SBarry Smith   Collective on SNES
41742a359c20SBarry Smith 
41752a359c20SBarry Smith   Input Parameters:
41762a359c20SBarry Smith . snes   - the SNES object
41772a359c20SBarry Smith 
41782a359c20SBarry Smith   Level: intermediate
41792a359c20SBarry Smith 
41802a359c20SBarry Smith @*/
41812a359c20SBarry Smith PetscErrorCode SNESReasonViewFromOptions(SNES snes)
41822a359c20SBarry Smith {
41832a359c20SBarry Smith   PetscErrorCode    ierr;
41842a359c20SBarry Smith   PetscViewer       viewer;
41852a359c20SBarry Smith   PetscBool         flg;
41862a359c20SBarry Smith   static PetscBool  incall = PETSC_FALSE;
41872a359c20SBarry Smith   PetscViewerFormat format;
41882a359c20SBarry Smith 
41892a359c20SBarry Smith   PetscFunctionBegin;
41902a359c20SBarry Smith   if (incall) PetscFunctionReturn(0);
41912a359c20SBarry Smith   incall = PETSC_TRUE;
41922a359c20SBarry Smith   ierr   = PetscOptionsGetViewer(PetscObjectComm((PetscObject)snes),((PetscObject)snes)->prefix,"-snes_converged_reason",&viewer,&format,&flg);CHKERRQ(ierr);
41932a359c20SBarry Smith   if (flg) {
41942a359c20SBarry Smith     ierr = PetscViewerPushFormat(viewer,format);CHKERRQ(ierr);
41952a359c20SBarry Smith     ierr = SNESReasonView(snes,viewer);CHKERRQ(ierr);
41962a359c20SBarry Smith     ierr = PetscViewerPopFormat(viewer);CHKERRQ(ierr);
41972a359c20SBarry Smith     ierr = PetscViewerDestroy(&viewer);CHKERRQ(ierr);
41982a359c20SBarry Smith   }
41992a359c20SBarry Smith   incall = PETSC_FALSE;
42002a359c20SBarry Smith   PetscFunctionReturn(0);
42012a359c20SBarry Smith }
42022a359c20SBarry Smith 
42036ce558aeSBarry Smith /*@C
4204f69a0ea3SMatthew Knepley    SNESSolve - Solves a nonlinear system F(x) = b.
4205f69a0ea3SMatthew Knepley    Call SNESSolve() after calling SNESCreate() and optional routines of the form SNESSetXXX().
42069b94acceSBarry Smith 
4207c7afd0dbSLois Curfman McInnes    Collective on SNES
4208c7afd0dbSLois Curfman McInnes 
4209b2002411SLois Curfman McInnes    Input Parameters:
4210c7afd0dbSLois Curfman McInnes +  snes - the SNES context
42110298fd71SBarry Smith .  b - the constant part of the equation F(x) = b, or NULL to use zero.
421285385478SLisandro Dalcin -  x - the solution vector.
42139b94acceSBarry Smith 
4214b2002411SLois Curfman McInnes    Notes:
42158ddd3da0SLois Curfman McInnes    The user should initialize the vector,x, with the initial guess
42168ddd3da0SLois Curfman McInnes    for the nonlinear solve prior to calling SNESSolve.  In particular,
42178ddd3da0SLois Curfman McInnes    to employ an initial guess of zero, the user should explicitly set
42188ddd3da0SLois Curfman McInnes    this vector to zero by calling VecSet().
42198ddd3da0SLois Curfman McInnes 
422036851e7fSLois Curfman McInnes    Level: beginner
422136851e7fSLois Curfman McInnes 
42229b94acceSBarry Smith .keywords: SNES, nonlinear, solve
42239b94acceSBarry Smith 
4224c0df2a02SJed Brown .seealso: SNESCreate(), SNESDestroy(), SNESSetFunction(), SNESSetJacobian(), SNESSetGridSequence(), SNESGetSolution()
42259b94acceSBarry Smith @*/
42267087cfbeSBarry Smith PetscErrorCode  SNESSolve(SNES snes,Vec b,Vec x)
42279b94acceSBarry Smith {
4228dfbe8321SBarry Smith   PetscErrorCode    ierr;
4229ace3abfcSBarry Smith   PetscBool         flg;
4230efd51863SBarry Smith   PetscInt          grid;
42310298fd71SBarry Smith   Vec               xcreated = NULL;
4232caa4e7f2SJed Brown   DM                dm;
4233052efed2SBarry Smith 
42343a40ed3dSBarry Smith   PetscFunctionBegin;
42350700a824SBarry Smith   PetscValidHeaderSpecific(snes,SNES_CLASSID,1);
4236a69afd8bSBarry Smith   if (x) PetscValidHeaderSpecific(x,VEC_CLASSID,3);
4237a69afd8bSBarry Smith   if (x) PetscCheckSameComm(snes,1,x,3);
42380700a824SBarry Smith   if (b) PetscValidHeaderSpecific(b,VEC_CLASSID,2);
423985385478SLisandro Dalcin   if (b) PetscCheckSameComm(snes,1,b,2);
424085385478SLisandro Dalcin 
424134b4d3a8SMatthew G. Knepley   /* High level operations using the nonlinear solver */
424206fc46c8SMatthew G. Knepley   {
424306fc46c8SMatthew G. Knepley     PetscViewer       viewer;
424406fc46c8SMatthew G. Knepley     PetscViewerFormat format;
42457c88af5aSMatthew G. Knepley     PetscInt          num;
424606fc46c8SMatthew G. Knepley     PetscBool         flg;
424706fc46c8SMatthew G. Knepley     static PetscBool  incall = PETSC_FALSE;
424806fc46c8SMatthew G. Knepley 
424906fc46c8SMatthew G. Knepley     if (!incall) {
425034b4d3a8SMatthew G. Knepley       /* Estimate the convergence rate of the discretization */
425106fc46c8SMatthew G. Knepley       ierr = PetscOptionsGetViewer(PetscObjectComm((PetscObject) snes), ((PetscObject) snes)->prefix, "-snes_convergence_estimate", &viewer, &format, &flg);CHKERRQ(ierr);
425206fc46c8SMatthew G. Knepley       if (flg) {
425306fc46c8SMatthew G. Knepley         PetscConvEst conv;
425406fc46c8SMatthew G. Knepley         PetscReal    alpha; /* Convergence rate of the solution error in the L_2 norm */
425506fc46c8SMatthew G. Knepley 
425606fc46c8SMatthew G. Knepley         incall = PETSC_TRUE;
425706fc46c8SMatthew G. Knepley         ierr = PetscConvEstCreate(PetscObjectComm((PetscObject) snes), &conv);CHKERRQ(ierr);
425806fc46c8SMatthew G. Knepley         ierr = PetscConvEstSetSolver(conv, snes);CHKERRQ(ierr);
425906fc46c8SMatthew G. Knepley         ierr = PetscConvEstSetFromOptions(conv);CHKERRQ(ierr);
42600955ed61SMatthew G. Knepley         ierr = PetscConvEstSetUp(conv);CHKERRQ(ierr);
426106fc46c8SMatthew G. Knepley         ierr = PetscConvEstGetConvRate(conv, &alpha);CHKERRQ(ierr);
426206fc46c8SMatthew G. Knepley         ierr = PetscViewerPushFormat(viewer, format);CHKERRQ(ierr);
426306fc46c8SMatthew G. Knepley         ierr = PetscConvEstRateView(conv, alpha, viewer);CHKERRQ(ierr);
426406fc46c8SMatthew G. Knepley         ierr = PetscViewerPopFormat(viewer);CHKERRQ(ierr);
426506fc46c8SMatthew G. Knepley         ierr = PetscViewerDestroy(&viewer);CHKERRQ(ierr);
426606fc46c8SMatthew G. Knepley         ierr = PetscConvEstDestroy(&conv);CHKERRQ(ierr);
426706fc46c8SMatthew G. Knepley         incall = PETSC_FALSE;
426806fc46c8SMatthew G. Knepley       }
426934b4d3a8SMatthew G. Knepley       /* Adaptively refine the initial grid */
4270b2588ea6SMatthew G. Knepley       num  = 1;
4271b2588ea6SMatthew G. Knepley       ierr = PetscOptionsGetInt(NULL, ((PetscObject) snes)->prefix, "-snes_adapt_initial", &num, &flg);CHKERRQ(ierr);
427234b4d3a8SMatthew G. Knepley       if (flg) {
427334b4d3a8SMatthew G. Knepley         DMAdaptor adaptor;
427434b4d3a8SMatthew G. Knepley 
427534b4d3a8SMatthew G. Knepley         incall = PETSC_TRUE;
427634b4d3a8SMatthew G. Knepley         ierr = DMAdaptorCreate(PETSC_COMM_WORLD, &adaptor);CHKERRQ(ierr);
427734b4d3a8SMatthew G. Knepley         ierr = DMAdaptorSetSolver(adaptor, snes);CHKERRQ(ierr);
4278b2588ea6SMatthew G. Knepley         ierr = DMAdaptorSetSequenceLength(adaptor, num);CHKERRQ(ierr);
427934b4d3a8SMatthew G. Knepley         ierr = DMAdaptorSetFromOptions(adaptor);CHKERRQ(ierr);
428034b4d3a8SMatthew G. Knepley         ierr = DMAdaptorSetUp(adaptor);CHKERRQ(ierr);
428134b4d3a8SMatthew G. Knepley         ierr = DMAdaptorAdapt(adaptor, x, DM_ADAPTATION_INITIAL, &dm, &x);CHKERRQ(ierr);
428234b4d3a8SMatthew G. Knepley         ierr = DMAdaptorDestroy(&adaptor);CHKERRQ(ierr);
428334b4d3a8SMatthew G. Knepley         incall = PETSC_FALSE;
428434b4d3a8SMatthew G. Knepley       }
42857c88af5aSMatthew G. Knepley       /* Use grid sequencing to adapt */
42867c88af5aSMatthew G. Knepley       num  = 0;
42877c88af5aSMatthew G. Knepley       ierr = PetscOptionsGetInt(NULL, ((PetscObject) snes)->prefix, "-snes_adapt_sequence", &num, NULL);CHKERRQ(ierr);
42887c88af5aSMatthew G. Knepley       if (num) {
42897c88af5aSMatthew G. Knepley         DMAdaptor adaptor;
42907c88af5aSMatthew G. Knepley 
42917c88af5aSMatthew G. Knepley         incall = PETSC_TRUE;
42927c88af5aSMatthew G. Knepley         ierr = DMAdaptorCreate(PETSC_COMM_WORLD, &adaptor);CHKERRQ(ierr);
42937c88af5aSMatthew G. Knepley         ierr = DMAdaptorSetSolver(adaptor, snes);CHKERRQ(ierr);
42947c88af5aSMatthew G. Knepley         ierr = DMAdaptorSetSequenceLength(adaptor, num);CHKERRQ(ierr);
42957c88af5aSMatthew G. Knepley         ierr = DMAdaptorSetFromOptions(adaptor);CHKERRQ(ierr);
42967c88af5aSMatthew G. Knepley         ierr = DMAdaptorSetUp(adaptor);CHKERRQ(ierr);
42977c88af5aSMatthew G. Knepley         ierr = DMAdaptorAdapt(adaptor, x, DM_ADAPTATION_SEQUENTIAL, &dm, &x);CHKERRQ(ierr);
42987c88af5aSMatthew G. Knepley         ierr = DMAdaptorDestroy(&adaptor);CHKERRQ(ierr);
42997c88af5aSMatthew G. Knepley         incall = PETSC_FALSE;
43007c88af5aSMatthew G. Knepley       }
430106fc46c8SMatthew G. Knepley     }
430206fc46c8SMatthew G. Knepley   }
4303caa4e7f2SJed Brown   if (!x) {
4304caa4e7f2SJed Brown     ierr = SNESGetDM(snes,&dm);CHKERRQ(ierr);
4305caa4e7f2SJed Brown     ierr = DMCreateGlobalVector(dm,&xcreated);CHKERRQ(ierr);
4306a69afd8bSBarry Smith     x    = xcreated;
4307a69afd8bSBarry Smith   }
4308ce1779c8SBarry Smith   ierr = SNESViewFromOptions(snes,NULL,"-snes_view_pre");CHKERRQ(ierr);
4309f05ece33SBarry Smith 
4310ce94432eSBarry Smith   for (grid=0; grid<snes->gridsequence; grid++) {ierr = PetscViewerASCIIPushTab(PETSC_VIEWER_STDOUT_(PetscObjectComm((PetscObject)snes)));CHKERRQ(ierr);}
4311efd51863SBarry Smith   for (grid=0; grid<snes->gridsequence+1; grid++) {
4312efd51863SBarry Smith 
431385385478SLisandro Dalcin     /* set solution vector */
4314efd51863SBarry Smith     if (!grid) {ierr = PetscObjectReference((PetscObject)x);CHKERRQ(ierr);}
43156bf464f9SBarry Smith     ierr          = VecDestroy(&snes->vec_sol);CHKERRQ(ierr);
431685385478SLisandro Dalcin     snes->vec_sol = x;
4317caa4e7f2SJed Brown     ierr          = SNESGetDM(snes,&dm);CHKERRQ(ierr);
4318caa4e7f2SJed Brown 
4319caa4e7f2SJed Brown     /* set affine vector if provided */
432085385478SLisandro Dalcin     if (b) { ierr = PetscObjectReference((PetscObject)b);CHKERRQ(ierr); }
43216bf464f9SBarry Smith     ierr          = VecDestroy(&snes->vec_rhs);CHKERRQ(ierr);
432285385478SLisandro Dalcin     snes->vec_rhs = b;
432385385478SLisandro Dalcin 
4324154060b5SMatthew G. Knepley     if (snes->vec_func == snes->vec_sol) SETERRQ(PETSC_COMM_SELF,PETSC_ERR_ARG_IDN,"Solution vector cannot be function vector");
4325154060b5SMatthew G. Knepley     if (snes->vec_rhs  == snes->vec_sol) SETERRQ(PETSC_COMM_SELF,PETSC_ERR_ARG_IDN,"Solution vector cannot be right hand side vector");
4326154060b5SMatthew G. Knepley     if (!snes->vec_sol_update /* && snes->vec_sol */) {
4327154060b5SMatthew G. Knepley       ierr = VecDuplicate(snes->vec_sol,&snes->vec_sol_update);CHKERRQ(ierr);
4328154060b5SMatthew G. Knepley       ierr = PetscLogObjectParent((PetscObject)snes,(PetscObject)snes->vec_sol_update);CHKERRQ(ierr);
4329154060b5SMatthew G. Knepley     }
4330154060b5SMatthew G. Knepley     ierr = DMShellSetGlobalVector(dm,snes->vec_sol);CHKERRQ(ierr);
433170e92668SMatthew Knepley     ierr = SNESSetUp(snes);CHKERRQ(ierr);
43323f149594SLisandro Dalcin 
43337eee914bSBarry Smith     if (!grid) {
43347eee914bSBarry Smith       if (snes->ops->computeinitialguess) {
4335d25893d9SBarry Smith         ierr = (*snes->ops->computeinitialguess)(snes,snes->vec_sol,snes->initialguessP);CHKERRQ(ierr);
4336d25893d9SBarry Smith       }
4337dd568438SSatish Balay     }
4338d25893d9SBarry Smith 
4339abc0a331SBarry Smith     if (snes->conv_hist_reset) snes->conv_hist_len = 0;
4340971e163fSPeter Brune     if (snes->counters_reset) {snes->nfuncs = 0; snes->linear_its = 0; snes->numFailures = 0;}
4341d5e45103SBarry Smith 
43423f149594SLisandro Dalcin     ierr = PetscLogEventBegin(SNES_Solve,snes,0,0,0);CHKERRQ(ierr);
43434936397dSBarry Smith     ierr = (*snes->ops->solve)(snes);CHKERRQ(ierr);
434485385478SLisandro Dalcin     ierr = PetscLogEventEnd(SNES_Solve,snes,0,0,0);CHKERRQ(ierr);
434517186662SBarry Smith     if (!snes->reason) SETERRQ(PETSC_COMM_SELF,PETSC_ERR_PLIB,"Internal error, solver returned without setting converged reason");
4346422a814eSBarry Smith     snes->domainerror = PETSC_FALSE; /* clear the flag if it has been set */
43473f149594SLisandro Dalcin 
434837ec4e1aSPeter Brune     if (snes->lagjac_persist) snes->jac_iter += snes->iter;
434937ec4e1aSPeter Brune     if (snes->lagpre_persist) snes->pre_iter += snes->iter;
435037ec4e1aSPeter Brune 
435127b0f280SBarry Smith     ierr   = PetscOptionsGetViewer(PetscObjectComm((PetscObject)snes),((PetscObject)snes)->prefix,"-snes_test_local_min",NULL,NULL,&flg);CHKERRQ(ierr);
4352da9b6338SBarry Smith     if (flg && !PetscPreLoadingOn) { ierr = SNESTestLocalMin(snes);CHKERRQ(ierr); }
43532a359c20SBarry Smith     ierr = SNESReasonViewFromOptions(snes);CHKERRQ(ierr);
43545968eb51SBarry Smith 
4355ce94432eSBarry Smith     if (snes->errorifnotconverged && snes->reason < 0) SETERRQ(PetscObjectComm((PetscObject)snes),PETSC_ERR_NOT_CONVERGED,"SNESSolve has not converged");
43569c8e83a9SBarry Smith     if (snes->reason < 0) break;
4357efd51863SBarry Smith     if (grid <  snes->gridsequence) {
4358efd51863SBarry Smith       DM  fine;
4359efd51863SBarry Smith       Vec xnew;
4360efd51863SBarry Smith       Mat interp;
4361efd51863SBarry Smith 
4362ce94432eSBarry Smith       ierr = DMRefine(snes->dm,PetscObjectComm((PetscObject)snes),&fine);CHKERRQ(ierr);
4363ce94432eSBarry Smith       if (!fine) SETERRQ(PetscObjectComm((PetscObject)snes),PETSC_ERR_ARG_INCOMP,"DMRefine() did not perform any refinement, cannot continue grid sequencing");
43640298fd71SBarry Smith       ierr = DMCreateInterpolation(snes->dm,fine,&interp,NULL);CHKERRQ(ierr);
4365efd51863SBarry Smith       ierr = DMCreateGlobalVector(fine,&xnew);CHKERRQ(ierr);
4366efd51863SBarry Smith       ierr = MatInterpolate(interp,x,xnew);CHKERRQ(ierr);
4367c833c3b5SJed Brown       ierr = DMInterpolate(snes->dm,interp,fine);CHKERRQ(ierr);
4368efd51863SBarry Smith       ierr = MatDestroy(&interp);CHKERRQ(ierr);
4369efd51863SBarry Smith       x    = xnew;
4370efd51863SBarry Smith 
4371efd51863SBarry Smith       ierr = SNESReset(snes);CHKERRQ(ierr);
4372efd51863SBarry Smith       ierr = SNESSetDM(snes,fine);CHKERRQ(ierr);
4373efd51863SBarry Smith       ierr = DMDestroy(&fine);CHKERRQ(ierr);
4374ce94432eSBarry Smith       ierr = PetscViewerASCIIPopTab(PETSC_VIEWER_STDOUT_(PetscObjectComm((PetscObject)snes)));CHKERRQ(ierr);
4375efd51863SBarry Smith     }
4376efd51863SBarry Smith   }
4377ce1779c8SBarry Smith   ierr = SNESViewFromOptions(snes,NULL,"-snes_view");CHKERRQ(ierr);
4378685405a1SBarry Smith   ierr = VecViewFromOptions(snes->vec_sol,(PetscObject)snes,"-snes_view_solution");CHKERRQ(ierr);
43793f7e2da0SPeter Brune 
4380a69afd8bSBarry Smith   ierr = VecDestroy(&xcreated);CHKERRQ(ierr);
4381e04113cfSBarry Smith   ierr = PetscObjectSAWsBlock((PetscObject)snes);CHKERRQ(ierr);
43823a40ed3dSBarry Smith   PetscFunctionReturn(0);
43839b94acceSBarry Smith }
43849b94acceSBarry Smith 
43859b94acceSBarry Smith /* --------- Internal routines for SNES Package --------- */
43869b94acceSBarry Smith 
438782bf6240SBarry Smith /*@C
43884b0e389bSBarry Smith    SNESSetType - Sets the method for the nonlinear solver.
43899b94acceSBarry Smith 
4390fee21e36SBarry Smith    Collective on SNES
4391fee21e36SBarry Smith 
4392c7afd0dbSLois Curfman McInnes    Input Parameters:
4393c7afd0dbSLois Curfman McInnes +  snes - the SNES context
4394454a90a3SBarry Smith -  type - a known method
4395c7afd0dbSLois Curfman McInnes 
4396c7afd0dbSLois Curfman McInnes    Options Database Key:
4397454a90a3SBarry Smith .  -snes_type <type> - Sets the method; use -help for a list
439804d7464bSBarry Smith    of available methods (for instance, newtonls or newtontr)
4399ae12b187SLois Curfman McInnes 
44009b94acceSBarry Smith    Notes:
4401e090d566SSatish Balay    See "petsc/include/petscsnes.h" for available methods (for instance)
440204d7464bSBarry Smith +    SNESNEWTONLS - Newton's method with line search
4403c7afd0dbSLois Curfman McInnes      (systems of nonlinear equations)
440404d7464bSBarry Smith .    SNESNEWTONTR - Newton's method with trust region
4405c7afd0dbSLois Curfman McInnes      (systems of nonlinear equations)
44069b94acceSBarry Smith 
4407ae12b187SLois Curfman McInnes   Normally, it is best to use the SNESSetFromOptions() command and then
4408ae12b187SLois Curfman McInnes   set the SNES solver type from the options database rather than by using
4409ae12b187SLois Curfman McInnes   this routine.  Using the options database provides the user with
4410ae12b187SLois Curfman McInnes   maximum flexibility in evaluating the many nonlinear solvers.
4411ae12b187SLois Curfman McInnes   The SNESSetType() routine is provided for those situations where it
4412ae12b187SLois Curfman McInnes   is necessary to set the nonlinear solver independently of the command
4413ae12b187SLois Curfman McInnes   line or options database.  This might be the case, for example, when
4414ae12b187SLois Curfman McInnes   the choice of solver changes during the execution of the program,
4415ae12b187SLois Curfman McInnes   and the user's application is taking responsibility for choosing the
4416b0a32e0cSBarry Smith   appropriate method.
441736851e7fSLois Curfman McInnes 
44188f6c3df8SBarry Smith     Developer Notes: SNESRegister() adds a constructor for a new SNESType to SNESList, SNESSetType() locates
44198f6c3df8SBarry Smith     the constructor in that list and calls it to create the spexific object.
44208f6c3df8SBarry Smith 
442136851e7fSLois Curfman McInnes   Level: intermediate
4422a703fe33SLois Curfman McInnes 
4423454a90a3SBarry Smith .keywords: SNES, set, type
4424435da068SBarry Smith 
44258f6c3df8SBarry Smith .seealso: SNESType, SNESCreate(), SNESDestroy(), SNESGetType(), SNESSetFromOptions()
4426435da068SBarry Smith 
44279b94acceSBarry Smith @*/
442819fd82e9SBarry Smith PetscErrorCode  SNESSetType(SNES snes,SNESType type)
44299b94acceSBarry Smith {
4430dfbe8321SBarry Smith   PetscErrorCode ierr,(*r)(SNES);
4431ace3abfcSBarry Smith   PetscBool      match;
44323a40ed3dSBarry Smith 
44333a40ed3dSBarry Smith   PetscFunctionBegin;
44340700a824SBarry Smith   PetscValidHeaderSpecific(snes,SNES_CLASSID,1);
44354482741eSBarry Smith   PetscValidCharPointer(type,2);
443682bf6240SBarry Smith 
4437251f4c67SDmitry Karpeev   ierr = PetscObjectTypeCompare((PetscObject)snes,type,&match);CHKERRQ(ierr);
44380f5bd95cSBarry Smith   if (match) PetscFunctionReturn(0);
443992ff6ae8SBarry Smith 
44401c9cd337SJed Brown   ierr =  PetscFunctionListFind(SNESList,type,&r);CHKERRQ(ierr);
4441e32f2f54SBarry Smith   if (!r) SETERRQ1(PETSC_COMM_SELF,PETSC_ERR_ARG_UNKNOWN_TYPE,"Unable to find requested SNES type %s",type);
444275396ef9SLisandro Dalcin   /* Destroy the previous private SNES context */
4443b5c23020SJed Brown   if (snes->ops->destroy) {
4444b5c23020SJed Brown     ierr               = (*(snes)->ops->destroy)(snes);CHKERRQ(ierr);
44450298fd71SBarry Smith     snes->ops->destroy = NULL;
4446b5c23020SJed Brown   }
444775396ef9SLisandro Dalcin   /* Reinitialize function pointers in SNESOps structure */
444875396ef9SLisandro Dalcin   snes->ops->setup          = 0;
444975396ef9SLisandro Dalcin   snes->ops->solve          = 0;
445075396ef9SLisandro Dalcin   snes->ops->view           = 0;
445175396ef9SLisandro Dalcin   snes->ops->setfromoptions = 0;
445275396ef9SLisandro Dalcin   snes->ops->destroy        = 0;
445375396ef9SLisandro Dalcin   /* Call the SNESCreate_XXX routine for this particular Nonlinear solver */
445475396ef9SLisandro Dalcin   snes->setupcalled = PETSC_FALSE;
4455f5af7f23SKarl Rupp 
4456454a90a3SBarry Smith   ierr = PetscObjectChangeTypeName((PetscObject)snes,type);CHKERRQ(ierr);
445703bfa161SLisandro Dalcin   ierr = (*r)(snes);CHKERRQ(ierr);
44583a40ed3dSBarry Smith   PetscFunctionReturn(0);
44599b94acceSBarry Smith }
44609b94acceSBarry Smith 
44619b94acceSBarry Smith /*@C
44629a28b0a6SLois Curfman McInnes    SNESGetType - Gets the SNES method type and name (as a string).
44639b94acceSBarry Smith 
4464c7afd0dbSLois Curfman McInnes    Not Collective
4465c7afd0dbSLois Curfman McInnes 
44669b94acceSBarry Smith    Input Parameter:
44674b0e389bSBarry Smith .  snes - nonlinear solver context
44689b94acceSBarry Smith 
44699b94acceSBarry Smith    Output Parameter:
44703a7fca6bSBarry Smith .  type - SNES method (a character string)
44719b94acceSBarry Smith 
447236851e7fSLois Curfman McInnes    Level: intermediate
447336851e7fSLois Curfman McInnes 
4474454a90a3SBarry Smith .keywords: SNES, nonlinear, get, type, name
44759b94acceSBarry Smith @*/
447619fd82e9SBarry Smith PetscErrorCode  SNESGetType(SNES snes,SNESType *type)
44779b94acceSBarry Smith {
44783a40ed3dSBarry Smith   PetscFunctionBegin;
44790700a824SBarry Smith   PetscValidHeaderSpecific(snes,SNES_CLASSID,1);
44804482741eSBarry Smith   PetscValidPointer(type,2);
44817adad957SLisandro Dalcin   *type = ((PetscObject)snes)->type_name;
44823a40ed3dSBarry Smith   PetscFunctionReturn(0);
44839b94acceSBarry Smith }
44849b94acceSBarry Smith 
44853cd8a7caSMatthew G. Knepley /*@
44863cd8a7caSMatthew G. Knepley   SNESSetSolution - Sets the solution vector for use by the SNES routines.
44873cd8a7caSMatthew G. Knepley 
44883cd8a7caSMatthew G. Knepley   Logically Collective on SNES and Vec
44893cd8a7caSMatthew G. Knepley 
44903cd8a7caSMatthew G. Knepley   Input Parameters:
44913cd8a7caSMatthew G. Knepley + snes - the SNES context obtained from SNESCreate()
44923cd8a7caSMatthew G. Knepley - u    - the solution vector
44933cd8a7caSMatthew G. Knepley 
44943cd8a7caSMatthew G. Knepley   Level: beginner
44953cd8a7caSMatthew G. Knepley 
44963cd8a7caSMatthew G. Knepley .keywords: SNES, set, solution
44973cd8a7caSMatthew G. Knepley @*/
44983cd8a7caSMatthew G. Knepley PetscErrorCode SNESSetSolution(SNES snes, Vec u)
44993cd8a7caSMatthew G. Knepley {
45003cd8a7caSMatthew G. Knepley   DM             dm;
45013cd8a7caSMatthew G. Knepley   PetscErrorCode ierr;
45023cd8a7caSMatthew G. Knepley 
45033cd8a7caSMatthew G. Knepley   PetscFunctionBegin;
45043cd8a7caSMatthew G. Knepley   PetscValidHeaderSpecific(snes, SNES_CLASSID, 1);
45053cd8a7caSMatthew G. Knepley   PetscValidHeaderSpecific(u, VEC_CLASSID, 2);
45063cd8a7caSMatthew G. Knepley   ierr = PetscObjectReference((PetscObject) u);CHKERRQ(ierr);
45073cd8a7caSMatthew G. Knepley   ierr = VecDestroy(&snes->vec_sol);CHKERRQ(ierr);
45083cd8a7caSMatthew G. Knepley 
45093cd8a7caSMatthew G. Knepley   snes->vec_sol = u;
45103cd8a7caSMatthew G. Knepley 
45113cd8a7caSMatthew G. Knepley   ierr = SNESGetDM(snes, &dm);CHKERRQ(ierr);
45123cd8a7caSMatthew G. Knepley   ierr = DMShellSetGlobalVector(dm, u);CHKERRQ(ierr);
45133cd8a7caSMatthew G. Knepley   PetscFunctionReturn(0);
45143cd8a7caSMatthew G. Knepley }
45153cd8a7caSMatthew G. Knepley 
451652baeb72SSatish Balay /*@
45179b94acceSBarry Smith    SNESGetSolution - Returns the vector where the approximate solution is
4518c0df2a02SJed Brown    stored. This is the fine grid solution when using SNESSetGridSequence().
45199b94acceSBarry Smith 
4520c7afd0dbSLois Curfman McInnes    Not Collective, but Vec is parallel if SNES is parallel
4521c7afd0dbSLois Curfman McInnes 
45229b94acceSBarry Smith    Input Parameter:
45239b94acceSBarry Smith .  snes - the SNES context
45249b94acceSBarry Smith 
45259b94acceSBarry Smith    Output Parameter:
45269b94acceSBarry Smith .  x - the solution
45279b94acceSBarry Smith 
452870e92668SMatthew Knepley    Level: intermediate
452936851e7fSLois Curfman McInnes 
45309b94acceSBarry Smith .keywords: SNES, nonlinear, get, solution
45319b94acceSBarry Smith 
453285385478SLisandro Dalcin .seealso:  SNESGetSolutionUpdate(), SNESGetFunction()
45339b94acceSBarry Smith @*/
45347087cfbeSBarry Smith PetscErrorCode  SNESGetSolution(SNES snes,Vec *x)
45359b94acceSBarry Smith {
45363a40ed3dSBarry Smith   PetscFunctionBegin;
45370700a824SBarry Smith   PetscValidHeaderSpecific(snes,SNES_CLASSID,1);
45384482741eSBarry Smith   PetscValidPointer(x,2);
453985385478SLisandro Dalcin   *x = snes->vec_sol;
454070e92668SMatthew Knepley   PetscFunctionReturn(0);
454170e92668SMatthew Knepley }
454270e92668SMatthew Knepley 
454352baeb72SSatish Balay /*@
45449b94acceSBarry Smith    SNESGetSolutionUpdate - Returns the vector where the solution update is
45459b94acceSBarry Smith    stored.
45469b94acceSBarry Smith 
4547c7afd0dbSLois Curfman McInnes    Not Collective, but Vec is parallel if SNES is parallel
4548c7afd0dbSLois Curfman McInnes 
45499b94acceSBarry Smith    Input Parameter:
45509b94acceSBarry Smith .  snes - the SNES context
45519b94acceSBarry Smith 
45529b94acceSBarry Smith    Output Parameter:
45539b94acceSBarry Smith .  x - the solution update
45549b94acceSBarry Smith 
455536851e7fSLois Curfman McInnes    Level: advanced
455636851e7fSLois Curfman McInnes 
45579b94acceSBarry Smith .keywords: SNES, nonlinear, get, solution, update
45589b94acceSBarry Smith 
455985385478SLisandro Dalcin .seealso: SNESGetSolution(), SNESGetFunction()
45609b94acceSBarry Smith @*/
45617087cfbeSBarry Smith PetscErrorCode  SNESGetSolutionUpdate(SNES snes,Vec *x)
45629b94acceSBarry Smith {
45633a40ed3dSBarry Smith   PetscFunctionBegin;
45640700a824SBarry Smith   PetscValidHeaderSpecific(snes,SNES_CLASSID,1);
45654482741eSBarry Smith   PetscValidPointer(x,2);
456685385478SLisandro Dalcin   *x = snes->vec_sol_update;
45673a40ed3dSBarry Smith   PetscFunctionReturn(0);
45689b94acceSBarry Smith }
45699b94acceSBarry Smith 
45709b94acceSBarry Smith /*@C
45713638b69dSLois Curfman McInnes    SNESGetFunction - Returns the vector where the function is stored.
45729b94acceSBarry Smith 
4573a63bb30eSJed Brown    Not Collective, but Vec is parallel if SNES is parallel. Collective if Vec is requested, but has not been created yet.
4574c7afd0dbSLois Curfman McInnes 
45759b94acceSBarry Smith    Input Parameter:
45769b94acceSBarry Smith .  snes - the SNES context
45779b94acceSBarry Smith 
45789b94acceSBarry Smith    Output Parameter:
45790298fd71SBarry Smith +  r - the vector that is used to store residuals (or NULL if you don't want it)
4580f8b49ee9SBarry Smith .  f - the function (or NULL if you don't want it); see SNESFunction for calling sequence details
45810298fd71SBarry Smith -  ctx - the function context (or NULL if you don't want it)
45829b94acceSBarry Smith 
458336851e7fSLois Curfman McInnes    Level: advanced
458436851e7fSLois Curfman McInnes 
458504edfde5SBarry Smith     Notes: The vector r DOES NOT, in general contain the current value of the SNES nonlinear function
458604edfde5SBarry Smith 
4587a86d99e1SLois Curfman McInnes .keywords: SNES, nonlinear, get, function
45889b94acceSBarry Smith 
4589bf388a1fSBarry Smith .seealso: SNESSetFunction(), SNESGetSolution(), SNESFunction
45909b94acceSBarry Smith @*/
4591f8b49ee9SBarry Smith PetscErrorCode  SNESGetFunction(SNES snes,Vec *r,PetscErrorCode (**f)(SNES,Vec,Vec,void*),void **ctx)
45929b94acceSBarry Smith {
4593a63bb30eSJed Brown   PetscErrorCode ierr;
45946cab3a1bSJed Brown   DM             dm;
4595a63bb30eSJed Brown 
45963a40ed3dSBarry Smith   PetscFunctionBegin;
45970700a824SBarry Smith   PetscValidHeaderSpecific(snes,SNES_CLASSID,1);
4598a63bb30eSJed Brown   if (r) {
4599a63bb30eSJed Brown     if (!snes->vec_func) {
4600a63bb30eSJed Brown       if (snes->vec_rhs) {
4601a63bb30eSJed Brown         ierr = VecDuplicate(snes->vec_rhs,&snes->vec_func);CHKERRQ(ierr);
4602a63bb30eSJed Brown       } else if (snes->vec_sol) {
4603a63bb30eSJed Brown         ierr = VecDuplicate(snes->vec_sol,&snes->vec_func);CHKERRQ(ierr);
4604a63bb30eSJed Brown       } else if (snes->dm) {
4605a63bb30eSJed Brown         ierr = DMCreateGlobalVector(snes->dm,&snes->vec_func);CHKERRQ(ierr);
4606a63bb30eSJed Brown       }
4607a63bb30eSJed Brown     }
4608a63bb30eSJed Brown     *r = snes->vec_func;
4609a63bb30eSJed Brown   }
46106cab3a1bSJed Brown   ierr = SNESGetDM(snes,&dm);CHKERRQ(ierr);
4611f8b49ee9SBarry Smith   ierr = DMSNESGetFunction(dm,f,ctx);CHKERRQ(ierr);
46123a40ed3dSBarry Smith   PetscFunctionReturn(0);
46139b94acceSBarry Smith }
46149b94acceSBarry Smith 
4615c79ef259SPeter Brune /*@C
4616be95d8f1SBarry Smith    SNESGetNGS - Returns the NGS function and context.
4617c79ef259SPeter Brune 
4618c79ef259SPeter Brune    Input Parameter:
4619c79ef259SPeter Brune .  snes - the SNES context
4620c79ef259SPeter Brune 
4621c79ef259SPeter Brune    Output Parameter:
4622be95d8f1SBarry Smith +  f - the function (or NULL) see SNESNGSFunction for details
46230298fd71SBarry Smith -  ctx    - the function context (or NULL)
4624c79ef259SPeter Brune 
4625c79ef259SPeter Brune    Level: advanced
4626c79ef259SPeter Brune 
4627c79ef259SPeter Brune .keywords: SNES, nonlinear, get, function
4628c79ef259SPeter Brune 
4629be95d8f1SBarry Smith .seealso: SNESSetNGS(), SNESGetFunction()
4630c79ef259SPeter Brune @*/
4631c79ef259SPeter Brune 
4632be95d8f1SBarry Smith PetscErrorCode SNESGetNGS (SNES snes, PetscErrorCode (**f)(SNES, Vec, Vec, void*), void ** ctx)
4633646217ecSPeter Brune {
46346cab3a1bSJed Brown   PetscErrorCode ierr;
46356cab3a1bSJed Brown   DM             dm;
46366cab3a1bSJed Brown 
4637646217ecSPeter Brune   PetscFunctionBegin;
4638646217ecSPeter Brune   PetscValidHeaderSpecific(snes,SNES_CLASSID,1);
46396cab3a1bSJed Brown   ierr = SNESGetDM(snes,&dm);CHKERRQ(ierr);
4640be95d8f1SBarry Smith   ierr = DMSNESGetNGS(dm,f,ctx);CHKERRQ(ierr);
4641646217ecSPeter Brune   PetscFunctionReturn(0);
4642646217ecSPeter Brune }
4643646217ecSPeter Brune 
46443c7409f5SSatish Balay /*@C
46453c7409f5SSatish Balay    SNESSetOptionsPrefix - Sets the prefix used for searching for all
4646d850072dSLois Curfman McInnes    SNES options in the database.
46473c7409f5SSatish Balay 
46483f9fe445SBarry Smith    Logically Collective on SNES
4649fee21e36SBarry Smith 
4650c7afd0dbSLois Curfman McInnes    Input Parameter:
4651c7afd0dbSLois Curfman McInnes +  snes - the SNES context
4652c7afd0dbSLois Curfman McInnes -  prefix - the prefix to prepend to all option names
4653c7afd0dbSLois Curfman McInnes 
4654d850072dSLois Curfman McInnes    Notes:
4655a83b1b31SSatish Balay    A hyphen (-) must NOT be given at the beginning of the prefix name.
4656c7afd0dbSLois Curfman McInnes    The first character of all runtime options is AUTOMATICALLY the hyphen.
4657d850072dSLois Curfman McInnes 
465836851e7fSLois Curfman McInnes    Level: advanced
465936851e7fSLois Curfman McInnes 
46603c7409f5SSatish Balay .keywords: SNES, set, options, prefix, database
4661a86d99e1SLois Curfman McInnes 
4662a86d99e1SLois Curfman McInnes .seealso: SNESSetFromOptions()
46633c7409f5SSatish Balay @*/
46647087cfbeSBarry Smith PetscErrorCode  SNESSetOptionsPrefix(SNES snes,const char prefix[])
46653c7409f5SSatish Balay {
4666dfbe8321SBarry Smith   PetscErrorCode ierr;
46673c7409f5SSatish Balay 
46683a40ed3dSBarry Smith   PetscFunctionBegin;
46690700a824SBarry Smith   PetscValidHeaderSpecific(snes,SNES_CLASSID,1);
4670639f9d9dSBarry Smith   ierr = PetscObjectSetOptionsPrefix((PetscObject)snes,prefix);CHKERRQ(ierr);
46711cee3971SBarry Smith   if (!snes->ksp) {ierr = SNESGetKSP(snes,&snes->ksp);CHKERRQ(ierr);}
467235f5d045SPeter Brune   if (snes->linesearch) {
46737601faf0SJed Brown     ierr = SNESGetLineSearch(snes,&snes->linesearch);CHKERRQ(ierr);
467408b6c495SPeter Brune     ierr = PetscObjectSetOptionsPrefix((PetscObject)snes->linesearch,prefix);CHKERRQ(ierr);
467535f5d045SPeter Brune   }
467635f5d045SPeter Brune   ierr = KSPSetOptionsPrefix(snes->ksp,prefix);CHKERRQ(ierr);
46773a40ed3dSBarry Smith   PetscFunctionReturn(0);
46783c7409f5SSatish Balay }
46793c7409f5SSatish Balay 
46803c7409f5SSatish Balay /*@C
4681f525115eSLois Curfman McInnes    SNESAppendOptionsPrefix - Appends to the prefix used for searching for all
4682d850072dSLois Curfman McInnes    SNES options in the database.
46833c7409f5SSatish Balay 
46843f9fe445SBarry Smith    Logically Collective on SNES
4685fee21e36SBarry Smith 
4686c7afd0dbSLois Curfman McInnes    Input Parameters:
4687c7afd0dbSLois Curfman McInnes +  snes - the SNES context
4688c7afd0dbSLois Curfman McInnes -  prefix - the prefix to prepend to all option names
4689c7afd0dbSLois Curfman McInnes 
4690d850072dSLois Curfman McInnes    Notes:
4691a83b1b31SSatish Balay    A hyphen (-) must NOT be given at the beginning of the prefix name.
4692c7afd0dbSLois Curfman McInnes    The first character of all runtime options is AUTOMATICALLY the hyphen.
4693d850072dSLois Curfman McInnes 
469436851e7fSLois Curfman McInnes    Level: advanced
469536851e7fSLois Curfman McInnes 
46963c7409f5SSatish Balay .keywords: SNES, append, options, prefix, database
4697a86d99e1SLois Curfman McInnes 
4698a86d99e1SLois Curfman McInnes .seealso: SNESGetOptionsPrefix()
46993c7409f5SSatish Balay @*/
47007087cfbeSBarry Smith PetscErrorCode  SNESAppendOptionsPrefix(SNES snes,const char prefix[])
47013c7409f5SSatish Balay {
4702dfbe8321SBarry Smith   PetscErrorCode ierr;
47033c7409f5SSatish Balay 
47043a40ed3dSBarry Smith   PetscFunctionBegin;
47050700a824SBarry Smith   PetscValidHeaderSpecific(snes,SNES_CLASSID,1);
4706639f9d9dSBarry Smith   ierr = PetscObjectAppendOptionsPrefix((PetscObject)snes,prefix);CHKERRQ(ierr);
47071cee3971SBarry Smith   if (!snes->ksp) {ierr = SNESGetKSP(snes,&snes->ksp);CHKERRQ(ierr);}
470835f5d045SPeter Brune   if (snes->linesearch) {
47097601faf0SJed Brown     ierr = SNESGetLineSearch(snes,&snes->linesearch);CHKERRQ(ierr);
471008b6c495SPeter Brune     ierr = PetscObjectAppendOptionsPrefix((PetscObject)snes->linesearch,prefix);CHKERRQ(ierr);
471135f5d045SPeter Brune   }
471235f5d045SPeter Brune   ierr = KSPAppendOptionsPrefix(snes->ksp,prefix);CHKERRQ(ierr);
47133a40ed3dSBarry Smith   PetscFunctionReturn(0);
47143c7409f5SSatish Balay }
47153c7409f5SSatish Balay 
47169ab63eb5SSatish Balay /*@C
47173c7409f5SSatish Balay    SNESGetOptionsPrefix - Sets the prefix used for searching for all
47183c7409f5SSatish Balay    SNES options in the database.
47193c7409f5SSatish Balay 
4720c7afd0dbSLois Curfman McInnes    Not Collective
4721c7afd0dbSLois Curfman McInnes 
47223c7409f5SSatish Balay    Input Parameter:
47233c7409f5SSatish Balay .  snes - the SNES context
47243c7409f5SSatish Balay 
47253c7409f5SSatish Balay    Output Parameter:
47263c7409f5SSatish Balay .  prefix - pointer to the prefix string used
47273c7409f5SSatish Balay 
47284ef407dbSRichard Tran Mills    Notes: On the fortran side, the user should pass in a string 'prefix' of
47299ab63eb5SSatish Balay    sufficient length to hold the prefix.
47309ab63eb5SSatish Balay 
473136851e7fSLois Curfman McInnes    Level: advanced
473236851e7fSLois Curfman McInnes 
47333c7409f5SSatish Balay .keywords: SNES, get, options, prefix, database
4734a86d99e1SLois Curfman McInnes 
4735a86d99e1SLois Curfman McInnes .seealso: SNESAppendOptionsPrefix()
47363c7409f5SSatish Balay @*/
47377087cfbeSBarry Smith PetscErrorCode  SNESGetOptionsPrefix(SNES snes,const char *prefix[])
47383c7409f5SSatish Balay {
4739dfbe8321SBarry Smith   PetscErrorCode ierr;
47403c7409f5SSatish Balay 
47413a40ed3dSBarry Smith   PetscFunctionBegin;
47420700a824SBarry Smith   PetscValidHeaderSpecific(snes,SNES_CLASSID,1);
4743639f9d9dSBarry Smith   ierr = PetscObjectGetOptionsPrefix((PetscObject)snes,prefix);CHKERRQ(ierr);
47443a40ed3dSBarry Smith   PetscFunctionReturn(0);
47453c7409f5SSatish Balay }
47463c7409f5SSatish Balay 
4747b2002411SLois Curfman McInnes 
47483cea93caSBarry Smith /*@C
47491c84c290SBarry Smith   SNESRegister - Adds a method to the nonlinear solver package.
47501c84c290SBarry Smith 
47511c84c290SBarry Smith    Not collective
47521c84c290SBarry Smith 
47531c84c290SBarry Smith    Input Parameters:
47541c84c290SBarry Smith +  name_solver - name of a new user-defined solver
47551c84c290SBarry Smith -  routine_create - routine to create method context
47561c84c290SBarry Smith 
47571c84c290SBarry Smith    Notes:
47581c84c290SBarry Smith    SNESRegister() may be called multiple times to add several user-defined solvers.
47591c84c290SBarry Smith 
47601c84c290SBarry Smith    Sample usage:
47611c84c290SBarry Smith .vb
4762bdf89e91SBarry Smith    SNESRegister("my_solver",MySolverCreate);
47631c84c290SBarry Smith .ve
47641c84c290SBarry Smith 
47651c84c290SBarry Smith    Then, your solver can be chosen with the procedural interface via
47661c84c290SBarry Smith $     SNESSetType(snes,"my_solver")
47671c84c290SBarry Smith    or at runtime via the option
47681c84c290SBarry Smith $     -snes_type my_solver
47691c84c290SBarry Smith 
47701c84c290SBarry Smith    Level: advanced
47711c84c290SBarry Smith 
47721c84c290SBarry Smith     Note: If your function is not being put into a shared library then use SNESRegister() instead
47731c84c290SBarry Smith 
47741c84c290SBarry Smith .keywords: SNES, nonlinear, register
47751c84c290SBarry Smith 
47761c84c290SBarry Smith .seealso: SNESRegisterAll(), SNESRegisterDestroy()
47773cea93caSBarry Smith 
47787f6c08e0SMatthew Knepley   Level: advanced
47793cea93caSBarry Smith @*/
4780bdf89e91SBarry Smith PetscErrorCode  SNESRegister(const char sname[],PetscErrorCode (*function)(SNES))
4781b2002411SLois Curfman McInnes {
4782dfbe8321SBarry Smith   PetscErrorCode ierr;
4783b2002411SLois Curfman McInnes 
4784b2002411SLois Curfman McInnes   PetscFunctionBegin;
4785a240a19fSJed Brown   ierr = PetscFunctionListAdd(&SNESList,sname,function);CHKERRQ(ierr);
4786b2002411SLois Curfman McInnes   PetscFunctionReturn(0);
4787b2002411SLois Curfman McInnes }
4788da9b6338SBarry Smith 
47897087cfbeSBarry Smith PetscErrorCode  SNESTestLocalMin(SNES snes)
4790da9b6338SBarry Smith {
4791dfbe8321SBarry Smith   PetscErrorCode ierr;
479277431f27SBarry Smith   PetscInt       N,i,j;
4793da9b6338SBarry Smith   Vec            u,uh,fh;
4794da9b6338SBarry Smith   PetscScalar    value;
4795da9b6338SBarry Smith   PetscReal      norm;
4796da9b6338SBarry Smith 
4797da9b6338SBarry Smith   PetscFunctionBegin;
4798da9b6338SBarry Smith   ierr = SNESGetSolution(snes,&u);CHKERRQ(ierr);
4799da9b6338SBarry Smith   ierr = VecDuplicate(u,&uh);CHKERRQ(ierr);
4800da9b6338SBarry Smith   ierr = VecDuplicate(u,&fh);CHKERRQ(ierr);
4801da9b6338SBarry Smith 
4802da9b6338SBarry Smith   /* currently only works for sequential */
480322d28d08SBarry Smith   ierr = PetscPrintf(PETSC_COMM_WORLD,"Testing FormFunction() for local min\n");CHKERRQ(ierr);
4804da9b6338SBarry Smith   ierr = VecGetSize(u,&N);CHKERRQ(ierr);
4805da9b6338SBarry Smith   for (i=0; i<N; i++) {
4806da9b6338SBarry Smith     ierr = VecCopy(u,uh);CHKERRQ(ierr);
480777431f27SBarry Smith     ierr = PetscPrintf(PETSC_COMM_WORLD,"i = %D\n",i);CHKERRQ(ierr);
4808da9b6338SBarry Smith     for (j=-10; j<11; j++) {
48098b49ba18SBarry Smith       value = PetscSign(j)*PetscExpReal(PetscAbs(j)-10.0);
4810da9b6338SBarry Smith       ierr  = VecSetValue(uh,i,value,ADD_VALUES);CHKERRQ(ierr);
48113ab0aad5SBarry Smith       ierr  = SNESComputeFunction(snes,uh,fh);CHKERRQ(ierr);
4812da9b6338SBarry Smith       ierr  = VecNorm(fh,NORM_2,&norm);CHKERRQ(ierr);
481377431f27SBarry Smith       ierr  = PetscPrintf(PETSC_COMM_WORLD,"       j norm %D %18.16e\n",j,norm);CHKERRQ(ierr);
4814da9b6338SBarry Smith       value = -value;
4815da9b6338SBarry Smith       ierr  = VecSetValue(uh,i,value,ADD_VALUES);CHKERRQ(ierr);
4816da9b6338SBarry Smith     }
4817da9b6338SBarry Smith   }
48186bf464f9SBarry Smith   ierr = VecDestroy(&uh);CHKERRQ(ierr);
48196bf464f9SBarry Smith   ierr = VecDestroy(&fh);CHKERRQ(ierr);
4820da9b6338SBarry Smith   PetscFunctionReturn(0);
4821da9b6338SBarry Smith }
482271f87433Sdalcinl 
482371f87433Sdalcinl /*@
4824fa9f3622SBarry Smith    SNESKSPSetUseEW - Sets SNES use Eisenstat-Walker method for
482571f87433Sdalcinl    computing relative tolerance for linear solvers within an inexact
482671f87433Sdalcinl    Newton method.
482771f87433Sdalcinl 
48283f9fe445SBarry Smith    Logically Collective on SNES
482971f87433Sdalcinl 
483071f87433Sdalcinl    Input Parameters:
483171f87433Sdalcinl +  snes - SNES context
483271f87433Sdalcinl -  flag - PETSC_TRUE or PETSC_FALSE
483371f87433Sdalcinl 
483464ba62caSBarry Smith     Options Database:
483564ba62caSBarry Smith +  -snes_ksp_ew - use Eisenstat-Walker method for determining linear system convergence
483664ba62caSBarry Smith .  -snes_ksp_ew_version ver - version of  Eisenstat-Walker method
483764ba62caSBarry Smith .  -snes_ksp_ew_rtol0 <rtol0> - Sets rtol0
483864ba62caSBarry Smith .  -snes_ksp_ew_rtolmax <rtolmax> - Sets rtolmax
483964ba62caSBarry Smith .  -snes_ksp_ew_gamma <gamma> - Sets gamma
484064ba62caSBarry Smith .  -snes_ksp_ew_alpha <alpha> - Sets alpha
484164ba62caSBarry Smith .  -snes_ksp_ew_alpha2 <alpha2> - Sets alpha2
484264ba62caSBarry Smith -  -snes_ksp_ew_threshold <threshold> - Sets threshold
484364ba62caSBarry Smith 
484471f87433Sdalcinl    Notes:
484571f87433Sdalcinl    Currently, the default is to use a constant relative tolerance for
484671f87433Sdalcinl    the inner linear solvers.  Alternatively, one can use the
484771f87433Sdalcinl    Eisenstat-Walker method, where the relative convergence tolerance
484871f87433Sdalcinl    is reset at each Newton iteration according progress of the nonlinear
484971f87433Sdalcinl    solver.
485071f87433Sdalcinl 
485171f87433Sdalcinl    Level: advanced
485271f87433Sdalcinl 
485371f87433Sdalcinl    Reference:
485471f87433Sdalcinl    S. C. Eisenstat and H. F. Walker, "Choosing the forcing terms in an
485571f87433Sdalcinl    inexact Newton method", SISC 17 (1), pp.16-32, 1996.
485671f87433Sdalcinl 
485771f87433Sdalcinl .keywords: SNES, KSP, Eisenstat, Walker, convergence, test, inexact, Newton
485871f87433Sdalcinl 
4859fa9f3622SBarry Smith .seealso: SNESKSPGetUseEW(), SNESKSPGetParametersEW(), SNESKSPSetParametersEW()
486071f87433Sdalcinl @*/
48617087cfbeSBarry Smith PetscErrorCode  SNESKSPSetUseEW(SNES snes,PetscBool flag)
486271f87433Sdalcinl {
486371f87433Sdalcinl   PetscFunctionBegin;
48640700a824SBarry Smith   PetscValidHeaderSpecific(snes,SNES_CLASSID,1);
4865acfcf0e5SJed Brown   PetscValidLogicalCollectiveBool(snes,flag,2);
486671f87433Sdalcinl   snes->ksp_ewconv = flag;
486771f87433Sdalcinl   PetscFunctionReturn(0);
486871f87433Sdalcinl }
486971f87433Sdalcinl 
487071f87433Sdalcinl /*@
4871fa9f3622SBarry Smith    SNESKSPGetUseEW - Gets if SNES is using Eisenstat-Walker method
487271f87433Sdalcinl    for computing relative tolerance for linear solvers within an
487371f87433Sdalcinl    inexact Newton method.
487471f87433Sdalcinl 
487571f87433Sdalcinl    Not Collective
487671f87433Sdalcinl 
487771f87433Sdalcinl    Input Parameter:
487871f87433Sdalcinl .  snes - SNES context
487971f87433Sdalcinl 
488071f87433Sdalcinl    Output Parameter:
488171f87433Sdalcinl .  flag - PETSC_TRUE or PETSC_FALSE
488271f87433Sdalcinl 
488371f87433Sdalcinl    Notes:
488471f87433Sdalcinl    Currently, the default is to use a constant relative tolerance for
488571f87433Sdalcinl    the inner linear solvers.  Alternatively, one can use the
488671f87433Sdalcinl    Eisenstat-Walker method, where the relative convergence tolerance
488771f87433Sdalcinl    is reset at each Newton iteration according progress of the nonlinear
488871f87433Sdalcinl    solver.
488971f87433Sdalcinl 
489071f87433Sdalcinl    Level: advanced
489171f87433Sdalcinl 
489271f87433Sdalcinl    Reference:
489371f87433Sdalcinl    S. C. Eisenstat and H. F. Walker, "Choosing the forcing terms in an
489471f87433Sdalcinl    inexact Newton method", SISC 17 (1), pp.16-32, 1996.
489571f87433Sdalcinl 
489671f87433Sdalcinl .keywords: SNES, KSP, Eisenstat, Walker, convergence, test, inexact, Newton
489771f87433Sdalcinl 
4898fa9f3622SBarry Smith .seealso: SNESKSPSetUseEW(), SNESKSPGetParametersEW(), SNESKSPSetParametersEW()
489971f87433Sdalcinl @*/
49007087cfbeSBarry Smith PetscErrorCode  SNESKSPGetUseEW(SNES snes, PetscBool  *flag)
490171f87433Sdalcinl {
490271f87433Sdalcinl   PetscFunctionBegin;
49030700a824SBarry Smith   PetscValidHeaderSpecific(snes,SNES_CLASSID,1);
490471f87433Sdalcinl   PetscValidPointer(flag,2);
490571f87433Sdalcinl   *flag = snes->ksp_ewconv;
490671f87433Sdalcinl   PetscFunctionReturn(0);
490771f87433Sdalcinl }
490871f87433Sdalcinl 
490971f87433Sdalcinl /*@
4910fa9f3622SBarry Smith    SNESKSPSetParametersEW - Sets parameters for Eisenstat-Walker
491171f87433Sdalcinl    convergence criteria for the linear solvers within an inexact
491271f87433Sdalcinl    Newton method.
491371f87433Sdalcinl 
49143f9fe445SBarry Smith    Logically Collective on SNES
491571f87433Sdalcinl 
491671f87433Sdalcinl    Input Parameters:
491771f87433Sdalcinl +    snes - SNES context
491871f87433Sdalcinl .    version - version 1, 2 (default is 2) or 3
491971f87433Sdalcinl .    rtol_0 - initial relative tolerance (0 <= rtol_0 < 1)
492071f87433Sdalcinl .    rtol_max - maximum relative tolerance (0 <= rtol_max < 1)
492171f87433Sdalcinl .    gamma - multiplicative factor for version 2 rtol computation
492271f87433Sdalcinl              (0 <= gamma2 <= 1)
492371f87433Sdalcinl .    alpha - power for version 2 rtol computation (1 < alpha <= 2)
492471f87433Sdalcinl .    alpha2 - power for safeguard
492571f87433Sdalcinl -    threshold - threshold for imposing safeguard (0 < threshold < 1)
492671f87433Sdalcinl 
492771f87433Sdalcinl    Note:
492871f87433Sdalcinl    Version 3 was contributed by Luis Chacon, June 2006.
492971f87433Sdalcinl 
493071f87433Sdalcinl    Use PETSC_DEFAULT to retain the default for any of the parameters.
493171f87433Sdalcinl 
493271f87433Sdalcinl    Level: advanced
493371f87433Sdalcinl 
493471f87433Sdalcinl    Reference:
493571f87433Sdalcinl    S. C. Eisenstat and H. F. Walker, "Choosing the forcing terms in an
493671f87433Sdalcinl    inexact Newton method", Utah State University Math. Stat. Dept. Res.
493771f87433Sdalcinl    Report 6/94/75, June, 1994, to appear in SIAM J. Sci. Comput.
493871f87433Sdalcinl 
493971f87433Sdalcinl .keywords: SNES, KSP, Eisenstat, Walker, set, parameters
494071f87433Sdalcinl 
4941fa9f3622SBarry Smith .seealso: SNESKSPSetUseEW(), SNESKSPGetUseEW(), SNESKSPGetParametersEW()
494271f87433Sdalcinl @*/
4943f5af7f23SKarl Rupp PetscErrorCode  SNESKSPSetParametersEW(SNES snes,PetscInt version,PetscReal rtol_0,PetscReal rtol_max,PetscReal gamma,PetscReal alpha,PetscReal alpha2,PetscReal threshold)
494471f87433Sdalcinl {
4945fa9f3622SBarry Smith   SNESKSPEW *kctx;
49465fd66863SKarl Rupp 
494771f87433Sdalcinl   PetscFunctionBegin;
49480700a824SBarry Smith   PetscValidHeaderSpecific(snes,SNES_CLASSID,1);
4949fa9f3622SBarry Smith   kctx = (SNESKSPEW*)snes->kspconvctx;
4950e32f2f54SBarry Smith   if (!kctx) SETERRQ(PETSC_COMM_SELF,PETSC_ERR_ARG_WRONGSTATE,"No Eisenstat-Walker context existing");
4951c5eb9154SBarry Smith   PetscValidLogicalCollectiveInt(snes,version,2);
4952c5eb9154SBarry Smith   PetscValidLogicalCollectiveReal(snes,rtol_0,3);
4953c5eb9154SBarry Smith   PetscValidLogicalCollectiveReal(snes,rtol_max,4);
4954c5eb9154SBarry Smith   PetscValidLogicalCollectiveReal(snes,gamma,5);
4955c5eb9154SBarry Smith   PetscValidLogicalCollectiveReal(snes,alpha,6);
4956c5eb9154SBarry Smith   PetscValidLogicalCollectiveReal(snes,alpha2,7);
4957c5eb9154SBarry Smith   PetscValidLogicalCollectiveReal(snes,threshold,8);
495871f87433Sdalcinl 
495971f87433Sdalcinl   if (version != PETSC_DEFAULT)   kctx->version   = version;
496071f87433Sdalcinl   if (rtol_0 != PETSC_DEFAULT)    kctx->rtol_0    = rtol_0;
496171f87433Sdalcinl   if (rtol_max != PETSC_DEFAULT)  kctx->rtol_max  = rtol_max;
496271f87433Sdalcinl   if (gamma != PETSC_DEFAULT)     kctx->gamma     = gamma;
496371f87433Sdalcinl   if (alpha != PETSC_DEFAULT)     kctx->alpha     = alpha;
496471f87433Sdalcinl   if (alpha2 != PETSC_DEFAULT)    kctx->alpha2    = alpha2;
496571f87433Sdalcinl   if (threshold != PETSC_DEFAULT) kctx->threshold = threshold;
496671f87433Sdalcinl 
4967f23aa3ddSBarry Smith   if (kctx->version < 1 || kctx->version > 3) SETERRQ1(PETSC_COMM_SELF,PETSC_ERR_ARG_OUTOFRANGE,"Only versions 1, 2 and 3 are supported: %D",kctx->version);
496857622a8eSBarry Smith   if (kctx->rtol_0 < 0.0 || kctx->rtol_0 >= 1.0) SETERRQ1(PETSC_COMM_SELF,PETSC_ERR_ARG_OUTOFRANGE,"0.0 <= rtol_0 < 1.0: %g",(double)kctx->rtol_0);
496957622a8eSBarry Smith   if (kctx->rtol_max < 0.0 || kctx->rtol_max >= 1.0) SETERRQ1(PETSC_COMM_SELF,PETSC_ERR_ARG_OUTOFRANGE,"0.0 <= rtol_max (%g) < 1.0\n",(double)kctx->rtol_max);
497057622a8eSBarry Smith   if (kctx->gamma < 0.0 || kctx->gamma > 1.0) SETERRQ1(PETSC_COMM_SELF,PETSC_ERR_ARG_OUTOFRANGE,"0.0 <= gamma (%g) <= 1.0\n",(double)kctx->gamma);
497157622a8eSBarry Smith   if (kctx->alpha <= 1.0 || kctx->alpha > 2.0) SETERRQ1(PETSC_COMM_SELF,PETSC_ERR_ARG_OUTOFRANGE,"1.0 < alpha (%g) <= 2.0\n",(double)kctx->alpha);
497257622a8eSBarry Smith   if (kctx->threshold <= 0.0 || kctx->threshold >= 1.0) SETERRQ1(PETSC_COMM_SELF,PETSC_ERR_ARG_OUTOFRANGE,"0.0 < threshold (%g) < 1.0\n",(double)kctx->threshold);
497371f87433Sdalcinl   PetscFunctionReturn(0);
497471f87433Sdalcinl }
497571f87433Sdalcinl 
497671f87433Sdalcinl /*@
4977fa9f3622SBarry Smith    SNESKSPGetParametersEW - Gets parameters for Eisenstat-Walker
497871f87433Sdalcinl    convergence criteria for the linear solvers within an inexact
497971f87433Sdalcinl    Newton method.
498071f87433Sdalcinl 
498171f87433Sdalcinl    Not Collective
498271f87433Sdalcinl 
498371f87433Sdalcinl    Input Parameters:
498471f87433Sdalcinl      snes - SNES context
498571f87433Sdalcinl 
498671f87433Sdalcinl    Output Parameters:
498771f87433Sdalcinl +    version - version 1, 2 (default is 2) or 3
498871f87433Sdalcinl .    rtol_0 - initial relative tolerance (0 <= rtol_0 < 1)
498971f87433Sdalcinl .    rtol_max - maximum relative tolerance (0 <= rtol_max < 1)
4990bf388a1fSBarry Smith .    gamma - multiplicative factor for version 2 rtol computation (0 <= gamma2 <= 1)
499171f87433Sdalcinl .    alpha - power for version 2 rtol computation (1 < alpha <= 2)
499271f87433Sdalcinl .    alpha2 - power for safeguard
499371f87433Sdalcinl -    threshold - threshold for imposing safeguard (0 < threshold < 1)
499471f87433Sdalcinl 
499571f87433Sdalcinl    Level: advanced
499671f87433Sdalcinl 
499771f87433Sdalcinl .keywords: SNES, KSP, Eisenstat, Walker, get, parameters
499871f87433Sdalcinl 
4999fa9f3622SBarry Smith .seealso: SNESKSPSetUseEW(), SNESKSPGetUseEW(), SNESKSPSetParametersEW()
500071f87433Sdalcinl @*/
5001bf388a1fSBarry Smith PetscErrorCode  SNESKSPGetParametersEW(SNES snes,PetscInt *version,PetscReal *rtol_0,PetscReal *rtol_max,PetscReal *gamma,PetscReal *alpha,PetscReal *alpha2,PetscReal *threshold)
500271f87433Sdalcinl {
5003fa9f3622SBarry Smith   SNESKSPEW *kctx;
50045fd66863SKarl Rupp 
500571f87433Sdalcinl   PetscFunctionBegin;
50060700a824SBarry Smith   PetscValidHeaderSpecific(snes,SNES_CLASSID,1);
5007fa9f3622SBarry Smith   kctx = (SNESKSPEW*)snes->kspconvctx;
5008e32f2f54SBarry Smith   if (!kctx) SETERRQ(PETSC_COMM_SELF,PETSC_ERR_ARG_WRONGSTATE,"No Eisenstat-Walker context existing");
500971f87433Sdalcinl   if (version)   *version   = kctx->version;
501071f87433Sdalcinl   if (rtol_0)    *rtol_0    = kctx->rtol_0;
501171f87433Sdalcinl   if (rtol_max)  *rtol_max  = kctx->rtol_max;
501271f87433Sdalcinl   if (gamma)     *gamma     = kctx->gamma;
501371f87433Sdalcinl   if (alpha)     *alpha     = kctx->alpha;
501471f87433Sdalcinl   if (alpha2)    *alpha2    = kctx->alpha2;
501571f87433Sdalcinl   if (threshold) *threshold = kctx->threshold;
501671f87433Sdalcinl   PetscFunctionReturn(0);
501771f87433Sdalcinl }
501871f87433Sdalcinl 
5019d5378b5fSDmitry Karpeev  PetscErrorCode KSPPreSolve_SNESEW(KSP ksp, Vec b, Vec x, SNES snes)
502071f87433Sdalcinl {
502171f87433Sdalcinl   PetscErrorCode ierr;
5022fa9f3622SBarry Smith   SNESKSPEW      *kctx = (SNESKSPEW*)snes->kspconvctx;
502371f87433Sdalcinl   PetscReal      rtol  = PETSC_DEFAULT,stol;
502471f87433Sdalcinl 
502571f87433Sdalcinl   PetscFunctionBegin;
5026d4211eb9SBarry Smith   if (!snes->ksp_ewconv) PetscFunctionReturn(0);
502730058271SDmitry Karpeev   if (!snes->iter) {
502830058271SDmitry Karpeev     rtol = kctx->rtol_0; /* first time in, so use the original user rtol */
502930058271SDmitry Karpeev     ierr = VecNorm(snes->vec_func,NORM_2,&kctx->norm_first);CHKERRQ(ierr);
503030058271SDmitry Karpeev   }
5031f5af7f23SKarl Rupp   else {
503271f87433Sdalcinl     if (kctx->version == 1) {
503371f87433Sdalcinl       rtol = (snes->norm - kctx->lresid_last)/kctx->norm_last;
503471f87433Sdalcinl       if (rtol < 0.0) rtol = -rtol;
503585ec1a3cSBarry Smith       stol = PetscPowReal(kctx->rtol_last,kctx->alpha2);
503671f87433Sdalcinl       if (stol > kctx->threshold) rtol = PetscMax(rtol,stol);
503771f87433Sdalcinl     } else if (kctx->version == 2) {
503885ec1a3cSBarry Smith       rtol = kctx->gamma * PetscPowReal(snes->norm/kctx->norm_last,kctx->alpha);
503985ec1a3cSBarry Smith       stol = kctx->gamma * PetscPowReal(kctx->rtol_last,kctx->alpha);
504071f87433Sdalcinl       if (stol > kctx->threshold) rtol = PetscMax(rtol,stol);
504171f87433Sdalcinl     } else if (kctx->version == 3) { /* contributed by Luis Chacon, June 2006. */
504285ec1a3cSBarry Smith       rtol = kctx->gamma * PetscPowReal(snes->norm/kctx->norm_last,kctx->alpha);
504371f87433Sdalcinl       /* safeguard: avoid sharp decrease of rtol */
504485ec1a3cSBarry Smith       stol = kctx->gamma*PetscPowReal(kctx->rtol_last,kctx->alpha);
504571f87433Sdalcinl       stol = PetscMax(rtol,stol);
504671f87433Sdalcinl       rtol = PetscMin(kctx->rtol_0,stol);
504771f87433Sdalcinl       /* safeguard: avoid oversolving */
504830058271SDmitry Karpeev       stol = kctx->gamma*(kctx->norm_first*snes->rtol)/snes->norm;
504971f87433Sdalcinl       stol = PetscMax(rtol,stol);
505071f87433Sdalcinl       rtol = PetscMin(kctx->rtol_0,stol);
5051e32f2f54SBarry Smith     } else SETERRQ1(PETSC_COMM_SELF,PETSC_ERR_ARG_OUTOFRANGE,"Only versions 1, 2 or 3 are supported: %D",kctx->version);
505271f87433Sdalcinl   }
505371f87433Sdalcinl   /* safeguard: avoid rtol greater than one */
505471f87433Sdalcinl   rtol = PetscMin(rtol,kctx->rtol_max);
505571f87433Sdalcinl   ierr = KSPSetTolerances(ksp,rtol,PETSC_DEFAULT,PETSC_DEFAULT,PETSC_DEFAULT);CHKERRQ(ierr);
505657622a8eSBarry Smith   ierr = PetscInfo3(snes,"iter %D, Eisenstat-Walker (version %D) KSP rtol=%g\n",snes->iter,kctx->version,(double)rtol);CHKERRQ(ierr);
505771f87433Sdalcinl   PetscFunctionReturn(0);
505871f87433Sdalcinl }
505971f87433Sdalcinl 
5060d5378b5fSDmitry Karpeev PetscErrorCode KSPPostSolve_SNESEW(KSP ksp, Vec b, Vec x, SNES snes)
506171f87433Sdalcinl {
506271f87433Sdalcinl   PetscErrorCode ierr;
5063fa9f3622SBarry Smith   SNESKSPEW      *kctx = (SNESKSPEW*)snes->kspconvctx;
506471f87433Sdalcinl   PCSide         pcside;
506571f87433Sdalcinl   Vec            lres;
506671f87433Sdalcinl 
506771f87433Sdalcinl   PetscFunctionBegin;
5068d4211eb9SBarry Smith   if (!snes->ksp_ewconv) PetscFunctionReturn(0);
506971f87433Sdalcinl   ierr = KSPGetTolerances(ksp,&kctx->rtol_last,0,0,0);CHKERRQ(ierr);
507071dbe336SPeter Brune   kctx->norm_last = snes->norm;
507171f87433Sdalcinl   if (kctx->version == 1) {
50724f00ce20SMatthew G. Knepley     PC        pc;
50734f00ce20SMatthew G. Knepley     PetscBool isNone;
50744f00ce20SMatthew G. Knepley 
50754f00ce20SMatthew G. Knepley     ierr = KSPGetPC(ksp, &pc);CHKERRQ(ierr);
50764f00ce20SMatthew G. Knepley     ierr = PetscObjectTypeCompare((PetscObject) pc, PCNONE, &isNone);CHKERRQ(ierr);
5077b037da10SBarry Smith     ierr = KSPGetPCSide(ksp,&pcside);CHKERRQ(ierr);
50784f00ce20SMatthew G. Knepley      if (pcside == PC_RIGHT || isNone) { /* XXX Should we also test KSP_UNPRECONDITIONED_NORM ? */
507971f87433Sdalcinl       /* KSP residual is true linear residual */
508071f87433Sdalcinl       ierr = KSPGetResidualNorm(ksp,&kctx->lresid_last);CHKERRQ(ierr);
508171f87433Sdalcinl     } else {
508271f87433Sdalcinl       /* KSP residual is preconditioned residual */
508371f87433Sdalcinl       /* compute true linear residual norm */
508471f87433Sdalcinl       ierr = VecDuplicate(b,&lres);CHKERRQ(ierr);
508571f87433Sdalcinl       ierr = MatMult(snes->jacobian,x,lres);CHKERRQ(ierr);
508671f87433Sdalcinl       ierr = VecAYPX(lres,-1.0,b);CHKERRQ(ierr);
508771f87433Sdalcinl       ierr = VecNorm(lres,NORM_2,&kctx->lresid_last);CHKERRQ(ierr);
50886bf464f9SBarry Smith       ierr = VecDestroy(&lres);CHKERRQ(ierr);
508971f87433Sdalcinl     }
509071f87433Sdalcinl   }
509171f87433Sdalcinl   PetscFunctionReturn(0);
509271f87433Sdalcinl }
509371f87433Sdalcinl 
5094d4211eb9SBarry Smith /*@
5095d4211eb9SBarry Smith    SNESGetKSP - Returns the KSP context for a SNES solver.
5096d4211eb9SBarry Smith 
5097d4211eb9SBarry Smith    Not Collective, but if SNES object is parallel, then KSP object is parallel
5098d4211eb9SBarry Smith 
5099d4211eb9SBarry Smith    Input Parameter:
5100d4211eb9SBarry Smith .  snes - the SNES context
5101d4211eb9SBarry Smith 
5102d4211eb9SBarry Smith    Output Parameter:
5103d4211eb9SBarry Smith .  ksp - the KSP context
5104d4211eb9SBarry Smith 
5105d4211eb9SBarry Smith    Notes:
5106d4211eb9SBarry Smith    The user can then directly manipulate the KSP context to set various
5107d4211eb9SBarry Smith    options, etc.  Likewise, the user can then extract and manipulate the
5108d4211eb9SBarry Smith    PC contexts as well.
5109d4211eb9SBarry Smith 
5110d4211eb9SBarry Smith    Level: beginner
5111d4211eb9SBarry Smith 
5112d4211eb9SBarry Smith .keywords: SNES, nonlinear, get, KSP, context
5113d4211eb9SBarry Smith 
5114d4211eb9SBarry Smith .seealso: KSPGetPC(), SNESCreate(), KSPCreate(), SNESSetKSP()
5115d4211eb9SBarry Smith @*/
5116d4211eb9SBarry Smith PetscErrorCode  SNESGetKSP(SNES snes,KSP *ksp)
511771f87433Sdalcinl {
511871f87433Sdalcinl   PetscErrorCode ierr;
511971f87433Sdalcinl 
512071f87433Sdalcinl   PetscFunctionBegin;
5121d4211eb9SBarry Smith   PetscValidHeaderSpecific(snes,SNES_CLASSID,1);
5122d4211eb9SBarry Smith   PetscValidPointer(ksp,2);
5123d4211eb9SBarry Smith 
5124d4211eb9SBarry Smith   if (!snes->ksp) {
5125a5c2985bSBarry Smith     PetscBool monitor = PETSC_FALSE;
5126a5c2985bSBarry Smith 
5127d4211eb9SBarry Smith     ierr = KSPCreate(PetscObjectComm((PetscObject)snes),&snes->ksp);CHKERRQ(ierr);
5128d4211eb9SBarry Smith     ierr = PetscObjectIncrementTabLevel((PetscObject)snes->ksp,(PetscObject)snes,1);CHKERRQ(ierr);
51293bb1ff40SBarry Smith     ierr = PetscLogObjectParent((PetscObject)snes,(PetscObject)snes->ksp);CHKERRQ(ierr);
5130d4211eb9SBarry Smith 
5131d5378b5fSDmitry Karpeev     ierr = KSPSetPreSolve(snes->ksp,(PetscErrorCode (*)(KSP,Vec,Vec,void*))KSPPreSolve_SNESEW,snes);CHKERRQ(ierr);
5132d5378b5fSDmitry Karpeev     ierr = KSPSetPostSolve(snes->ksp,(PetscErrorCode (*)(KSP,Vec,Vec,void*))KSPPostSolve_SNESEW,snes);CHKERRQ(ierr);
5133a5c2985bSBarry Smith 
5134c5929fdfSBarry Smith     ierr = PetscOptionsGetBool(((PetscObject)snes)->options,((PetscObject)snes)->prefix,"-ksp_monitor_snes",&monitor,NULL);CHKERRQ(ierr);
5135a5c2985bSBarry Smith     if (monitor) {
5136a5c2985bSBarry Smith       ierr = KSPMonitorSet(snes->ksp,KSPMonitorSNES,snes,NULL);CHKERRQ(ierr);
5137a5c2985bSBarry Smith     }
5138e5f7ee39SBarry Smith     monitor = PETSC_FALSE;
5139c5929fdfSBarry Smith     ierr = PetscOptionsGetBool(((PetscObject)snes)->options,((PetscObject)snes)->prefix,"-ksp_monitor_snes_lg",&monitor,NULL);CHKERRQ(ierr);
5140e5f7ee39SBarry Smith     if (monitor) {
5141e5f7ee39SBarry Smith       PetscObject *objs;
51428b0b5a47SLisandro Dalcin       ierr = KSPMonitorSNESLGResidualNormCreate(PetscObjectComm((PetscObject)snes),NULL,NULL,PETSC_DECIDE,PETSC_DECIDE,600,600,&objs);CHKERRQ(ierr);
5143e5f7ee39SBarry Smith       objs[0] = (PetscObject) snes;
5144e5f7ee39SBarry Smith       ierr = KSPMonitorSet(snes->ksp,(PetscErrorCode (*)(KSP,PetscInt,PetscReal,void*))KSPMonitorSNESLGResidualNorm,objs,(PetscErrorCode (*)(void**))KSPMonitorSNESLGResidualNormDestroy);CHKERRQ(ierr);
5145e5f7ee39SBarry Smith     }
5146d4211eb9SBarry Smith   }
5147d4211eb9SBarry Smith   *ksp = snes->ksp;
514871f87433Sdalcinl   PetscFunctionReturn(0);
514971f87433Sdalcinl }
51506c699258SBarry Smith 
5151d4211eb9SBarry Smith 
5152af0996ceSBarry Smith #include <petsc/private/dmimpl.h>
51536c699258SBarry Smith /*@
51542a808120SBarry Smith    SNESSetDM - Sets the DM that may be used by some nonlinear solvers or their underlying preconditioners
51556c699258SBarry Smith 
51563f9fe445SBarry Smith    Logically Collective on SNES
51576c699258SBarry Smith 
51586c699258SBarry Smith    Input Parameters:
51592a808120SBarry Smith +  snes - the nonlinear solver context
51602a808120SBarry Smith -  dm - the dm, cannot be NULL
51616c699258SBarry Smith 
51626c699258SBarry Smith    Level: intermediate
51636c699258SBarry Smith 
51644c2026ceSFande Kong .seealso: SNESGetDM(), KSPSetDM(), KSPGetDM()
51656c699258SBarry Smith @*/
51667087cfbeSBarry Smith PetscErrorCode  SNESSetDM(SNES snes,DM dm)
51676c699258SBarry Smith {
51686c699258SBarry Smith   PetscErrorCode ierr;
5169345fed2cSBarry Smith   KSP            ksp;
5170942e3340SBarry Smith   DMSNES         sdm;
51716c699258SBarry Smith 
51726c699258SBarry Smith   PetscFunctionBegin;
51730700a824SBarry Smith   PetscValidHeaderSpecific(snes,SNES_CLASSID,1);
51742a808120SBarry Smith   PetscValidHeaderSpecific(dm,DM_CLASSID,2);
51752a808120SBarry Smith   ierr = PetscObjectReference((PetscObject)dm);CHKERRQ(ierr);
5176942e3340SBarry Smith   if (snes->dm) {               /* Move the DMSNES context over to the new DM unless the new DM already has one */
517751f4b3c7SToby Isaac     if (snes->dm->dmsnes && !dm->dmsnes) {
5178942e3340SBarry Smith       ierr = DMCopyDMSNES(snes->dm,dm);CHKERRQ(ierr);
5179942e3340SBarry Smith       ierr = DMGetDMSNES(snes->dm,&sdm);CHKERRQ(ierr);
5180f5af7f23SKarl Rupp       if (sdm->originaldm == snes->dm) sdm->originaldm = dm; /* Grant write privileges to the replacement DM */
51816cab3a1bSJed Brown     }
5182dc822a44SJed Brown     ierr = DMCoarsenHookRemove(snes->dm,DMCoarsenHook_SNESVecSol,DMRestrictHook_SNESVecSol,snes);CHKERRQ(ierr);
51836bf464f9SBarry Smith     ierr = DMDestroy(&snes->dm);CHKERRQ(ierr);
51846cab3a1bSJed Brown   }
51856c699258SBarry Smith   snes->dm     = dm;
5186116d1032SJed Brown   snes->dmAuto = PETSC_FALSE;
5187f5af7f23SKarl Rupp 
5188345fed2cSBarry Smith   ierr = SNESGetKSP(snes,&ksp);CHKERRQ(ierr);
5189345fed2cSBarry Smith   ierr = KSPSetDM(ksp,dm);CHKERRQ(ierr);
5190f22f69f0SBarry Smith   ierr = KSPSetDMActive(ksp,PETSC_FALSE);CHKERRQ(ierr);
5191efd4aadfSBarry Smith   if (snes->npc) {
5192efd4aadfSBarry Smith     ierr = SNESSetDM(snes->npc, snes->dm);CHKERRQ(ierr);
5193efd4aadfSBarry Smith     ierr = SNESSetNPCSide(snes,snes->npcside);CHKERRQ(ierr);
51942c155ee1SBarry Smith   }
51956c699258SBarry Smith   PetscFunctionReturn(0);
51966c699258SBarry Smith }
51976c699258SBarry Smith 
51986c699258SBarry Smith /*@
51996c699258SBarry Smith    SNESGetDM - Gets the DM that may be used by some preconditioners
52006c699258SBarry Smith 
52013f9fe445SBarry Smith    Not Collective but DM obtained is parallel on SNES
52026c699258SBarry Smith 
52036c699258SBarry Smith    Input Parameter:
52046c699258SBarry Smith . snes - the preconditioner context
52056c699258SBarry Smith 
52066c699258SBarry Smith    Output Parameter:
52076c699258SBarry Smith .  dm - the dm
52086c699258SBarry Smith 
52096c699258SBarry Smith    Level: intermediate
52106c699258SBarry Smith 
52114c2026ceSFande Kong .seealso: SNESSetDM(), KSPSetDM(), KSPGetDM()
52126c699258SBarry Smith @*/
52137087cfbeSBarry Smith PetscErrorCode  SNESGetDM(SNES snes,DM *dm)
52146c699258SBarry Smith {
52156cab3a1bSJed Brown   PetscErrorCode ierr;
52166cab3a1bSJed Brown 
52176c699258SBarry Smith   PetscFunctionBegin;
52180700a824SBarry Smith   PetscValidHeaderSpecific(snes,SNES_CLASSID,1);
52196cab3a1bSJed Brown   if (!snes->dm) {
5220ce94432eSBarry Smith     ierr         = DMShellCreate(PetscObjectComm((PetscObject)snes),&snes->dm);CHKERRQ(ierr);
5221116d1032SJed Brown     snes->dmAuto = PETSC_TRUE;
52226cab3a1bSJed Brown   }
52236c699258SBarry Smith   *dm = snes->dm;
52246c699258SBarry Smith   PetscFunctionReturn(0);
52256c699258SBarry Smith }
52260807856dSBarry Smith 
522731823bd8SMatthew G Knepley /*@
5228be95d8f1SBarry Smith   SNESSetNPC - Sets the nonlinear preconditioner to be used.
522931823bd8SMatthew G Knepley 
523031823bd8SMatthew G Knepley   Collective on SNES
523131823bd8SMatthew G Knepley 
523231823bd8SMatthew G Knepley   Input Parameters:
523331823bd8SMatthew G Knepley + snes - iterative context obtained from SNESCreate()
523431823bd8SMatthew G Knepley - pc   - the preconditioner object
523531823bd8SMatthew G Knepley 
523631823bd8SMatthew G Knepley   Notes:
5237be95d8f1SBarry Smith   Use SNESGetNPC() to retrieve the preconditioner context (for example,
523831823bd8SMatthew G Knepley   to configure it using the API).
523931823bd8SMatthew G Knepley 
524031823bd8SMatthew G Knepley   Level: developer
524131823bd8SMatthew G Knepley 
524231823bd8SMatthew G Knepley .keywords: SNES, set, precondition
52433ad1a0b9SPatrick Farrell .seealso: SNESGetNPC(), SNESHasNPC()
524431823bd8SMatthew G Knepley @*/
5245be95d8f1SBarry Smith PetscErrorCode SNESSetNPC(SNES snes, SNES pc)
524631823bd8SMatthew G Knepley {
524731823bd8SMatthew G Knepley   PetscErrorCode ierr;
524831823bd8SMatthew G Knepley 
524931823bd8SMatthew G Knepley   PetscFunctionBegin;
525031823bd8SMatthew G Knepley   PetscValidHeaderSpecific(snes, SNES_CLASSID, 1);
525131823bd8SMatthew G Knepley   PetscValidHeaderSpecific(pc, SNES_CLASSID, 2);
525231823bd8SMatthew G Knepley   PetscCheckSameComm(snes, 1, pc, 2);
525331823bd8SMatthew G Knepley   ierr     = PetscObjectReference((PetscObject) pc);CHKERRQ(ierr);
5254efd4aadfSBarry Smith   ierr     = SNESDestroy(&snes->npc);CHKERRQ(ierr);
5255efd4aadfSBarry Smith   snes->npc = pc;
5256efd4aadfSBarry Smith   ierr     = PetscLogObjectParent((PetscObject)snes, (PetscObject)snes->npc);CHKERRQ(ierr);
525731823bd8SMatthew G Knepley   PetscFunctionReturn(0);
525831823bd8SMatthew G Knepley }
525931823bd8SMatthew G Knepley 
526031823bd8SMatthew G Knepley /*@
5261be95d8f1SBarry Smith   SNESGetNPC - Creates a nonlinear preconditioning solver (SNES) to be used to precondition the nonlinear solver.
526231823bd8SMatthew G Knepley 
526331823bd8SMatthew G Knepley   Not Collective
526431823bd8SMatthew G Knepley 
526531823bd8SMatthew G Knepley   Input Parameter:
526631823bd8SMatthew G Knepley . snes - iterative context obtained from SNESCreate()
526731823bd8SMatthew G Knepley 
526831823bd8SMatthew G Knepley   Output Parameter:
526931823bd8SMatthew G Knepley . pc - preconditioner context
527031823bd8SMatthew G Knepley 
5271be95d8f1SBarry Smith   Notes: If a SNES was previously set with SNESSetNPC() then that SNES is returned.
5272be95d8f1SBarry Smith 
527331823bd8SMatthew G Knepley   Level: developer
527431823bd8SMatthew G Knepley 
527531823bd8SMatthew G Knepley .keywords: SNES, get, preconditioner
52763ad1a0b9SPatrick Farrell .seealso: SNESSetNPC(), SNESHasNPC()
527731823bd8SMatthew G Knepley @*/
5278be95d8f1SBarry Smith PetscErrorCode SNESGetNPC(SNES snes, SNES *pc)
527931823bd8SMatthew G Knepley {
528031823bd8SMatthew G Knepley   PetscErrorCode ierr;
5281a64e098fSPeter Brune   const char     *optionsprefix;
528231823bd8SMatthew G Knepley 
528331823bd8SMatthew G Knepley   PetscFunctionBegin;
528431823bd8SMatthew G Knepley   PetscValidHeaderSpecific(snes, SNES_CLASSID, 1);
528531823bd8SMatthew G Knepley   PetscValidPointer(pc, 2);
5286efd4aadfSBarry Smith   if (!snes->npc) {
5287efd4aadfSBarry Smith     ierr = SNESCreate(PetscObjectComm((PetscObject)snes),&snes->npc);CHKERRQ(ierr);
5288efd4aadfSBarry Smith     ierr = PetscObjectIncrementTabLevel((PetscObject)snes->npc,(PetscObject)snes,1);CHKERRQ(ierr);
5289efd4aadfSBarry Smith     ierr = PetscLogObjectParent((PetscObject)snes,(PetscObject)snes->npc);CHKERRQ(ierr);
5290a64e098fSPeter Brune     ierr = SNESGetOptionsPrefix(snes,&optionsprefix);CHKERRQ(ierr);
5291efd4aadfSBarry Smith     ierr = SNESSetOptionsPrefix(snes->npc,optionsprefix);CHKERRQ(ierr);
5292efd4aadfSBarry Smith     ierr = SNESAppendOptionsPrefix(snes->npc,"npc_");CHKERRQ(ierr);
5293efd4aadfSBarry Smith     ierr = SNESSetCountersReset(snes->npc,PETSC_FALSE);CHKERRQ(ierr);
529431823bd8SMatthew G Knepley   }
5295efd4aadfSBarry Smith   *pc = snes->npc;
529631823bd8SMatthew G Knepley   PetscFunctionReturn(0);
529731823bd8SMatthew G Knepley }
529831823bd8SMatthew G Knepley 
52993ad1a0b9SPatrick Farrell /*@
53003ad1a0b9SPatrick Farrell   SNESHasNPC - Returns whether a nonlinear preconditioner exists
53013ad1a0b9SPatrick Farrell 
53023ad1a0b9SPatrick Farrell   Not Collective
53033ad1a0b9SPatrick Farrell 
53043ad1a0b9SPatrick Farrell   Input Parameter:
53053ad1a0b9SPatrick Farrell . snes - iterative context obtained from SNESCreate()
53063ad1a0b9SPatrick Farrell 
53073ad1a0b9SPatrick Farrell   Output Parameter:
53083ad1a0b9SPatrick Farrell . has_npc - whether the SNES has an NPC or not
53093ad1a0b9SPatrick Farrell 
53103ad1a0b9SPatrick Farrell   Level: developer
53113ad1a0b9SPatrick Farrell 
53123ad1a0b9SPatrick Farrell .keywords: SNES, has, preconditioner
53133ad1a0b9SPatrick Farrell .seealso: SNESSetNPC(), SNESGetNPC()
53143ad1a0b9SPatrick Farrell @*/
53153ad1a0b9SPatrick Farrell PetscErrorCode SNESHasNPC(SNES snes, PetscBool *has_npc)
53163ad1a0b9SPatrick Farrell {
53173ad1a0b9SPatrick Farrell   PetscFunctionBegin;
53183ad1a0b9SPatrick Farrell   PetscValidHeaderSpecific(snes, SNES_CLASSID, 1);
5319efd4aadfSBarry Smith   *has_npc = (PetscBool) (snes->npc ? PETSC_TRUE : PETSC_FALSE);
53203ad1a0b9SPatrick Farrell   PetscFunctionReturn(0);
53213ad1a0b9SPatrick Farrell }
53223ad1a0b9SPatrick Farrell 
5323c40d0f55SPeter Brune /*@
5324be95d8f1SBarry Smith     SNESSetNPCSide - Sets the preconditioning side.
5325c40d0f55SPeter Brune 
5326c40d0f55SPeter Brune     Logically Collective on SNES
5327c40d0f55SPeter Brune 
5328c40d0f55SPeter Brune     Input Parameter:
5329c40d0f55SPeter Brune .   snes - iterative context obtained from SNESCreate()
5330c40d0f55SPeter Brune 
5331c40d0f55SPeter Brune     Output Parameter:
5332c40d0f55SPeter Brune .   side - the preconditioning side, where side is one of
5333c40d0f55SPeter Brune .vb
53342d547940SBarry Smith       PC_LEFT - left preconditioning
53352d547940SBarry Smith       PC_RIGHT - right preconditioning (default for most nonlinear solvers)
5336c40d0f55SPeter Brune .ve
5337c40d0f55SPeter Brune 
5338c40d0f55SPeter Brune     Options Database Keys:
5339c40d0f55SPeter Brune .   -snes_pc_side <right,left>
5340c40d0f55SPeter Brune 
53412d547940SBarry Smith     Notes: SNESNRICHARDSON and SNESNCG only support left preconditioning.
53422d547940SBarry Smith 
5343c40d0f55SPeter Brune     Level: intermediate
5344c40d0f55SPeter Brune 
5345c40d0f55SPeter Brune .keywords: SNES, set, right, left, side, preconditioner, flag
5346c40d0f55SPeter Brune 
5347be95d8f1SBarry Smith .seealso: SNESGetNPCSide(), KSPSetPCSide()
5348c40d0f55SPeter Brune @*/
5349be95d8f1SBarry Smith PetscErrorCode  SNESSetNPCSide(SNES snes,PCSide side)
5350c40d0f55SPeter Brune {
5351c40d0f55SPeter Brune   PetscFunctionBegin;
5352c40d0f55SPeter Brune   PetscValidHeaderSpecific(snes,SNES_CLASSID,1);
5353c40d0f55SPeter Brune   PetscValidLogicalCollectiveEnum(snes,side,2);
5354efd4aadfSBarry Smith   snes->npcside= side;
5355c40d0f55SPeter Brune   PetscFunctionReturn(0);
5356c40d0f55SPeter Brune }
5357c40d0f55SPeter Brune 
5358c40d0f55SPeter Brune /*@
5359be95d8f1SBarry Smith     SNESGetNPCSide - Gets the preconditioning side.
5360c40d0f55SPeter Brune 
5361c40d0f55SPeter Brune     Not Collective
5362c40d0f55SPeter Brune 
5363c40d0f55SPeter Brune     Input Parameter:
5364c40d0f55SPeter Brune .   snes - iterative context obtained from SNESCreate()
5365c40d0f55SPeter Brune 
5366c40d0f55SPeter Brune     Output Parameter:
5367c40d0f55SPeter Brune .   side - the preconditioning side, where side is one of
5368c40d0f55SPeter Brune .vb
53692d547940SBarry Smith       PC_LEFT - left preconditioning
53702d547940SBarry Smith       PC_RIGHT - right preconditioning (default for most nonlinear solvers)
5371c40d0f55SPeter Brune .ve
5372c40d0f55SPeter Brune 
5373c40d0f55SPeter Brune     Level: intermediate
5374c40d0f55SPeter Brune 
5375c40d0f55SPeter Brune .keywords: SNES, get, right, left, side, preconditioner, flag
5376c40d0f55SPeter Brune 
5377be95d8f1SBarry Smith .seealso: SNESSetNPCSide(), KSPGetPCSide()
5378c40d0f55SPeter Brune @*/
5379be95d8f1SBarry Smith PetscErrorCode  SNESGetNPCSide(SNES snes,PCSide *side)
5380c40d0f55SPeter Brune {
5381c40d0f55SPeter Brune   PetscFunctionBegin;
5382c40d0f55SPeter Brune   PetscValidHeaderSpecific(snes,SNES_CLASSID,1);
5383c40d0f55SPeter Brune   PetscValidPointer(side,2);
5384efd4aadfSBarry Smith   *side = snes->npcside;
5385c40d0f55SPeter Brune   PetscFunctionReturn(0);
5386c40d0f55SPeter Brune }
5387c40d0f55SPeter Brune 
53889e764e56SPeter Brune /*@
53897601faf0SJed Brown   SNESSetLineSearch - Sets the linesearch on the SNES instance.
53909e764e56SPeter Brune 
53919e764e56SPeter Brune   Collective on SNES
53929e764e56SPeter Brune 
53939e764e56SPeter Brune   Input Parameters:
53949e764e56SPeter Brune + snes - iterative context obtained from SNESCreate()
53959e764e56SPeter Brune - linesearch   - the linesearch object
53969e764e56SPeter Brune 
53979e764e56SPeter Brune   Notes:
53987601faf0SJed Brown   Use SNESGetLineSearch() to retrieve the preconditioner context (for example,
53999e764e56SPeter Brune   to configure it using the API).
54009e764e56SPeter Brune 
54019e764e56SPeter Brune   Level: developer
54029e764e56SPeter Brune 
54039e764e56SPeter Brune .keywords: SNES, set, linesearch
54047601faf0SJed Brown .seealso: SNESGetLineSearch()
54059e764e56SPeter Brune @*/
54067601faf0SJed Brown PetscErrorCode SNESSetLineSearch(SNES snes, SNESLineSearch linesearch)
54079e764e56SPeter Brune {
54089e764e56SPeter Brune   PetscErrorCode ierr;
54099e764e56SPeter Brune 
54109e764e56SPeter Brune   PetscFunctionBegin;
54119e764e56SPeter Brune   PetscValidHeaderSpecific(snes, SNES_CLASSID, 1);
5412f1c6b773SPeter Brune   PetscValidHeaderSpecific(linesearch, SNESLINESEARCH_CLASSID, 2);
54139e764e56SPeter Brune   PetscCheckSameComm(snes, 1, linesearch, 2);
54149e764e56SPeter Brune   ierr = PetscObjectReference((PetscObject) linesearch);CHKERRQ(ierr);
5415f1c6b773SPeter Brune   ierr = SNESLineSearchDestroy(&snes->linesearch);CHKERRQ(ierr);
5416f5af7f23SKarl Rupp 
54179e764e56SPeter Brune   snes->linesearch = linesearch;
5418f5af7f23SKarl Rupp 
54193bb1ff40SBarry Smith   ierr = PetscLogObjectParent((PetscObject)snes, (PetscObject)snes->linesearch);CHKERRQ(ierr);
54209e764e56SPeter Brune   PetscFunctionReturn(0);
54219e764e56SPeter Brune }
54229e764e56SPeter Brune 
5423a34ceb2aSJed Brown /*@
54247601faf0SJed Brown   SNESGetLineSearch - Returns a pointer to the line search context set with SNESSetLineSearch()
54258141a3b9SPeter Brune   or creates a default line search instance associated with the SNES and returns it.
54269e764e56SPeter Brune 
54279e764e56SPeter Brune   Not Collective
54289e764e56SPeter Brune 
54299e764e56SPeter Brune   Input Parameter:
54309e764e56SPeter Brune . snes - iterative context obtained from SNESCreate()
54319e764e56SPeter Brune 
54329e764e56SPeter Brune   Output Parameter:
54339e764e56SPeter Brune . linesearch - linesearch context
54349e764e56SPeter Brune 
5435162e0bf5SPeter Brune   Level: beginner
54369e764e56SPeter Brune 
54379e764e56SPeter Brune .keywords: SNES, get, linesearch
5438162e0bf5SPeter Brune .seealso: SNESSetLineSearch(), SNESLineSearchCreate()
54399e764e56SPeter Brune @*/
54407601faf0SJed Brown PetscErrorCode SNESGetLineSearch(SNES snes, SNESLineSearch *linesearch)
54419e764e56SPeter Brune {
54429e764e56SPeter Brune   PetscErrorCode ierr;
54439e764e56SPeter Brune   const char     *optionsprefix;
54449e764e56SPeter Brune 
54459e764e56SPeter Brune   PetscFunctionBegin;
54469e764e56SPeter Brune   PetscValidHeaderSpecific(snes, SNES_CLASSID, 1);
54479e764e56SPeter Brune   PetscValidPointer(linesearch, 2);
54489e764e56SPeter Brune   if (!snes->linesearch) {
54499e764e56SPeter Brune     ierr = SNESGetOptionsPrefix(snes, &optionsprefix);CHKERRQ(ierr);
545082f516ccSBarry Smith     ierr = SNESLineSearchCreate(PetscObjectComm((PetscObject)snes), &snes->linesearch);CHKERRQ(ierr);
5451f1c6b773SPeter Brune     ierr = SNESLineSearchSetSNES(snes->linesearch, snes);CHKERRQ(ierr);
5452b1dca40bSPeter Brune     ierr = SNESLineSearchAppendOptionsPrefix(snes->linesearch, optionsprefix);CHKERRQ(ierr);
54539e764e56SPeter Brune     ierr = PetscObjectIncrementTabLevel((PetscObject) snes->linesearch, (PetscObject) snes, 1);CHKERRQ(ierr);
54543bb1ff40SBarry Smith     ierr = PetscLogObjectParent((PetscObject)snes, (PetscObject)snes->linesearch);CHKERRQ(ierr);
54559e764e56SPeter Brune   }
54569e764e56SPeter Brune   *linesearch = snes->linesearch;
54579e764e56SPeter Brune   PetscFunctionReturn(0);
54589e764e56SPeter Brune }
54599e764e56SPeter Brune 
546069b4f73cSBarry Smith #if defined(PETSC_HAVE_MATLAB_ENGINE)
5461c6db04a5SJed Brown #include <mex.h>
546269b4f73cSBarry Smith 
54638f6e6473SBarry Smith typedef struct {char *funcname; mxArray *ctx;} SNESMatlabContext;
54648f6e6473SBarry Smith 
54650807856dSBarry Smith /*
5466bf388a1fSBarry Smith    SNESComputeFunction_Matlab - Calls the function that has been set with SNESSetFunctionMatlab().
54670807856dSBarry Smith 
54680807856dSBarry Smith    Collective on SNES
54690807856dSBarry Smith 
54700807856dSBarry Smith    Input Parameters:
54710807856dSBarry Smith +  snes - the SNES context
54720807856dSBarry Smith -  x - input vector
54730807856dSBarry Smith 
54740807856dSBarry Smith    Output Parameter:
54750807856dSBarry Smith .  y - function vector, as set by SNESSetFunction()
54760807856dSBarry Smith 
54770807856dSBarry Smith    Notes:
54780807856dSBarry Smith    SNESComputeFunction() is typically used within nonlinear solvers
54790807856dSBarry Smith    implementations, so most users would not generally call this routine
54800807856dSBarry Smith    themselves.
54810807856dSBarry Smith 
54820807856dSBarry Smith    Level: developer
54830807856dSBarry Smith 
54840807856dSBarry Smith .keywords: SNES, nonlinear, compute, function
54850807856dSBarry Smith 
54860807856dSBarry Smith .seealso: SNESSetFunction(), SNESGetFunction()
548761b2408cSBarry Smith */
54887087cfbeSBarry Smith PetscErrorCode  SNESComputeFunction_Matlab(SNES snes,Vec x,Vec y, void *ctx)
54890807856dSBarry Smith {
5490e650e774SBarry Smith   PetscErrorCode    ierr;
54918f6e6473SBarry Smith   SNESMatlabContext *sctx = (SNESMatlabContext*)ctx;
54928f6e6473SBarry Smith   int               nlhs  = 1,nrhs = 5;
54938f6e6473SBarry Smith   mxArray           *plhs[1],*prhs[5];
549491621f2eSBarry Smith   long long int     lx = 0,ly = 0,ls = 0;
5495e650e774SBarry Smith 
54960807856dSBarry Smith   PetscFunctionBegin;
54970807856dSBarry Smith   PetscValidHeaderSpecific(snes,SNES_CLASSID,1);
54980807856dSBarry Smith   PetscValidHeaderSpecific(x,VEC_CLASSID,2);
54990807856dSBarry Smith   PetscValidHeaderSpecific(y,VEC_CLASSID,3);
55000807856dSBarry Smith   PetscCheckSameComm(snes,1,x,2);
55010807856dSBarry Smith   PetscCheckSameComm(snes,1,y,3);
55020807856dSBarry Smith 
55030807856dSBarry Smith   /* call Matlab function in ctx with arguments x and y */
5504e650e774SBarry Smith 
550591621f2eSBarry Smith   ierr    = PetscMemcpy(&ls,&snes,sizeof(snes));CHKERRQ(ierr);
5506e650e774SBarry Smith   ierr    = PetscMemcpy(&lx,&x,sizeof(x));CHKERRQ(ierr);
5507e650e774SBarry Smith   ierr    = PetscMemcpy(&ly,&y,sizeof(x));CHKERRQ(ierr);
550891621f2eSBarry Smith   prhs[0] = mxCreateDoubleScalar((double)ls);
550991621f2eSBarry Smith   prhs[1] = mxCreateDoubleScalar((double)lx);
551091621f2eSBarry Smith   prhs[2] = mxCreateDoubleScalar((double)ly);
55118f6e6473SBarry Smith   prhs[3] = mxCreateString(sctx->funcname);
55128f6e6473SBarry Smith   prhs[4] = sctx->ctx;
5513b807a863SBarry Smith   ierr    = mexCallMATLAB(nlhs,plhs,nrhs,prhs,"PetscSNESComputeFunctionInternal");CHKERRQ(ierr);
5514e650e774SBarry Smith   ierr    = mxGetScalar(plhs[0]);CHKERRQ(ierr);
5515e650e774SBarry Smith   mxDestroyArray(prhs[0]);
5516e650e774SBarry Smith   mxDestroyArray(prhs[1]);
5517e650e774SBarry Smith   mxDestroyArray(prhs[2]);
55188f6e6473SBarry Smith   mxDestroyArray(prhs[3]);
5519e650e774SBarry Smith   mxDestroyArray(plhs[0]);
55200807856dSBarry Smith   PetscFunctionReturn(0);
55210807856dSBarry Smith }
55220807856dSBarry Smith 
552361b2408cSBarry Smith /*
55240807856dSBarry Smith    SNESSetFunctionMatlab - Sets the function evaluation routine and function
55250807856dSBarry Smith    vector for use by the SNES routines in solving systems of nonlinear
5526e3c5b3baSBarry Smith    equations from MATLAB. Here the function is a string containing the name of a MATLAB function
55270807856dSBarry Smith 
55280807856dSBarry Smith    Logically Collective on SNES
55290807856dSBarry Smith 
55300807856dSBarry Smith    Input Parameters:
55310807856dSBarry Smith +  snes - the SNES context
55320807856dSBarry Smith .  r - vector to store function value
5533f8b49ee9SBarry Smith -  f - function evaluation routine
55340807856dSBarry Smith 
55350807856dSBarry Smith    Notes:
55360807856dSBarry Smith    The Newton-like methods typically solve linear systems of the form
55370807856dSBarry Smith $      f'(x) x = -f(x),
55380807856dSBarry Smith    where f'(x) denotes the Jacobian matrix and f(x) is the function.
55390807856dSBarry Smith 
55400807856dSBarry Smith    Level: beginner
55410807856dSBarry Smith 
5542c5b75c40SBarry Smith    Developer Note:  This bleeds the allocated memory SNESMatlabContext *sctx;
5543c5b75c40SBarry Smith 
55440807856dSBarry Smith .keywords: SNES, nonlinear, set, function
55450807856dSBarry Smith 
55460807856dSBarry Smith .seealso: SNESGetFunction(), SNESComputeFunction(), SNESSetJacobian(), SNESSetFunction()
554761b2408cSBarry Smith */
5548f8b49ee9SBarry Smith PetscErrorCode  SNESSetFunctionMatlab(SNES snes,Vec r,const char *f,mxArray *ctx)
55490807856dSBarry Smith {
55500807856dSBarry Smith   PetscErrorCode    ierr;
55518f6e6473SBarry Smith   SNESMatlabContext *sctx;
55520807856dSBarry Smith 
55530807856dSBarry Smith   PetscFunctionBegin;
55548f6e6473SBarry Smith   /* currently sctx is memory bleed */
5555854ce69bSBarry Smith   ierr = PetscNew(&sctx);CHKERRQ(ierr);
5556f8b49ee9SBarry Smith   ierr = PetscStrallocpy(f,&sctx->funcname);CHKERRQ(ierr);
55578f6e6473SBarry Smith   /*
55588f6e6473SBarry Smith      This should work, but it doesn't
55598f6e6473SBarry Smith   sctx->ctx = ctx;
55608f6e6473SBarry Smith   mexMakeArrayPersistent(sctx->ctx);
55618f6e6473SBarry Smith   */
55628f6e6473SBarry Smith   sctx->ctx = mxDuplicateArray(ctx);
55638f6e6473SBarry Smith   ierr      = SNESSetFunction(snes,r,SNESComputeFunction_Matlab,sctx);CHKERRQ(ierr);
55640807856dSBarry Smith   PetscFunctionReturn(0);
55650807856dSBarry Smith }
556669b4f73cSBarry Smith 
556761b2408cSBarry Smith /*
5568bf388a1fSBarry Smith    SNESComputeJacobian_Matlab - Calls the function that has been set with SNESSetJacobianMatlab().
556961b2408cSBarry Smith 
557061b2408cSBarry Smith    Collective on SNES
557161b2408cSBarry Smith 
557261b2408cSBarry Smith    Input Parameters:
557361b2408cSBarry Smith +  snes - the SNES context
557461b2408cSBarry Smith .  x - input vector
557561b2408cSBarry Smith .  A, B - the matrices
557661b2408cSBarry Smith -  ctx - user context
557761b2408cSBarry Smith 
557861b2408cSBarry Smith    Level: developer
557961b2408cSBarry Smith 
558061b2408cSBarry Smith .keywords: SNES, nonlinear, compute, function
558161b2408cSBarry Smith 
558261b2408cSBarry Smith .seealso: SNESSetFunction(), SNESGetFunction()
558361b2408cSBarry Smith @*/
5584f3229a78SSatish Balay PetscErrorCode  SNESComputeJacobian_Matlab(SNES snes,Vec x,Mat A,Mat B,void *ctx)
558561b2408cSBarry Smith {
558661b2408cSBarry Smith   PetscErrorCode    ierr;
558761b2408cSBarry Smith   SNESMatlabContext *sctx = (SNESMatlabContext*)ctx;
558861b2408cSBarry Smith   int               nlhs  = 2,nrhs = 6;
558961b2408cSBarry Smith   mxArray           *plhs[2],*prhs[6];
559061b2408cSBarry Smith   long long int     lx = 0,lA = 0,ls = 0, lB = 0;
559161b2408cSBarry Smith 
559261b2408cSBarry Smith   PetscFunctionBegin;
559361b2408cSBarry Smith   PetscValidHeaderSpecific(snes,SNES_CLASSID,1);
559461b2408cSBarry Smith   PetscValidHeaderSpecific(x,VEC_CLASSID,2);
559561b2408cSBarry Smith 
559661b2408cSBarry Smith   /* call Matlab function in ctx with arguments x and y */
559761b2408cSBarry Smith 
559861b2408cSBarry Smith   ierr    = PetscMemcpy(&ls,&snes,sizeof(snes));CHKERRQ(ierr);
559961b2408cSBarry Smith   ierr    = PetscMemcpy(&lx,&x,sizeof(x));CHKERRQ(ierr);
560061b2408cSBarry Smith   ierr    = PetscMemcpy(&lA,A,sizeof(x));CHKERRQ(ierr);
560161b2408cSBarry Smith   ierr    = PetscMemcpy(&lB,B,sizeof(x));CHKERRQ(ierr);
560261b2408cSBarry Smith   prhs[0] = mxCreateDoubleScalar((double)ls);
560361b2408cSBarry Smith   prhs[1] = mxCreateDoubleScalar((double)lx);
560461b2408cSBarry Smith   prhs[2] = mxCreateDoubleScalar((double)lA);
560561b2408cSBarry Smith   prhs[3] = mxCreateDoubleScalar((double)lB);
560661b2408cSBarry Smith   prhs[4] = mxCreateString(sctx->funcname);
560761b2408cSBarry Smith   prhs[5] = sctx->ctx;
5608b807a863SBarry Smith   ierr    = mexCallMATLAB(nlhs,plhs,nrhs,prhs,"PetscSNESComputeJacobianInternal");CHKERRQ(ierr);
560961b2408cSBarry Smith   ierr    = mxGetScalar(plhs[0]);CHKERRQ(ierr);
561061b2408cSBarry Smith   mxDestroyArray(prhs[0]);
561161b2408cSBarry Smith   mxDestroyArray(prhs[1]);
561261b2408cSBarry Smith   mxDestroyArray(prhs[2]);
561361b2408cSBarry Smith   mxDestroyArray(prhs[3]);
561461b2408cSBarry Smith   mxDestroyArray(prhs[4]);
561561b2408cSBarry Smith   mxDestroyArray(plhs[0]);
561661b2408cSBarry Smith   mxDestroyArray(plhs[1]);
561761b2408cSBarry Smith   PetscFunctionReturn(0);
561861b2408cSBarry Smith }
561961b2408cSBarry Smith 
562061b2408cSBarry Smith /*
562161b2408cSBarry Smith    SNESSetJacobianMatlab - Sets the Jacobian function evaluation routine and two empty Jacobian matrices
562261b2408cSBarry Smith    vector for use by the SNES routines in solving systems of nonlinear
5623e3c5b3baSBarry Smith    equations from MATLAB. Here the function is a string containing the name of a MATLAB function
562461b2408cSBarry Smith 
562561b2408cSBarry Smith    Logically Collective on SNES
562661b2408cSBarry Smith 
562761b2408cSBarry Smith    Input Parameters:
562861b2408cSBarry Smith +  snes - the SNES context
562961b2408cSBarry Smith .  A,B - Jacobian matrices
5630f8b49ee9SBarry Smith .  J - function evaluation routine
563161b2408cSBarry Smith -  ctx - user context
563261b2408cSBarry Smith 
563361b2408cSBarry Smith    Level: developer
563461b2408cSBarry Smith 
5635c5b75c40SBarry Smith    Developer Note:  This bleeds the allocated memory SNESMatlabContext *sctx;
5636c5b75c40SBarry Smith 
563761b2408cSBarry Smith .keywords: SNES, nonlinear, set, function
563861b2408cSBarry Smith 
5639f8b49ee9SBarry Smith .seealso: SNESGetFunction(), SNESComputeFunction(), SNESSetJacobian(), SNESSetFunction(), J
564061b2408cSBarry Smith */
5641f8b49ee9SBarry Smith PetscErrorCode  SNESSetJacobianMatlab(SNES snes,Mat A,Mat B,const char *J,mxArray *ctx)
564261b2408cSBarry Smith {
564361b2408cSBarry Smith   PetscErrorCode    ierr;
564461b2408cSBarry Smith   SNESMatlabContext *sctx;
564561b2408cSBarry Smith 
564661b2408cSBarry Smith   PetscFunctionBegin;
564761b2408cSBarry Smith   /* currently sctx is memory bleed */
5648854ce69bSBarry Smith   ierr = PetscNew(&sctx);CHKERRQ(ierr);
5649f8b49ee9SBarry Smith   ierr = PetscStrallocpy(J,&sctx->funcname);CHKERRQ(ierr);
565061b2408cSBarry Smith   /*
565161b2408cSBarry Smith      This should work, but it doesn't
565261b2408cSBarry Smith   sctx->ctx = ctx;
565361b2408cSBarry Smith   mexMakeArrayPersistent(sctx->ctx);
565461b2408cSBarry Smith   */
565561b2408cSBarry Smith   sctx->ctx = mxDuplicateArray(ctx);
565661b2408cSBarry Smith   ierr      = SNESSetJacobian(snes,A,B,SNESComputeJacobian_Matlab,sctx);CHKERRQ(ierr);
565761b2408cSBarry Smith   PetscFunctionReturn(0);
565861b2408cSBarry Smith }
565969b4f73cSBarry Smith 
5660f9eb7ae2SShri Abhyankar /*
5661f9eb7ae2SShri Abhyankar    SNESMonitor_Matlab - Calls the function that has been set with SNESMonitorSetMatlab().
5662f9eb7ae2SShri Abhyankar 
5663f9eb7ae2SShri Abhyankar    Collective on SNES
5664f9eb7ae2SShri Abhyankar 
5665f9eb7ae2SShri Abhyankar .seealso: SNESSetFunction(), SNESGetFunction()
5666f9eb7ae2SShri Abhyankar @*/
56677087cfbeSBarry Smith PetscErrorCode  SNESMonitor_Matlab(SNES snes,PetscInt it, PetscReal fnorm, void *ctx)
5668f9eb7ae2SShri Abhyankar {
5669f9eb7ae2SShri Abhyankar   PetscErrorCode    ierr;
567048f37e70SShri Abhyankar   SNESMatlabContext *sctx = (SNESMatlabContext*)ctx;
5671f9eb7ae2SShri Abhyankar   int               nlhs  = 1,nrhs = 6;
5672f9eb7ae2SShri Abhyankar   mxArray           *plhs[1],*prhs[6];
5673f9eb7ae2SShri Abhyankar   long long int     lx = 0,ls = 0;
5674f9eb7ae2SShri Abhyankar   Vec               x  = snes->vec_sol;
5675f9eb7ae2SShri Abhyankar 
5676f9eb7ae2SShri Abhyankar   PetscFunctionBegin;
5677f9eb7ae2SShri Abhyankar   PetscValidHeaderSpecific(snes,SNES_CLASSID,1);
5678f9eb7ae2SShri Abhyankar 
5679f9eb7ae2SShri Abhyankar   ierr    = PetscMemcpy(&ls,&snes,sizeof(snes));CHKERRQ(ierr);
5680f9eb7ae2SShri Abhyankar   ierr    = PetscMemcpy(&lx,&x,sizeof(x));CHKERRQ(ierr);
5681f9eb7ae2SShri Abhyankar   prhs[0] = mxCreateDoubleScalar((double)ls);
5682f9eb7ae2SShri Abhyankar   prhs[1] = mxCreateDoubleScalar((double)it);
5683f9eb7ae2SShri Abhyankar   prhs[2] = mxCreateDoubleScalar((double)fnorm);
5684f9eb7ae2SShri Abhyankar   prhs[3] = mxCreateDoubleScalar((double)lx);
5685f9eb7ae2SShri Abhyankar   prhs[4] = mxCreateString(sctx->funcname);
5686f9eb7ae2SShri Abhyankar   prhs[5] = sctx->ctx;
5687f9eb7ae2SShri Abhyankar   ierr    = mexCallMATLAB(nlhs,plhs,nrhs,prhs,"PetscSNESMonitorInternal");CHKERRQ(ierr);
5688f9eb7ae2SShri Abhyankar   ierr    = mxGetScalar(plhs[0]);CHKERRQ(ierr);
5689f9eb7ae2SShri Abhyankar   mxDestroyArray(prhs[0]);
5690f9eb7ae2SShri Abhyankar   mxDestroyArray(prhs[1]);
5691f9eb7ae2SShri Abhyankar   mxDestroyArray(prhs[2]);
5692f9eb7ae2SShri Abhyankar   mxDestroyArray(prhs[3]);
5693f9eb7ae2SShri Abhyankar   mxDestroyArray(prhs[4]);
5694f9eb7ae2SShri Abhyankar   mxDestroyArray(plhs[0]);
5695f9eb7ae2SShri Abhyankar   PetscFunctionReturn(0);
5696f9eb7ae2SShri Abhyankar }
5697f9eb7ae2SShri Abhyankar 
5698f9eb7ae2SShri Abhyankar /*
5699e3c5b3baSBarry Smith    SNESMonitorSetMatlab - Sets the monitor function from MATLAB
5700f9eb7ae2SShri Abhyankar 
5701f9eb7ae2SShri Abhyankar    Level: developer
5702f9eb7ae2SShri Abhyankar 
5703c5b75c40SBarry Smith    Developer Note:  This bleeds the allocated memory SNESMatlabContext *sctx;
5704c5b75c40SBarry Smith 
5705f9eb7ae2SShri Abhyankar .keywords: SNES, nonlinear, set, function
5706f9eb7ae2SShri Abhyankar 
5707f9eb7ae2SShri Abhyankar .seealso: SNESGetFunction(), SNESComputeFunction(), SNESSetJacobian(), SNESSetFunction()
5708f9eb7ae2SShri Abhyankar */
57096e4dcb14SBarry Smith PetscErrorCode  SNESMonitorSetMatlab(SNES snes,const char *f,mxArray *ctx)
5710f9eb7ae2SShri Abhyankar {
5711f9eb7ae2SShri Abhyankar   PetscErrorCode    ierr;
5712f9eb7ae2SShri Abhyankar   SNESMatlabContext *sctx;
5713f9eb7ae2SShri Abhyankar 
5714f9eb7ae2SShri Abhyankar   PetscFunctionBegin;
5715f9eb7ae2SShri Abhyankar   /* currently sctx is memory bleed */
5716854ce69bSBarry Smith   ierr = PetscNew(&sctx);CHKERRQ(ierr);
57176e4dcb14SBarry Smith   ierr = PetscStrallocpy(f,&sctx->funcname);CHKERRQ(ierr);
5718f9eb7ae2SShri Abhyankar   /*
5719f9eb7ae2SShri Abhyankar      This should work, but it doesn't
5720f9eb7ae2SShri Abhyankar   sctx->ctx = ctx;
5721f9eb7ae2SShri Abhyankar   mexMakeArrayPersistent(sctx->ctx);
5722f9eb7ae2SShri Abhyankar   */
5723f9eb7ae2SShri Abhyankar   sctx->ctx = mxDuplicateArray(ctx);
57240298fd71SBarry Smith   ierr      = SNESMonitorSet(snes,SNESMonitor_Matlab,sctx,NULL);CHKERRQ(ierr);
5725f9eb7ae2SShri Abhyankar   PetscFunctionReturn(0);
5726f9eb7ae2SShri Abhyankar }
5727f9eb7ae2SShri Abhyankar 
572869b4f73cSBarry Smith #endif
5729