xref: /petsc/src/snes/interface/snes.c (revision 2698c5181986ea65e34fc6f01f60e25c3c855bfa)
1af0996ceSBarry Smith #include <petsc/private/snesimpl.h>      /*I "petscsnes.h"  I*/
207475bc1SBarry Smith #include <petscdmshell.h>
3d96771aaSLisandro Dalcin #include <petscdraw.h>
4a01aa210SMatthew G. Knepley #include <petscds.h>
534b4d3a8SMatthew G. Knepley #include <petscdmadaptor.h>
606fc46c8SMatthew G. Knepley #include <petscconvest.h>
79b94acceSBarry Smith 
8ace3abfcSBarry Smith PetscBool         SNESRegisterAllCalled = PETSC_FALSE;
90298fd71SBarry Smith PetscFunctionList SNESList              = NULL;
108ba1e511SMatthew Knepley 
118ba1e511SMatthew Knepley /* Logging support */
1222c6f798SBarry Smith PetscClassId  SNES_CLASSID, DMSNES_CLASSID;
13e3ed9ee7SBarry Smith PetscLogEvent SNES_Solve, SNES_Setup, SNES_FunctionEval, SNES_JacobianEval, SNES_NGSEval, SNES_NGSFuncEval, SNES_NPCSolve, SNES_ObjectiveEval;
14a09944afSBarry Smith 
15e113a28aSBarry Smith /*@
16e113a28aSBarry Smith    SNESSetErrorIfNotConverged - Causes SNESSolve() to generate an error if the solver has not converged.
17e113a28aSBarry Smith 
183f9fe445SBarry Smith    Logically Collective on SNES
19e113a28aSBarry Smith 
20e113a28aSBarry Smith    Input Parameters:
21e113a28aSBarry Smith +  snes - iterative context obtained from SNESCreate()
22e113a28aSBarry Smith -  flg - PETSC_TRUE indicates you want the error generated
23e113a28aSBarry Smith 
24e113a28aSBarry Smith    Options database keys:
2567b8a455SSatish Balay .  -snes_error_if_not_converged <true,false> - cause an immediate error condition and stop the program if the solver does not converge
26e113a28aSBarry Smith 
27e113a28aSBarry Smith    Level: intermediate
28e113a28aSBarry Smith 
29e113a28aSBarry Smith    Notes:
30e113a28aSBarry Smith     Normally PETSc continues if a linear solver fails to converge, you can call SNESGetConvergedReason() after a SNESSolve()
31e113a28aSBarry Smith     to determine if it has converged.
32e113a28aSBarry Smith 
33db781477SPatrick Sanan .seealso: `SNESGetErrorIfNotConverged()`, `KSPGetErrorIfNotConverged()`, `KSPSetErrorIfNotConverged()`
34e113a28aSBarry Smith @*/
357087cfbeSBarry Smith PetscErrorCode  SNESSetErrorIfNotConverged(SNES snes,PetscBool flg)
36e113a28aSBarry Smith {
37e113a28aSBarry Smith   PetscFunctionBegin;
38e113a28aSBarry Smith   PetscValidHeaderSpecific(snes,SNES_CLASSID,1);
39acfcf0e5SJed Brown   PetscValidLogicalCollectiveBool(snes,flg,2);
40e113a28aSBarry Smith   snes->errorifnotconverged = flg;
41e113a28aSBarry Smith   PetscFunctionReturn(0);
42e113a28aSBarry Smith }
43e113a28aSBarry Smith 
44e113a28aSBarry Smith /*@
45e113a28aSBarry Smith    SNESGetErrorIfNotConverged - Will SNESSolve() generate an error if the solver does not converge?
46e113a28aSBarry Smith 
47e113a28aSBarry Smith    Not Collective
48e113a28aSBarry Smith 
49e113a28aSBarry Smith    Input Parameter:
50e113a28aSBarry Smith .  snes - iterative context obtained from SNESCreate()
51e113a28aSBarry Smith 
52e113a28aSBarry Smith    Output Parameter:
53e113a28aSBarry Smith .  flag - PETSC_TRUE if it will generate an error, else PETSC_FALSE
54e113a28aSBarry Smith 
55e113a28aSBarry Smith    Level: intermediate
56e113a28aSBarry Smith 
57db781477SPatrick Sanan .seealso: `SNESSetErrorIfNotConverged()`, `KSPGetErrorIfNotConverged()`, `KSPSetErrorIfNotConverged()`
58e113a28aSBarry Smith @*/
597087cfbeSBarry Smith PetscErrorCode  SNESGetErrorIfNotConverged(SNES snes,PetscBool  *flag)
60e113a28aSBarry Smith {
61e113a28aSBarry Smith   PetscFunctionBegin;
62e113a28aSBarry Smith   PetscValidHeaderSpecific(snes,SNES_CLASSID,1);
63534a8f05SLisandro Dalcin   PetscValidBoolPointer(flag,2);
64e113a28aSBarry Smith   *flag = snes->errorifnotconverged;
65e113a28aSBarry Smith   PetscFunctionReturn(0);
66e113a28aSBarry Smith }
67e113a28aSBarry Smith 
684fc747eaSLawrence Mitchell /*@
694fc747eaSLawrence Mitchell     SNESSetAlwaysComputesFinalResidual - does the SNES always compute the residual at the final solution?
704fc747eaSLawrence Mitchell 
714fc747eaSLawrence Mitchell    Logically Collective on SNES
724fc747eaSLawrence Mitchell 
734fc747eaSLawrence Mitchell     Input Parameters:
744fc747eaSLawrence Mitchell +   snes - the shell SNES
754fc747eaSLawrence Mitchell -   flg - is the residual computed?
764fc747eaSLawrence Mitchell 
774fc747eaSLawrence Mitchell    Level: advanced
784fc747eaSLawrence Mitchell 
79db781477SPatrick Sanan .seealso: `SNESGetAlwaysComputesFinalResidual()`
804fc747eaSLawrence Mitchell @*/
814fc747eaSLawrence Mitchell PetscErrorCode  SNESSetAlwaysComputesFinalResidual(SNES snes, PetscBool flg)
824fc747eaSLawrence Mitchell {
834fc747eaSLawrence Mitchell   PetscFunctionBegin;
844fc747eaSLawrence Mitchell   PetscValidHeaderSpecific(snes,SNES_CLASSID,1);
854fc747eaSLawrence Mitchell   snes->alwayscomputesfinalresidual = flg;
864fc747eaSLawrence Mitchell   PetscFunctionReturn(0);
874fc747eaSLawrence Mitchell }
884fc747eaSLawrence Mitchell 
894fc747eaSLawrence Mitchell /*@
904fc747eaSLawrence Mitchell     SNESGetAlwaysComputesFinalResidual - does the SNES always compute the residual at the final solution?
914fc747eaSLawrence Mitchell 
924fc747eaSLawrence Mitchell    Logically Collective on SNES
934fc747eaSLawrence Mitchell 
944fc747eaSLawrence Mitchell     Input Parameter:
954fc747eaSLawrence Mitchell .   snes - the shell SNES
964fc747eaSLawrence Mitchell 
974fc747eaSLawrence Mitchell     Output Parameter:
984fc747eaSLawrence Mitchell .   flg - is the residual computed?
994fc747eaSLawrence Mitchell 
1004fc747eaSLawrence Mitchell    Level: advanced
1014fc747eaSLawrence Mitchell 
102db781477SPatrick Sanan .seealso: `SNESSetAlwaysComputesFinalResidual()`
1034fc747eaSLawrence Mitchell @*/
1044fc747eaSLawrence Mitchell PetscErrorCode  SNESGetAlwaysComputesFinalResidual(SNES snes, PetscBool *flg)
1054fc747eaSLawrence Mitchell {
1064fc747eaSLawrence Mitchell   PetscFunctionBegin;
1074fc747eaSLawrence Mitchell   PetscValidHeaderSpecific(snes,SNES_CLASSID,1);
1084fc747eaSLawrence Mitchell   *flg = snes->alwayscomputesfinalresidual;
1094fc747eaSLawrence Mitchell   PetscFunctionReturn(0);
1104fc747eaSLawrence Mitchell }
1114fc747eaSLawrence Mitchell 
112e725d27bSBarry Smith /*@
113bf388a1fSBarry Smith    SNESSetFunctionDomainError - tells SNES that the input vector to your SNESFunction is not
1144936397dSBarry Smith      in the functions domain. For example, negative pressure.
1154936397dSBarry Smith 
1163f9fe445SBarry Smith    Logically Collective on SNES
1174936397dSBarry Smith 
1184936397dSBarry Smith    Input Parameters:
1196a388c36SPeter Brune .  snes - the SNES context
1204936397dSBarry Smith 
12128529972SSatish Balay    Level: advanced
1224936397dSBarry Smith 
123db781477SPatrick Sanan .seealso: `SNESCreate()`, `SNESSetFunction()`, `SNESFunction`
1244936397dSBarry Smith @*/
1257087cfbeSBarry Smith PetscErrorCode  SNESSetFunctionDomainError(SNES snes)
1264936397dSBarry Smith {
1274936397dSBarry Smith   PetscFunctionBegin;
1280700a824SBarry Smith   PetscValidHeaderSpecific(snes,SNES_CLASSID,1);
1295f80ce2aSJacob Faibussowitsch   PetscCheck(!snes->errorifnotconverged,PETSC_COMM_SELF,PETSC_ERR_ARG_OUTOFRANGE,"User code indicates input vector is not in the function domain");
1304936397dSBarry Smith   snes->domainerror = PETSC_TRUE;
1314936397dSBarry Smith   PetscFunctionReturn(0);
1324936397dSBarry Smith }
1334936397dSBarry Smith 
1346a388c36SPeter Brune /*@
13507b62357SFande Kong    SNESSetJacobianDomainError - tells SNES that computeJacobian does not make sense any more. For example there is a negative element transformation.
13607b62357SFande Kong 
13707b62357SFande Kong    Logically Collective on SNES
13807b62357SFande Kong 
13907b62357SFande Kong    Input Parameters:
14007b62357SFande Kong .  snes - the SNES context
14107b62357SFande Kong 
14207b62357SFande Kong    Level: advanced
14307b62357SFande Kong 
144db781477SPatrick Sanan .seealso: `SNESCreate()`, `SNESSetFunction()`, `SNESFunction()`, `SNESSetFunctionDomainError()`
14507b62357SFande Kong @*/
14607b62357SFande Kong PetscErrorCode SNESSetJacobianDomainError(SNES snes)
14707b62357SFande Kong {
14807b62357SFande Kong   PetscFunctionBegin;
14907b62357SFande Kong   PetscValidHeaderSpecific(snes,SNES_CLASSID,1);
1505f80ce2aSJacob Faibussowitsch   PetscCheck(!snes->errorifnotconverged,PETSC_COMM_SELF,PETSC_ERR_ARG_OUTOFRANGE,"User code indicates computeJacobian does not make sense");
15107b62357SFande Kong   snes->jacobiandomainerror = PETSC_TRUE;
15207b62357SFande Kong   PetscFunctionReturn(0);
15307b62357SFande Kong }
15407b62357SFande Kong 
15507b62357SFande Kong /*@
156b351a90bSFande Kong    SNESSetCheckJacobianDomainError - if or not to check jacobian domain error after each Jacobian evaluation. By default, we check Jacobian domain error
157b351a90bSFande Kong    in the debug mode, and do not check it in the optimized mode.
158b351a90bSFande Kong 
159b351a90bSFande Kong    Logically Collective on SNES
160b351a90bSFande Kong 
161b351a90bSFande Kong    Input Parameters:
162a2b725a8SWilliam Gropp +  snes - the SNES context
163a2b725a8SWilliam Gropp -  flg  - indicates if or not to check jacobian domain error after each Jacobian evaluation
164b351a90bSFande Kong 
165b351a90bSFande Kong    Level: advanced
166b351a90bSFande Kong 
167db781477SPatrick Sanan .seealso: `SNESCreate()`, `SNESSetFunction()`, `SNESFunction()`, `SNESSetFunctionDomainError()`, `SNESGetCheckJacobianDomainError()`
168b351a90bSFande Kong @*/
169b351a90bSFande Kong PetscErrorCode SNESSetCheckJacobianDomainError(SNES snes, PetscBool flg)
170b351a90bSFande Kong {
171b351a90bSFande Kong   PetscFunctionBegin;
172b351a90bSFande Kong   PetscValidHeaderSpecific(snes,SNES_CLASSID,1);
173b351a90bSFande Kong   snes->checkjacdomainerror = flg;
174b351a90bSFande Kong   PetscFunctionReturn(0);
175b351a90bSFande Kong }
176b351a90bSFande Kong 
177b351a90bSFande Kong /*@
1788383d7d7SFande Kong    SNESGetCheckJacobianDomainError - Get an indicator whether or not we are checking Jacobian domain errors after each Jacobian evaluation.
1798383d7d7SFande Kong 
1808383d7d7SFande Kong    Logically Collective on SNES
1818383d7d7SFande Kong 
1828383d7d7SFande Kong    Input Parameters:
1838383d7d7SFande Kong .  snes - the SNES context
1848383d7d7SFande Kong 
1858383d7d7SFande Kong    Output Parameters:
1868383d7d7SFande Kong .  flg  - PETSC_FALSE indicates that we don't check jacobian domain errors after each Jacobian evaluation
1878383d7d7SFande Kong 
1888383d7d7SFande Kong    Level: advanced
1898383d7d7SFande Kong 
190db781477SPatrick Sanan .seealso: `SNESCreate()`, `SNESSetFunction()`, `SNESFunction()`, `SNESSetFunctionDomainError()`, `SNESSetCheckJacobianDomainError()`
1918383d7d7SFande Kong @*/
1928383d7d7SFande Kong PetscErrorCode SNESGetCheckJacobianDomainError(SNES snes, PetscBool *flg)
1938383d7d7SFande Kong {
1948383d7d7SFande Kong   PetscFunctionBegin;
1958383d7d7SFande Kong   PetscValidHeaderSpecific(snes,SNES_CLASSID,1);
196534a8f05SLisandro Dalcin   PetscValidBoolPointer(flg,2);
1978383d7d7SFande Kong   *flg = snes->checkjacdomainerror;
1988383d7d7SFande Kong   PetscFunctionReturn(0);
1998383d7d7SFande Kong }
2008383d7d7SFande Kong 
2018383d7d7SFande Kong /*@
202c77b2880SPeter Brune    SNESGetFunctionDomainError - Gets the status of the domain error after a call to SNESComputeFunction;
2036a388c36SPeter Brune 
2046a388c36SPeter Brune    Logically Collective on SNES
2056a388c36SPeter Brune 
2066a388c36SPeter Brune    Input Parameters:
2076a388c36SPeter Brune .  snes - the SNES context
2086a388c36SPeter Brune 
2096a388c36SPeter Brune    Output Parameters:
210bf388a1fSBarry Smith .  domainerror - Set to PETSC_TRUE if there's a domain error; PETSC_FALSE otherwise.
2116a388c36SPeter Brune 
2126a388c36SPeter Brune    Level: advanced
2136a388c36SPeter Brune 
214db781477SPatrick Sanan .seealso: `SNESSetFunctionDomainError()`, `SNESComputeFunction()`
2156a388c36SPeter Brune @*/
2166a388c36SPeter Brune PetscErrorCode  SNESGetFunctionDomainError(SNES snes, PetscBool *domainerror)
2176a388c36SPeter Brune {
2186a388c36SPeter Brune   PetscFunctionBegin;
2196a388c36SPeter Brune   PetscValidHeaderSpecific(snes,SNES_CLASSID,1);
220534a8f05SLisandro Dalcin   PetscValidBoolPointer(domainerror,2);
2216a388c36SPeter Brune   *domainerror = snes->domainerror;
2226a388c36SPeter Brune   PetscFunctionReturn(0);
2236a388c36SPeter Brune }
2246a388c36SPeter Brune 
22507b62357SFande Kong /*@
22607b62357SFande Kong    SNESGetJacobianDomainError - Gets the status of the Jacobian domain error after a call to SNESComputeJacobian;
22707b62357SFande Kong 
22807b62357SFande Kong    Logically Collective on SNES
22907b62357SFande Kong 
23007b62357SFande Kong    Input Parameters:
23107b62357SFande Kong .  snes - the SNES context
23207b62357SFande Kong 
23307b62357SFande Kong    Output Parameters:
23407b62357SFande Kong .  domainerror - Set to PETSC_TRUE if there's a jacobian domain error; PETSC_FALSE otherwise.
23507b62357SFande Kong 
23607b62357SFande Kong    Level: advanced
23707b62357SFande Kong 
238db781477SPatrick Sanan .seealso: `SNESSetFunctionDomainError()`, `SNESComputeFunction(),SNESGetFunctionDomainError()`
23907b62357SFande Kong @*/
24007b62357SFande Kong PetscErrorCode SNESGetJacobianDomainError(SNES snes, PetscBool *domainerror)
24107b62357SFande Kong {
24207b62357SFande Kong   PetscFunctionBegin;
24307b62357SFande Kong   PetscValidHeaderSpecific(snes,SNES_CLASSID,1);
244534a8f05SLisandro Dalcin   PetscValidBoolPointer(domainerror,2);
24507b62357SFande Kong   *domainerror = snes->jacobiandomainerror;
24607b62357SFande Kong   PetscFunctionReturn(0);
24707b62357SFande Kong }
24807b62357SFande Kong 
24955849f57SBarry Smith /*@C
25055849f57SBarry Smith   SNESLoad - Loads a SNES that has been stored in binary  with SNESView().
25155849f57SBarry Smith 
25255849f57SBarry Smith   Collective on PetscViewer
25355849f57SBarry Smith 
25455849f57SBarry Smith   Input Parameters:
25555849f57SBarry Smith + newdm - the newly loaded SNES, this needs to have been created with SNESCreate() or
25655849f57SBarry Smith            some related function before a call to SNESLoad().
25755849f57SBarry Smith - viewer - binary file viewer, obtained from PetscViewerBinaryOpen()
25855849f57SBarry Smith 
25955849f57SBarry Smith    Level: intermediate
26055849f57SBarry Smith 
26155849f57SBarry Smith   Notes:
26255849f57SBarry Smith    The type is determined by the data in the file, any type set into the SNES before this call is ignored.
26355849f57SBarry Smith 
26455849f57SBarry Smith   Notes for advanced users:
26555849f57SBarry Smith   Most users should not need to know the details of the binary storage
26655849f57SBarry Smith   format, since SNESLoad() and TSView() completely hide these details.
26755849f57SBarry Smith   But for anyone who's interested, the standard binary matrix storage
26855849f57SBarry Smith   format is
26955849f57SBarry Smith .vb
27055849f57SBarry Smith      has not yet been determined
27155849f57SBarry Smith .ve
27255849f57SBarry Smith 
273db781477SPatrick Sanan .seealso: `PetscViewerBinaryOpen()`, `SNESView()`, `MatLoad()`, `VecLoad()`
27455849f57SBarry Smith @*/
2752d53ad75SBarry Smith PetscErrorCode  SNESLoad(SNES snes, PetscViewer viewer)
27655849f57SBarry Smith {
27755849f57SBarry Smith   PetscBool      isbinary;
278060da220SMatthew G. Knepley   PetscInt       classid;
27955849f57SBarry Smith   char           type[256];
28055849f57SBarry Smith   KSP            ksp;
2812d53ad75SBarry Smith   DM             dm;
2822d53ad75SBarry Smith   DMSNES         dmsnes;
28355849f57SBarry Smith 
28455849f57SBarry Smith   PetscFunctionBegin;
2852d53ad75SBarry Smith   PetscValidHeaderSpecific(snes,SNES_CLASSID,1);
28655849f57SBarry Smith   PetscValidHeaderSpecific(viewer,PETSC_VIEWER_CLASSID,2);
2879566063dSJacob Faibussowitsch   PetscCall(PetscObjectTypeCompare((PetscObject)viewer,PETSCVIEWERBINARY,&isbinary));
2885f80ce2aSJacob Faibussowitsch   PetscCheck(isbinary,PETSC_COMM_SELF,PETSC_ERR_ARG_WRONG,"Invalid viewer; open viewer with PetscViewerBinaryOpen()");
28955849f57SBarry Smith 
2909566063dSJacob Faibussowitsch   PetscCall(PetscViewerBinaryRead(viewer,&classid,1,NULL,PETSC_INT));
2915f80ce2aSJacob Faibussowitsch   PetscCheck(classid == SNES_FILE_CLASSID,PetscObjectComm((PetscObject)snes),PETSC_ERR_ARG_WRONG,"Not SNES next in file");
2929566063dSJacob Faibussowitsch   PetscCall(PetscViewerBinaryRead(viewer,type,256,NULL,PETSC_CHAR));
2939566063dSJacob Faibussowitsch   PetscCall(SNESSetType(snes, type));
2942d53ad75SBarry Smith   if (snes->ops->load) {
2959566063dSJacob Faibussowitsch     PetscCall((*snes->ops->load)(snes,viewer));
296f2c2a1b9SBarry Smith   }
2979566063dSJacob Faibussowitsch   PetscCall(SNESGetDM(snes,&dm));
2989566063dSJacob Faibussowitsch   PetscCall(DMGetDMSNES(dm,&dmsnes));
2999566063dSJacob Faibussowitsch   PetscCall(DMSNESLoad(dmsnes,viewer));
3009566063dSJacob Faibussowitsch   PetscCall(SNESGetKSP(snes,&ksp));
3019566063dSJacob Faibussowitsch   PetscCall(KSPLoad(ksp,viewer));
30255849f57SBarry Smith   PetscFunctionReturn(0);
30355849f57SBarry Smith }
3046a388c36SPeter Brune 
3059804daf3SBarry Smith #include <petscdraw.h>
306e04113cfSBarry Smith #if defined(PETSC_HAVE_SAWS)
307e04113cfSBarry Smith #include <petscviewersaws.h>
308bfb97211SBarry Smith #endif
3098404b7f3SBarry Smith 
310fe2efc57SMark /*@C
311fe2efc57SMark    SNESViewFromOptions - View from Options
312fe2efc57SMark 
313fe2efc57SMark    Collective on SNES
314fe2efc57SMark 
315fe2efc57SMark    Input Parameters:
316fe2efc57SMark +  A - the application ordering context
317736c3998SJose E. Roman .  obj - Optional object
318736c3998SJose E. Roman -  name - command line option
319fe2efc57SMark 
320fe2efc57SMark    Level: intermediate
321db781477SPatrick Sanan .seealso: `SNES`, `SNESView`, `PetscObjectViewFromOptions()`, `SNESCreate()`
322fe2efc57SMark @*/
323fe2efc57SMark PetscErrorCode  SNESViewFromOptions(SNES A,PetscObject obj,const char name[])
324fe2efc57SMark {
325fe2efc57SMark   PetscFunctionBegin;
326fe2efc57SMark   PetscValidHeaderSpecific(A,SNES_CLASSID,1);
3279566063dSJacob Faibussowitsch   PetscCall(PetscObjectViewFromOptions((PetscObject)A,obj,name));
328fe2efc57SMark   PetscFunctionReturn(0);
329fe2efc57SMark }
330fe2efc57SMark 
331789d8953SBarry Smith PETSC_EXTERN PetscErrorCode SNESComputeJacobian_DMDA(SNES,Vec,Mat,Mat,void*);
332789d8953SBarry Smith 
3337e2c5f70SBarry Smith /*@C
3349b94acceSBarry Smith    SNESView - Prints the SNES data structure.
3359b94acceSBarry Smith 
3364c49b128SBarry Smith    Collective on SNES
337fee21e36SBarry Smith 
338c7afd0dbSLois Curfman McInnes    Input Parameters:
339c7afd0dbSLois Curfman McInnes +  SNES - the SNES context
340c7afd0dbSLois Curfman McInnes -  viewer - visualization context
341c7afd0dbSLois Curfman McInnes 
3429b94acceSBarry Smith    Options Database Key:
343c8a8ba5cSLois Curfman McInnes .  -snes_view - Calls SNESView() at end of SNESSolve()
3449b94acceSBarry Smith 
3459b94acceSBarry Smith    Notes:
3469b94acceSBarry Smith    The available visualization contexts include
347b0a32e0cSBarry Smith +     PETSC_VIEWER_STDOUT_SELF - standard output (default)
348b0a32e0cSBarry Smith -     PETSC_VIEWER_STDOUT_WORLD - synchronized standard
349c8a8ba5cSLois Curfman McInnes          output where only the first processor opens
350c8a8ba5cSLois Curfman McInnes          the file.  All other processors send their
351c8a8ba5cSLois Curfman McInnes          data to the first processor to print.
3529b94acceSBarry Smith 
353052bf0daSPierre Jolivet    The available formats include
354052bf0daSPierre Jolivet +     PETSC_VIEWER_DEFAULT - standard output (default)
355052bf0daSPierre Jolivet -     PETSC_VIEWER_ASCII_INFO_DETAIL - more verbose output for SNESNASM
356052bf0daSPierre Jolivet 
3573e081fefSLois Curfman McInnes    The user can open an alternative visualization context with
358b0a32e0cSBarry Smith    PetscViewerASCIIOpen() - output to a specified file.
3599b94acceSBarry Smith 
360595c91d4SBarry Smith   In the debugger you can do "call SNESView(snes,0)" to display the SNES solver. (The same holds for any PETSc object viewer).
361595c91d4SBarry Smith 
36236851e7fSLois Curfman McInnes    Level: beginner
36336851e7fSLois Curfman McInnes 
364db781477SPatrick Sanan .seealso: `PetscViewerASCIIOpen()`
3659b94acceSBarry Smith @*/
3667087cfbeSBarry Smith PetscErrorCode  SNESView(SNES snes,PetscViewer viewer)
3679b94acceSBarry Smith {
368fa9f3622SBarry Smith   SNESKSPEW      *kctx;
36994b7f48cSBarry Smith   KSP            ksp;
3707f1410a3SPeter Brune   SNESLineSearch linesearch;
37172a02f06SBarry Smith   PetscBool      iascii,isstring,isbinary,isdraw;
3722d53ad75SBarry Smith   DMSNES         dmsnes;
373e04113cfSBarry Smith #if defined(PETSC_HAVE_SAWS)
374536b137fSBarry Smith   PetscBool      issaws;
375bfb97211SBarry Smith #endif
3769b94acceSBarry Smith 
3773a40ed3dSBarry Smith   PetscFunctionBegin;
3780700a824SBarry Smith   PetscValidHeaderSpecific(snes,SNES_CLASSID,1);
3793050cee2SBarry Smith   if (!viewer) {
3809566063dSJacob Faibussowitsch     PetscCall(PetscViewerASCIIGetStdout(PetscObjectComm((PetscObject)snes),&viewer));
3813050cee2SBarry Smith   }
3820700a824SBarry Smith   PetscValidHeaderSpecific(viewer,PETSC_VIEWER_CLASSID,2);
383c9780b6fSBarry Smith   PetscCheckSameComm(snes,1,viewer,2);
38474679c65SBarry Smith 
3859566063dSJacob Faibussowitsch   PetscCall(PetscObjectTypeCompare((PetscObject)viewer,PETSCVIEWERASCII,&iascii));
3869566063dSJacob Faibussowitsch   PetscCall(PetscObjectTypeCompare((PetscObject)viewer,PETSCVIEWERSTRING,&isstring));
3879566063dSJacob Faibussowitsch   PetscCall(PetscObjectTypeCompare((PetscObject)viewer,PETSCVIEWERBINARY,&isbinary));
3889566063dSJacob Faibussowitsch   PetscCall(PetscObjectTypeCompare((PetscObject)viewer,PETSCVIEWERDRAW,&isdraw));
389e04113cfSBarry Smith #if defined(PETSC_HAVE_SAWS)
3909566063dSJacob Faibussowitsch   PetscCall(PetscObjectTypeCompare((PetscObject)viewer,PETSCVIEWERSAWS,&issaws));
391bfb97211SBarry Smith #endif
39232077d6dSBarry Smith   if (iascii) {
393dc0571f2SMatthew G. Knepley     SNESNormSchedule normschedule;
3948404b7f3SBarry Smith     DM               dm;
3958404b7f3SBarry Smith     PetscErrorCode   (*cJ)(SNES,Vec,Mat,Mat,void*);
3968404b7f3SBarry Smith     void             *ctx;
397789d8953SBarry Smith     const char       *pre = "";
398dc0571f2SMatthew G. Knepley 
3999566063dSJacob Faibussowitsch     PetscCall(PetscObjectPrintClassNamePrefixType((PetscObject)snes,viewer));
400fce1e034SJed Brown     if (!snes->setupcalled) {
4019566063dSJacob Faibussowitsch       PetscCall(PetscViewerASCIIPrintf(viewer,"  SNES has not been set up so information may be incomplete\n"));
402fce1e034SJed Brown     }
403e7788613SBarry Smith     if (snes->ops->view) {
4049566063dSJacob Faibussowitsch       PetscCall(PetscViewerASCIIPushTab(viewer));
4059566063dSJacob Faibussowitsch       PetscCall((*snes->ops->view)(snes,viewer));
4069566063dSJacob Faibussowitsch       PetscCall(PetscViewerASCIIPopTab(viewer));
4070ef38995SBarry Smith     }
40863a3b9bcSJacob Faibussowitsch     PetscCall(PetscViewerASCIIPrintf(viewer,"  maximum iterations=%" PetscInt_FMT ", maximum function evaluations=%" PetscInt_FMT "\n",snes->max_its,snes->max_funcs));
4099566063dSJacob Faibussowitsch     PetscCall(PetscViewerASCIIPrintf(viewer,"  tolerances: relative=%g, absolute=%g, solution=%g\n",(double)snes->rtol,(double)snes->abstol,(double)snes->stol));
410efd4aadfSBarry Smith     if (snes->usesksp) {
41163a3b9bcSJacob Faibussowitsch       PetscCall(PetscViewerASCIIPrintf(viewer,"  total number of linear solver iterations=%" PetscInt_FMT "\n",snes->linear_its));
412efd4aadfSBarry Smith     }
41363a3b9bcSJacob Faibussowitsch     PetscCall(PetscViewerASCIIPrintf(viewer,"  total number of function evaluations=%" PetscInt_FMT "\n",snes->nfuncs));
4149566063dSJacob Faibussowitsch     PetscCall(SNESGetNormSchedule(snes, &normschedule));
4159566063dSJacob Faibussowitsch     if (normschedule > 0) PetscCall(PetscViewerASCIIPrintf(viewer,"  norm schedule %s\n",SNESNormSchedules[normschedule]));
41617fe4bdfSPeter Brune     if (snes->gridsequence) {
41763a3b9bcSJacob Faibussowitsch       PetscCall(PetscViewerASCIIPrintf(viewer,"  total number of grid sequence refinements=%" PetscInt_FMT "\n",snes->gridsequence));
41817fe4bdfSPeter Brune     }
4199b94acceSBarry Smith     if (snes->ksp_ewconv) {
420fa9f3622SBarry Smith       kctx = (SNESKSPEW*)snes->kspconvctx;
4219b94acceSBarry Smith       if (kctx) {
42263a3b9bcSJacob Faibussowitsch         PetscCall(PetscViewerASCIIPrintf(viewer,"  Eisenstat-Walker computation of KSP relative tolerance (version %" PetscInt_FMT ")\n",kctx->version));
4239566063dSJacob Faibussowitsch         PetscCall(PetscViewerASCIIPrintf(viewer,"    rtol_0=%g, rtol_max=%g, threshold=%g\n",(double)kctx->rtol_0,(double)kctx->rtol_max,(double)kctx->threshold));
4249566063dSJacob Faibussowitsch         PetscCall(PetscViewerASCIIPrintf(viewer,"    gamma=%g, alpha=%g, alpha2=%g\n",(double)kctx->gamma,(double)kctx->alpha,(double)kctx->alpha2));
4259b94acceSBarry Smith       }
4269b94acceSBarry Smith     }
427eb1f6c34SBarry Smith     if (snes->lagpreconditioner == -1) {
4289566063dSJacob Faibussowitsch       PetscCall(PetscViewerASCIIPrintf(viewer,"  Preconditioned is never rebuilt\n"));
429eb1f6c34SBarry Smith     } else if (snes->lagpreconditioner > 1) {
43063a3b9bcSJacob Faibussowitsch       PetscCall(PetscViewerASCIIPrintf(viewer,"  Preconditioned is rebuilt every %" PetscInt_FMT " new Jacobians\n",snes->lagpreconditioner));
431eb1f6c34SBarry Smith     }
432eb1f6c34SBarry Smith     if (snes->lagjacobian == -1) {
4339566063dSJacob Faibussowitsch       PetscCall(PetscViewerASCIIPrintf(viewer,"  Jacobian is never rebuilt\n"));
434eb1f6c34SBarry Smith     } else if (snes->lagjacobian > 1) {
43563a3b9bcSJacob Faibussowitsch       PetscCall(PetscViewerASCIIPrintf(viewer,"  Jacobian is rebuilt every %" PetscInt_FMT " SNES iterations\n",snes->lagjacobian));
436eb1f6c34SBarry Smith     }
4379566063dSJacob Faibussowitsch     PetscCall(SNESGetDM(snes,&dm));
4389566063dSJacob Faibussowitsch     PetscCall(DMSNESGetJacobian(dm,&cJ,&ctx));
439789d8953SBarry Smith     if (snes->mf_operator) {
4409566063dSJacob Faibussowitsch       PetscCall(PetscViewerASCIIPrintf(viewer,"  Jacobian is applied matrix-free with differencing\n"));
441789d8953SBarry Smith       pre  = "Preconditioning ";
442789d8953SBarry Smith     }
4438404b7f3SBarry Smith     if (cJ == SNESComputeJacobianDefault) {
4449566063dSJacob Faibussowitsch       PetscCall(PetscViewerASCIIPrintf(viewer,"  %sJacobian is built using finite differences one column at a time\n",pre));
4458404b7f3SBarry Smith     } else if (cJ == SNESComputeJacobianDefaultColor) {
4469566063dSJacob Faibussowitsch       PetscCall(PetscViewerASCIIPrintf(viewer,"  %sJacobian is built using finite differences with coloring\n",pre));
447789d8953SBarry Smith     /* it slightly breaks data encapsulation for access the DMDA information directly */
448789d8953SBarry Smith     } else if (cJ == SNESComputeJacobian_DMDA) {
449789d8953SBarry Smith       MatFDColoring fdcoloring;
4509566063dSJacob Faibussowitsch       PetscCall(PetscObjectQuery((PetscObject)dm,"DMDASNES_FDCOLORING",(PetscObject*)&fdcoloring));
451789d8953SBarry Smith       if (fdcoloring) {
4529566063dSJacob Faibussowitsch         PetscCall(PetscViewerASCIIPrintf(viewer,"  %sJacobian is built using colored finite differences on a DMDA\n",pre));
453789d8953SBarry Smith       } else {
4549566063dSJacob Faibussowitsch         PetscCall(PetscViewerASCIIPrintf(viewer,"  %sJacobian is built using a DMDA local Jacobian\n",pre));
455789d8953SBarry Smith       }
456789d8953SBarry Smith     } else if (snes->mf) {
4579566063dSJacob Faibussowitsch       PetscCall(PetscViewerASCIIPrintf(viewer,"  Jacobian is applied matrix-free with differencing, no explicit Jacobian\n"));
4588404b7f3SBarry Smith     }
4590f5bd95cSBarry Smith   } else if (isstring) {
460317d6ea6SBarry Smith     const char *type;
4619566063dSJacob Faibussowitsch     PetscCall(SNESGetType(snes,&type));
4629566063dSJacob Faibussowitsch     PetscCall(PetscViewerStringSPrintf(viewer," SNESType: %-7.7s",type));
4639566063dSJacob Faibussowitsch     if (snes->ops->view) PetscCall((*snes->ops->view)(snes,viewer));
46455849f57SBarry Smith   } else if (isbinary) {
46555849f57SBarry Smith     PetscInt    classid = SNES_FILE_CLASSID;
46655849f57SBarry Smith     MPI_Comm    comm;
46755849f57SBarry Smith     PetscMPIInt rank;
46855849f57SBarry Smith     char        type[256];
46955849f57SBarry Smith 
4709566063dSJacob Faibussowitsch     PetscCall(PetscObjectGetComm((PetscObject)snes,&comm));
4719566063dSJacob Faibussowitsch     PetscCallMPI(MPI_Comm_rank(comm,&rank));
472dd400576SPatrick Sanan     if (rank == 0) {
4739566063dSJacob Faibussowitsch       PetscCall(PetscViewerBinaryWrite(viewer,&classid,1,PETSC_INT));
4749566063dSJacob Faibussowitsch       PetscCall(PetscStrncpy(type,((PetscObject)snes)->type_name,sizeof(type)));
4759566063dSJacob Faibussowitsch       PetscCall(PetscViewerBinaryWrite(viewer,type,sizeof(type),PETSC_CHAR));
47655849f57SBarry Smith     }
47755849f57SBarry Smith     if (snes->ops->view) {
4789566063dSJacob Faibussowitsch       PetscCall((*snes->ops->view)(snes,viewer));
47955849f57SBarry Smith     }
48072a02f06SBarry Smith   } else if (isdraw) {
48172a02f06SBarry Smith     PetscDraw draw;
48272a02f06SBarry Smith     char      str[36];
48389fd9fafSBarry Smith     PetscReal x,y,bottom,h;
48472a02f06SBarry Smith 
4859566063dSJacob Faibussowitsch     PetscCall(PetscViewerDrawGetDraw(viewer,0,&draw));
4869566063dSJacob Faibussowitsch     PetscCall(PetscDrawGetCurrentPoint(draw,&x,&y));
4879566063dSJacob Faibussowitsch     PetscCall(PetscStrncpy(str,"SNES: ",sizeof(str)));
4889566063dSJacob Faibussowitsch     PetscCall(PetscStrlcat(str,((PetscObject)snes)->type_name,sizeof(str)));
4899566063dSJacob Faibussowitsch     PetscCall(PetscDrawStringBoxed(draw,x,y,PETSC_DRAW_BLUE,PETSC_DRAW_BLACK,str,NULL,&h));
49089fd9fafSBarry Smith     bottom = y - h;
4919566063dSJacob Faibussowitsch     PetscCall(PetscDrawPushCurrentPoint(draw,x,bottom));
492c4646bacSPeter Brune     if (snes->ops->view) {
4939566063dSJacob Faibussowitsch       PetscCall((*snes->ops->view)(snes,viewer));
494c4646bacSPeter Brune     }
495e04113cfSBarry Smith #if defined(PETSC_HAVE_SAWS)
496536b137fSBarry Smith   } else if (issaws) {
497d45a07a7SBarry Smith     PetscMPIInt rank;
4982657e9d9SBarry Smith     const char *name;
499d45a07a7SBarry Smith 
5009566063dSJacob Faibussowitsch     PetscCall(PetscObjectGetName((PetscObject)snes,&name));
5019566063dSJacob Faibussowitsch     PetscCallMPI(MPI_Comm_rank(PETSC_COMM_WORLD,&rank));
502dd400576SPatrick Sanan     if (!((PetscObject)snes)->amsmem && rank == 0) {
503d45a07a7SBarry Smith       char       dir[1024];
504d45a07a7SBarry Smith 
5059566063dSJacob Faibussowitsch       PetscCall(PetscObjectViewSAWs((PetscObject)snes,viewer));
5069566063dSJacob Faibussowitsch       PetscCall(PetscSNPrintf(dir,1024,"/PETSc/Objects/%s/its",name));
5072657e9d9SBarry Smith       PetscStackCallSAWs(SAWs_Register,(dir,&snes->iter,1,SAWs_READ,SAWs_INT));
508bfb97211SBarry Smith       if (!snes->conv_hist) {
5099566063dSJacob Faibussowitsch         PetscCall(SNESSetConvergenceHistory(snes,NULL,NULL,PETSC_DECIDE,PETSC_TRUE));
510bfb97211SBarry Smith       }
5119566063dSJacob Faibussowitsch       PetscCall(PetscSNPrintf(dir,1024,"/PETSc/Objects/%s/conv_hist",name));
5122657e9d9SBarry Smith       PetscStackCallSAWs(SAWs_Register,(dir,snes->conv_hist,10,SAWs_READ,SAWs_DOUBLE));
513f05ece33SBarry Smith     }
514bfb97211SBarry Smith #endif
51572a02f06SBarry Smith   }
51672a02f06SBarry Smith   if (snes->linesearch) {
5179566063dSJacob Faibussowitsch     PetscCall(SNESGetLineSearch(snes, &linesearch));
5189566063dSJacob Faibussowitsch     PetscCall(PetscViewerASCIIPushTab(viewer));
5199566063dSJacob Faibussowitsch     PetscCall(SNESLineSearchView(linesearch, viewer));
5209566063dSJacob Faibussowitsch     PetscCall(PetscViewerASCIIPopTab(viewer));
52119bcc07fSBarry Smith   }
522efd4aadfSBarry Smith   if (snes->npc && snes->usesnpc) {
5239566063dSJacob Faibussowitsch     PetscCall(PetscViewerASCIIPushTab(viewer));
5249566063dSJacob Faibussowitsch     PetscCall(SNESView(snes->npc, viewer));
5259566063dSJacob Faibussowitsch     PetscCall(PetscViewerASCIIPopTab(viewer));
5264a0c5b0cSMatthew G Knepley   }
5279566063dSJacob Faibussowitsch   PetscCall(PetscViewerASCIIPushTab(viewer));
5289566063dSJacob Faibussowitsch   PetscCall(DMGetDMSNES(snes->dm,&dmsnes));
5299566063dSJacob Faibussowitsch   PetscCall(DMSNESView(dmsnes, viewer));
5309566063dSJacob Faibussowitsch   PetscCall(PetscViewerASCIIPopTab(viewer));
5312c155ee1SBarry Smith   if (snes->usesksp) {
5329566063dSJacob Faibussowitsch     PetscCall(SNESGetKSP(snes,&ksp));
5339566063dSJacob Faibussowitsch     PetscCall(PetscViewerASCIIPushTab(viewer));
5349566063dSJacob Faibussowitsch     PetscCall(KSPView(ksp,viewer));
5359566063dSJacob Faibussowitsch     PetscCall(PetscViewerASCIIPopTab(viewer));
5362c155ee1SBarry Smith   }
53772a02f06SBarry Smith   if (isdraw) {
53872a02f06SBarry Smith     PetscDraw draw;
5399566063dSJacob Faibussowitsch     PetscCall(PetscViewerDrawGetDraw(viewer,0,&draw));
5409566063dSJacob Faibussowitsch     PetscCall(PetscDrawPopCurrentPoint(draw));
5417f1410a3SPeter Brune   }
5423a40ed3dSBarry Smith   PetscFunctionReturn(0);
5439b94acceSBarry Smith }
5449b94acceSBarry Smith 
54576b2cf59SMatthew Knepley /*
54676b2cf59SMatthew Knepley   We retain a list of functions that also take SNES command
54776b2cf59SMatthew Knepley   line options. These are called at the end SNESSetFromOptions()
54876b2cf59SMatthew Knepley */
54976b2cf59SMatthew Knepley #define MAXSETFROMOPTIONS 5
550a7cc72afSBarry Smith static PetscInt numberofsetfromoptions;
5516849ba73SBarry Smith static PetscErrorCode (*othersetfromoptions[MAXSETFROMOPTIONS])(SNES);
55276b2cf59SMatthew Knepley 
553ac226902SBarry Smith /*@C
55476b2cf59SMatthew Knepley   SNESAddOptionsChecker - Adds an additional function to check for SNES options.
55576b2cf59SMatthew Knepley 
55676b2cf59SMatthew Knepley   Not Collective
55776b2cf59SMatthew Knepley 
55876b2cf59SMatthew Knepley   Input Parameter:
55976b2cf59SMatthew Knepley . snescheck - function that checks for options
56076b2cf59SMatthew Knepley 
56176b2cf59SMatthew Knepley   Level: developer
56276b2cf59SMatthew Knepley 
563db781477SPatrick Sanan .seealso: `SNESSetFromOptions()`
56476b2cf59SMatthew Knepley @*/
5657087cfbeSBarry Smith PetscErrorCode  SNESAddOptionsChecker(PetscErrorCode (*snescheck)(SNES))
56676b2cf59SMatthew Knepley {
56776b2cf59SMatthew Knepley   PetscFunctionBegin;
56863a3b9bcSJacob Faibussowitsch   PetscCheck(numberofsetfromoptions < MAXSETFROMOPTIONS,PETSC_COMM_SELF,PETSC_ERR_ARG_OUTOFRANGE, "Too many options checkers, only %d allowed", MAXSETFROMOPTIONS);
56976b2cf59SMatthew Knepley   othersetfromoptions[numberofsetfromoptions++] = snescheck;
57076b2cf59SMatthew Knepley   PetscFunctionReturn(0);
57176b2cf59SMatthew Knepley }
57276b2cf59SMatthew Knepley 
57325acbd8eSLisandro Dalcin PETSC_INTERN PetscErrorCode SNESDefaultMatrixFreeCreate2(SNES,Vec,Mat*);
574aa3661deSLisandro Dalcin 
575ace3abfcSBarry Smith static PetscErrorCode SNESSetUpMatrixFree_Private(SNES snes, PetscBool hasOperator, PetscInt version)
576aa3661deSLisandro Dalcin {
577aa3661deSLisandro Dalcin   Mat            J;
578895c21f2SBarry Smith   MatNullSpace   nullsp;
579aa3661deSLisandro Dalcin 
580aa3661deSLisandro Dalcin   PetscFunctionBegin;
5810700a824SBarry Smith   PetscValidHeaderSpecific(snes,SNES_CLASSID,1);
582aa3661deSLisandro Dalcin 
58398613b67SLisandro Dalcin   if (!snes->vec_func && (snes->jacobian || snes->jacobian_pre)) {
58498613b67SLisandro Dalcin     Mat A = snes->jacobian, B = snes->jacobian_pre;
5859566063dSJacob Faibussowitsch     PetscCall(MatCreateVecs(A ? A : B, NULL,&snes->vec_func));
58698613b67SLisandro Dalcin   }
58798613b67SLisandro Dalcin 
588aa3661deSLisandro Dalcin   if (version == 1) {
5899566063dSJacob Faibussowitsch     PetscCall(MatCreateSNESMF(snes,&J));
5909566063dSJacob Faibussowitsch     PetscCall(MatMFFDSetOptionsPrefix(J,((PetscObject)snes)->prefix));
5919566063dSJacob Faibussowitsch     PetscCall(MatSetFromOptions(J));
5921e2ae407SBarry Smith     /* TODO: the version 2 code should be merged into the MatCreateSNESMF() and MatCreateMFFD() infrastructure and then removed */
593aa3661deSLisandro Dalcin   } else if (version == 2) {
5945f80ce2aSJacob Faibussowitsch     PetscCheck(snes->vec_func,PETSC_COMM_SELF,PETSC_ERR_ARG_WRONGSTATE,"SNESSetFunction() must be called first");
595570b7f6dSBarry Smith #if !defined(PETSC_USE_COMPLEX) && !defined(PETSC_USE_REAL_SINGLE) && !defined(PETSC_USE_REAL___FLOAT128) && !defined(PETSC_USE_REAL___FP16)
5969566063dSJacob Faibussowitsch     PetscCall(SNESDefaultMatrixFreeCreate2(snes,snes->vec_func,&J));
597aa3661deSLisandro Dalcin #else
5982479783cSJose E. Roman     SETERRQ(PETSC_COMM_SELF,PETSC_ERR_SUP, "matrix-free operator routines (version 2)");
599aa3661deSLisandro Dalcin #endif
6002479783cSJose E. Roman   } else SETERRQ(PETSC_COMM_SELF,PETSC_ERR_ARG_OUTOFRANGE, "matrix-free operator routines, only version 1 and 2");
601aa3661deSLisandro Dalcin 
602895c21f2SBarry Smith   /* attach any user provided null space that was on Amat to the newly created matrix free matrix */
603895c21f2SBarry Smith   if (snes->jacobian) {
6049566063dSJacob Faibussowitsch     PetscCall(MatGetNullSpace(snes->jacobian,&nullsp));
605895c21f2SBarry Smith     if (nullsp) {
6069566063dSJacob Faibussowitsch       PetscCall(MatSetNullSpace(J,nullsp));
607895c21f2SBarry Smith     }
608895c21f2SBarry Smith   }
609895c21f2SBarry Smith 
61063a3b9bcSJacob Faibussowitsch   PetscCall(PetscInfo(snes,"Setting default matrix-free operator routines (version %" PetscInt_FMT ")\n", version));
611d3462f78SMatthew Knepley   if (hasOperator) {
6123232da50SPeter Brune 
613aa3661deSLisandro Dalcin     /* This version replaces the user provided Jacobian matrix with a
614aa3661deSLisandro Dalcin        matrix-free version but still employs the user-provided preconditioner matrix. */
6159566063dSJacob Faibussowitsch     PetscCall(SNESSetJacobian(snes,J,NULL,NULL,NULL));
616aa3661deSLisandro Dalcin   } else {
617aa3661deSLisandro Dalcin     /* This version replaces both the user-provided Jacobian and the user-
6183232da50SPeter Brune      provided preconditioner Jacobian with the default matrix free version. */
619b552625fSStefano Zampini     if (snes->npcside == PC_LEFT && snes->npc) {
6209566063dSJacob Faibussowitsch       if (!snes->jacobian) PetscCall(SNESSetJacobian(snes,J,NULL,NULL,NULL));
621172a4300SPeter Brune     } else {
622789d8953SBarry Smith       KSP       ksp;
623789d8953SBarry Smith       PC        pc;
624789d8953SBarry Smith       PetscBool match;
625789d8953SBarry Smith 
6269566063dSJacob Faibussowitsch       PetscCall(SNESSetJacobian(snes,J,J,MatMFFDComputeJacobian,NULL));
627aa3661deSLisandro Dalcin       /* Force no preconditioner */
6289566063dSJacob Faibussowitsch       PetscCall(SNESGetKSP(snes,&ksp));
6299566063dSJacob Faibussowitsch       PetscCall(KSPGetPC(ksp,&pc));
630*2698c518SLisandro Dalcin       PetscCall(PetscObjectTypeCompareAny((PetscObject)pc,&match,PCSHELL,PCH2OPUS,""));
631aa3661deSLisandro Dalcin       if (!match) {
6329566063dSJacob Faibussowitsch         PetscCall(PetscInfo(snes,"Setting default matrix-free preconditioner routines\nThat is no preconditioner is being used\n"));
6339566063dSJacob Faibussowitsch         PetscCall(PCSetType(pc,PCNONE));
634aa3661deSLisandro Dalcin       }
635aa3661deSLisandro Dalcin     }
636789d8953SBarry Smith   }
6379566063dSJacob Faibussowitsch   PetscCall(MatDestroy(&J));
638aa3661deSLisandro Dalcin   PetscFunctionReturn(0);
639aa3661deSLisandro Dalcin }
640aa3661deSLisandro Dalcin 
641dfe15315SJed Brown static PetscErrorCode DMRestrictHook_SNESVecSol(DM dmfine,Mat Restrict,Vec Rscale,Mat Inject,DM dmcoarse,void *ctx)
642dfe15315SJed Brown {
643dfe15315SJed Brown   SNES           snes = (SNES)ctx;
6440298fd71SBarry Smith   Vec            Xfine,Xfine_named = NULL,Xcoarse;
645dfe15315SJed Brown 
646dfe15315SJed Brown   PetscFunctionBegin;
64716ebb321SJed Brown   if (PetscLogPrintInfo) {
64816ebb321SJed Brown     PetscInt finelevel,coarselevel,fineclevel,coarseclevel;
6499566063dSJacob Faibussowitsch     PetscCall(DMGetRefineLevel(dmfine,&finelevel));
6509566063dSJacob Faibussowitsch     PetscCall(DMGetCoarsenLevel(dmfine,&fineclevel));
6519566063dSJacob Faibussowitsch     PetscCall(DMGetRefineLevel(dmcoarse,&coarselevel));
6529566063dSJacob Faibussowitsch     PetscCall(DMGetCoarsenLevel(dmcoarse,&coarseclevel));
65363a3b9bcSJacob Faibussowitsch     PetscCall(PetscInfo(dmfine,"Restricting SNES solution vector from level %" PetscInt_FMT "-%" PetscInt_FMT " to level %" PetscInt_FMT "-%" PetscInt_FMT "\n",finelevel,fineclevel,coarselevel,coarseclevel));
65416ebb321SJed Brown   }
655dfe15315SJed Brown   if (dmfine == snes->dm) Xfine = snes->vec_sol;
656dfe15315SJed Brown   else {
6579566063dSJacob Faibussowitsch     PetscCall(DMGetNamedGlobalVector(dmfine,"SNESVecSol",&Xfine_named));
658dfe15315SJed Brown     Xfine = Xfine_named;
659dfe15315SJed Brown   }
6609566063dSJacob Faibussowitsch   PetscCall(DMGetNamedGlobalVector(dmcoarse,"SNESVecSol",&Xcoarse));
661907f5c5aSLawrence Mitchell   if (Inject) {
6629566063dSJacob Faibussowitsch     PetscCall(MatRestrict(Inject,Xfine,Xcoarse));
663907f5c5aSLawrence Mitchell   } else {
6649566063dSJacob Faibussowitsch     PetscCall(MatRestrict(Restrict,Xfine,Xcoarse));
6659566063dSJacob Faibussowitsch     PetscCall(VecPointwiseMult(Xcoarse,Xcoarse,Rscale));
666907f5c5aSLawrence Mitchell   }
6679566063dSJacob Faibussowitsch   PetscCall(DMRestoreNamedGlobalVector(dmcoarse,"SNESVecSol",&Xcoarse));
6689566063dSJacob Faibussowitsch   if (Xfine_named) PetscCall(DMRestoreNamedGlobalVector(dmfine,"SNESVecSol",&Xfine_named));
669dfe15315SJed Brown   PetscFunctionReturn(0);
670dfe15315SJed Brown }
671dfe15315SJed Brown 
67216ebb321SJed Brown static PetscErrorCode DMCoarsenHook_SNESVecSol(DM dm,DM dmc,void *ctx)
67316ebb321SJed Brown {
67416ebb321SJed Brown   PetscFunctionBegin;
6759566063dSJacob Faibussowitsch   PetscCall(DMCoarsenHookAdd(dmc,DMCoarsenHook_SNESVecSol,DMRestrictHook_SNESVecSol,ctx));
67616ebb321SJed Brown   PetscFunctionReturn(0);
67716ebb321SJed Brown }
67816ebb321SJed Brown 
679a6950cb2SJed Brown /* This may be called to rediscretize the operator on levels of linear multigrid. The DM shuffle is so the user can
680a6950cb2SJed Brown  * safely call SNESGetDM() in their residual evaluation routine. */
68123ee1639SBarry Smith static PetscErrorCode KSPComputeOperators_SNES(KSP ksp,Mat A,Mat B,void *ctx)
682caa4e7f2SJed Brown {
683caa4e7f2SJed Brown   SNES           snes = (SNES)ctx;
6840298fd71SBarry Smith   Vec            X,Xnamed = NULL;
685dfe15315SJed Brown   DM             dmsave;
6864e269d77SPeter Brune   void           *ctxsave;
68725ce1634SJed Brown   PetscErrorCode (*jac)(SNES,Vec,Mat,Mat,void*) = NULL;
688caa4e7f2SJed Brown 
689caa4e7f2SJed Brown   PetscFunctionBegin;
690dfe15315SJed Brown   dmsave = snes->dm;
6919566063dSJacob Faibussowitsch   PetscCall(KSPGetDM(ksp,&snes->dm));
692dfe15315SJed Brown   if (dmsave == snes->dm) X = snes->vec_sol; /* We are on the finest level */
693dfe15315SJed Brown   else {                                     /* We are on a coarser level, this vec was initialized using a DM restrict hook */
6949566063dSJacob Faibussowitsch     PetscCall(DMGetNamedGlobalVector(snes->dm,"SNESVecSol",&Xnamed));
695dfe15315SJed Brown     X    = Xnamed;
6969566063dSJacob Faibussowitsch     PetscCall(SNESGetJacobian(snes,NULL,NULL,&jac,&ctxsave));
6974e269d77SPeter Brune     /* If the DM's don't match up, the MatFDColoring context needed for the jacobian won't match up either -- fixit. */
6988d359177SBarry Smith     if (jac == SNESComputeJacobianDefaultColor) {
6999566063dSJacob Faibussowitsch       PetscCall(SNESSetJacobian(snes,NULL,NULL,SNESComputeJacobianDefaultColor,NULL));
700dfe15315SJed Brown     }
7014e269d77SPeter Brune   }
7024dde8bb0SMatthew G. Knepley   /* Make sure KSP DM has the Jacobian computation routine */
7034dde8bb0SMatthew G. Knepley   {
7044dde8bb0SMatthew G. Knepley     DMSNES sdm;
7054e269d77SPeter Brune 
7069566063dSJacob Faibussowitsch     PetscCall(DMGetDMSNES(snes->dm, &sdm));
7074dde8bb0SMatthew G. Knepley     if (!sdm->ops->computejacobian) {
7089566063dSJacob Faibussowitsch       PetscCall(DMCopyDMSNES(dmsave, snes->dm));
7094dde8bb0SMatthew G. Knepley     }
7104dde8bb0SMatthew G. Knepley   }
7112b93b426SMatthew G. Knepley   /* Compute the operators */
7129566063dSJacob Faibussowitsch   PetscCall(SNESComputeJacobian(snes,X,A,B));
7132b93b426SMatthew G. Knepley   /* Put the previous context back */
7148d359177SBarry Smith   if (snes->dm != dmsave && jac == SNESComputeJacobianDefaultColor) {
7159566063dSJacob Faibussowitsch     PetscCall(SNESSetJacobian(snes,NULL,NULL,jac,ctxsave));
7164e269d77SPeter Brune   }
7174e269d77SPeter Brune 
7189566063dSJacob Faibussowitsch   if (Xnamed) PetscCall(DMRestoreNamedGlobalVector(snes->dm,"SNESVecSol",&Xnamed));
719dfe15315SJed Brown   snes->dm = dmsave;
720caa4e7f2SJed Brown   PetscFunctionReturn(0);
721caa4e7f2SJed Brown }
722caa4e7f2SJed Brown 
7236cab3a1bSJed Brown /*@
7246cab3a1bSJed Brown    SNESSetUpMatrices - ensures that matrices are available for SNES, to be called by SNESSetUp_XXX()
7256cab3a1bSJed Brown 
7266cab3a1bSJed Brown    Collective
7276cab3a1bSJed Brown 
7284165533cSJose E. Roman    Input Parameter:
7296cab3a1bSJed Brown .  snes - snes to configure
7306cab3a1bSJed Brown 
7316cab3a1bSJed Brown    Level: developer
7326cab3a1bSJed Brown 
733db781477SPatrick Sanan .seealso: `SNESSetUp()`
7346cab3a1bSJed Brown @*/
7356cab3a1bSJed Brown PetscErrorCode SNESSetUpMatrices(SNES snes)
7366cab3a1bSJed Brown {
7376cab3a1bSJed Brown   DM             dm;
738942e3340SBarry Smith   DMSNES         sdm;
7396cab3a1bSJed Brown 
7406cab3a1bSJed Brown   PetscFunctionBegin;
7419566063dSJacob Faibussowitsch   PetscCall(SNESGetDM(snes,&dm));
7429566063dSJacob Faibussowitsch   PetscCall(DMGetDMSNES(dm,&sdm));
74358b371f3SBarry Smith   if (!snes->jacobian && snes->mf) {
7446cab3a1bSJed Brown     Mat  J;
7456cab3a1bSJed Brown     void *functx;
7469566063dSJacob Faibussowitsch     PetscCall(MatCreateSNESMF(snes,&J));
7479566063dSJacob Faibussowitsch     PetscCall(MatMFFDSetOptionsPrefix(J,((PetscObject)snes)->prefix));
7489566063dSJacob Faibussowitsch     PetscCall(MatSetFromOptions(J));
7499566063dSJacob Faibussowitsch     PetscCall(SNESGetFunction(snes,NULL,NULL,&functx));
7509566063dSJacob Faibussowitsch     PetscCall(SNESSetJacobian(snes,J,J,NULL,NULL));
7519566063dSJacob Faibussowitsch     PetscCall(MatDestroy(&J));
752caa4e7f2SJed Brown   } else if (snes->mf_operator && !snes->jacobian_pre && !snes->jacobian) {
7536cab3a1bSJed Brown     Mat J,B;
7549566063dSJacob Faibussowitsch     PetscCall(MatCreateSNESMF(snes,&J));
7559566063dSJacob Faibussowitsch     PetscCall(MatMFFDSetOptionsPrefix(J,((PetscObject)snes)->prefix));
7569566063dSJacob Faibussowitsch     PetscCall(MatSetFromOptions(J));
7579566063dSJacob Faibussowitsch     PetscCall(DMCreateMatrix(snes->dm,&B));
75806f20277SJed Brown     /* sdm->computejacobian was already set to reach here */
7599566063dSJacob Faibussowitsch     PetscCall(SNESSetJacobian(snes,J,B,NULL,NULL));
7609566063dSJacob Faibussowitsch     PetscCall(MatDestroy(&J));
7619566063dSJacob Faibussowitsch     PetscCall(MatDestroy(&B));
762caa4e7f2SJed Brown   } else if (!snes->jacobian_pre) {
7631ba9b98eSMatthew G. Knepley     PetscDS   prob;
7646cab3a1bSJed Brown     Mat       J, B;
7651ba9b98eSMatthew G. Knepley     PetscBool hasPrec   = PETSC_FALSE;
7661ba9b98eSMatthew G. Knepley 
7676cab3a1bSJed Brown     J    = snes->jacobian;
7689566063dSJacob Faibussowitsch     PetscCall(DMGetDS(dm, &prob));
7699566063dSJacob Faibussowitsch     if (prob) PetscCall(PetscDSHasJacobianPreconditioner(prob, &hasPrec));
7709566063dSJacob Faibussowitsch     if (J)            PetscCall(PetscObjectReference((PetscObject) J));
7719566063dSJacob Faibussowitsch     else if (hasPrec) PetscCall(DMCreateMatrix(snes->dm, &J));
7729566063dSJacob Faibussowitsch     PetscCall(DMCreateMatrix(snes->dm, &B));
7739566063dSJacob Faibussowitsch     PetscCall(SNESSetJacobian(snes, J ? J : B, B, NULL, NULL));
7749566063dSJacob Faibussowitsch     PetscCall(MatDestroy(&J));
7759566063dSJacob Faibussowitsch     PetscCall(MatDestroy(&B));
7766cab3a1bSJed Brown   }
777caa4e7f2SJed Brown   {
778caa4e7f2SJed Brown     KSP ksp;
7799566063dSJacob Faibussowitsch     PetscCall(SNESGetKSP(snes,&ksp));
7809566063dSJacob Faibussowitsch     PetscCall(KSPSetComputeOperators(ksp,KSPComputeOperators_SNES,snes));
7819566063dSJacob Faibussowitsch     PetscCall(DMCoarsenHookAdd(snes->dm,DMCoarsenHook_SNESVecSol,DMRestrictHook_SNESVecSol,snes));
782caa4e7f2SJed Brown   }
7836cab3a1bSJed Brown   PetscFunctionReturn(0);
7846cab3a1bSJed Brown }
7856cab3a1bSJed Brown 
7865e7c47f3SMatthew G. Knepley static PetscErrorCode SNESMonitorPauseFinal_Internal(SNES snes)
7875e7c47f3SMatthew G. Knepley {
7885e7c47f3SMatthew G. Knepley   PetscInt       i;
7895e7c47f3SMatthew G. Knepley 
7905e7c47f3SMatthew G. Knepley   PetscFunctionBegin;
7915e7c47f3SMatthew G. Knepley   if (!snes->pauseFinal) PetscFunctionReturn(0);
7925e7c47f3SMatthew G. Knepley   for (i = 0; i < snes->numbermonitors; ++i) {
7935e7c47f3SMatthew G. Knepley     PetscViewerAndFormat *vf = (PetscViewerAndFormat *) snes->monitorcontext[i];
7945e7c47f3SMatthew G. Knepley     PetscDraw             draw;
7955e7c47f3SMatthew G. Knepley     PetscReal             lpause;
7965e7c47f3SMatthew G. Knepley 
7975e7c47f3SMatthew G. Knepley     if (!vf) continue;
7985e7c47f3SMatthew G. Knepley     if (vf->lg) {
7995e7c47f3SMatthew G. Knepley       if (!PetscCheckPointer(vf->lg, PETSC_OBJECT)) continue;
8005e7c47f3SMatthew G. Knepley       if (((PetscObject) vf->lg)->classid != PETSC_DRAWLG_CLASSID) continue;
8019566063dSJacob Faibussowitsch       PetscCall(PetscDrawLGGetDraw(vf->lg, &draw));
8029566063dSJacob Faibussowitsch       PetscCall(PetscDrawGetPause(draw, &lpause));
8039566063dSJacob Faibussowitsch       PetscCall(PetscDrawSetPause(draw, -1.0));
8049566063dSJacob Faibussowitsch       PetscCall(PetscDrawPause(draw));
8059566063dSJacob Faibussowitsch       PetscCall(PetscDrawSetPause(draw, lpause));
8065e7c47f3SMatthew G. Knepley     } else {
8075e7c47f3SMatthew G. Knepley       PetscBool isdraw;
8085e7c47f3SMatthew G. Knepley 
8095e7c47f3SMatthew G. Knepley       if (!PetscCheckPointer(vf->viewer, PETSC_OBJECT)) continue;
8105e7c47f3SMatthew G. Knepley       if (((PetscObject) vf->viewer)->classid != PETSC_VIEWER_CLASSID) continue;
8119566063dSJacob Faibussowitsch       PetscCall(PetscObjectTypeCompare((PetscObject) vf->viewer, PETSCVIEWERDRAW, &isdraw));
8125e7c47f3SMatthew G. Knepley       if (!isdraw) continue;
8139566063dSJacob Faibussowitsch       PetscCall(PetscViewerDrawGetDraw(vf->viewer, 0, &draw));
8149566063dSJacob Faibussowitsch       PetscCall(PetscDrawGetPause(draw, &lpause));
8159566063dSJacob Faibussowitsch       PetscCall(PetscDrawSetPause(draw, -1.0));
8169566063dSJacob Faibussowitsch       PetscCall(PetscDrawPause(draw));
8179566063dSJacob Faibussowitsch       PetscCall(PetscDrawSetPause(draw, lpause));
8185e7c47f3SMatthew G. Knepley     }
8195e7c47f3SMatthew G. Knepley   }
8205e7c47f3SMatthew G. Knepley   PetscFunctionReturn(0);
8215e7c47f3SMatthew G. Knepley }
8225e7c47f3SMatthew G. Knepley 
823fde5950dSBarry Smith /*@C
824fde5950dSBarry Smith    SNESMonitorSetFromOptions - Sets a monitor function and viewer appropriate for the type indicated by the user
825fde5950dSBarry Smith 
826fde5950dSBarry Smith    Collective on SNES
827fde5950dSBarry Smith 
828fde5950dSBarry Smith    Input Parameters:
829fde5950dSBarry Smith +  snes - SNES object you wish to monitor
830fde5950dSBarry Smith .  name - the monitor type one is seeking
831fde5950dSBarry Smith .  help - message indicating what monitoring is done
832fde5950dSBarry Smith .  manual - manual page for the monitor
833fde5950dSBarry Smith .  monitor - the monitor function
834fde5950dSBarry 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
835fde5950dSBarry Smith 
836fde5950dSBarry Smith    Level: developer
837fde5950dSBarry Smith 
838db781477SPatrick Sanan .seealso: `PetscOptionsGetViewer()`, `PetscOptionsGetReal()`, `PetscOptionsHasName()`, `PetscOptionsGetString()`,
839db781477SPatrick Sanan           `PetscOptionsGetIntArray()`, `PetscOptionsGetRealArray()`, `PetscOptionsBool()`
840db781477SPatrick Sanan           `PetscOptionsInt()`, `PetscOptionsString()`, `PetscOptionsReal()`, `PetscOptionsBool()`,
841db781477SPatrick Sanan           `PetscOptionsName()`, `PetscOptionsBegin()`, `PetscOptionsEnd()`, `PetscOptionsHeadBegin()`,
842db781477SPatrick Sanan           `PetscOptionsStringArray(),PetscOptionsRealArray()`, `PetscOptionsScalar()`,
843db781477SPatrick Sanan           `PetscOptionsBoolGroupBegin()`, `PetscOptionsBoolGroup()`, `PetscOptionsBoolGroupEnd()`,
844db781477SPatrick Sanan           `PetscOptionsFList()`, `PetscOptionsEList()`
845fde5950dSBarry Smith @*/
846d43b4f6eSBarry Smith PetscErrorCode  SNESMonitorSetFromOptions(SNES snes,const char name[],const char help[], const char manual[],PetscErrorCode (*monitor)(SNES,PetscInt,PetscReal,PetscViewerAndFormat*),PetscErrorCode (*monitorsetup)(SNES,PetscViewerAndFormat*))
847fde5950dSBarry Smith {
848fde5950dSBarry Smith   PetscViewer       viewer;
849fde5950dSBarry Smith   PetscViewerFormat format;
850fde5950dSBarry Smith   PetscBool         flg;
851fde5950dSBarry Smith 
852fde5950dSBarry Smith   PetscFunctionBegin;
8539566063dSJacob Faibussowitsch   PetscCall(PetscOptionsGetViewer(PetscObjectComm((PetscObject)snes),((PetscObject) snes)->options,((PetscObject)snes)->prefix,name,&viewer,&format,&flg));
854fde5950dSBarry Smith   if (flg) {
855d43b4f6eSBarry Smith     PetscViewerAndFormat *vf;
8569566063dSJacob Faibussowitsch     PetscCall(PetscViewerAndFormatCreate(viewer,format,&vf));
8579566063dSJacob Faibussowitsch     PetscCall(PetscObjectDereference((PetscObject)viewer));
858fde5950dSBarry Smith     if (monitorsetup) {
8599566063dSJacob Faibussowitsch       PetscCall((*monitorsetup)(snes,vf));
860fde5950dSBarry Smith     }
8619566063dSJacob Faibussowitsch     PetscCall(SNESMonitorSet(snes,(PetscErrorCode (*)(SNES,PetscInt,PetscReal,void*))monitor,vf,(PetscErrorCode (*)(void**))PetscViewerAndFormatDestroy));
862fde5950dSBarry Smith   }
863fde5950dSBarry Smith   PetscFunctionReturn(0);
864fde5950dSBarry Smith }
865fde5950dSBarry Smith 
8669b94acceSBarry Smith /*@
86794b7f48cSBarry Smith    SNESSetFromOptions - Sets various SNES and KSP parameters from user options.
8689b94acceSBarry Smith 
869c7afd0dbSLois Curfman McInnes    Collective on SNES
870c7afd0dbSLois Curfman McInnes 
8719b94acceSBarry Smith    Input Parameter:
8729b94acceSBarry Smith .  snes - the SNES context
8739b94acceSBarry Smith 
87436851e7fSLois Curfman McInnes    Options Database Keys:
875722329fbSBarry Smith +  -snes_type <type> - newtonls, newtontr, ngmres, ncg, nrichardson, qn, vi, fas, SNESType for complete list
87682738288SBarry Smith .  -snes_stol - convergence tolerance in terms of the norm
87782738288SBarry Smith                 of the change in the solution between steps
87870441072SBarry Smith .  -snes_atol <abstol> - absolute tolerance of residual norm
879b39c3a46SLois Curfman McInnes .  -snes_rtol <rtol> - relative decrease in tolerance norm from initial
880e4d06f11SPatrick Farrell .  -snes_divergence_tolerance <divtol> - if the residual goes above divtol*rnorm0, exit with divergence
881be5caee7SBarry Smith .  -snes_force_iteration <force> - force SNESSolve() to take at least one iteration
882b39c3a46SLois Curfman McInnes .  -snes_max_it <max_it> - maximum number of iterations
883b39c3a46SLois Curfman McInnes .  -snes_max_funcs <max_funcs> - maximum number of function evaluations
8844839bfe8SBarry Smith .  -snes_max_fail <max_fail> - maximum number of line search failures allowed before stopping, default is none
885ddf469c8SBarry Smith .  -snes_max_linear_solve_fail - number of linear solver failures before SNESSolve() stops
886a8054027SBarry Smith .  -snes_lag_preconditioner <lag> - how often preconditioner is rebuilt (use -1 to never rebuild)
8873d5a8a6aSBarry Smith .  -snes_lag_preconditioner_persists <true,false> - retains the -snes_lag_preconditioner information across multiple SNESSolve()
888e35cf81dSBarry Smith .  -snes_lag_jacobian <lag> - how often Jacobian is rebuilt (use -1 to never rebuild)
8893d5a8a6aSBarry Smith .  -snes_lag_jacobian_persists <true,false> - retains the -snes_lag_jacobian information across multiple SNESSolve()
890b39c3a46SLois Curfman McInnes .  -snes_trtol <trtol> - trust region tolerance
891f362779dSJed Brown .  -snes_convergence_test - <default,skip,correct_pressure> convergence test in nonlinear solver.
892f362779dSJed Brown                                default SNESConvergedDefault(). skip SNESConvergedSkip() means continue iterating until max_it or some other criterion is reached, saving expense
893f362779dSJed Brown                                of convergence test. correct_pressure SNESConvergedCorrectPressure() has special handling of a pressure null space.
894fde5950dSBarry Smith .  -snes_monitor [ascii][:filename][:viewer format] - prints residual norm at each iteration. if no filename given prints to stdout
895fde5950dSBarry Smith .  -snes_monitor_solution [ascii binary draw][:filename][:viewer format] - plots solution at each iteration
896fde5950dSBarry Smith .  -snes_monitor_residual [ascii binary draw][:filename][:viewer format] - plots residual (not its norm) at each iteration
897fde5950dSBarry Smith .  -snes_monitor_solution_update [ascii binary draw][:filename][:viewer format] - plots update to solution at each iteration
8984619e776SBarry Smith .  -snes_monitor_lg_residualnorm - plots residual norm at each iteration
899459f5d12SBarry Smith .  -snes_monitor_lg_range - plots residual norm at each iteration
9005e7c47f3SMatthew G. Knepley .  -snes_monitor_pause_final - Pauses all monitor drawing after the solver ends
901e24b481bSBarry Smith .  -snes_fd - use finite differences to compute Jacobian; very slow, only for testing
902e2e60de9SPeter Brune .  -snes_fd_color - use finite differences with coloring to compute Jacobian
9035968eb51SBarry Smith .  -snes_mf_ksp_monitor - if using matrix-free multiply then print h at each KSP iteration
904b5badacbSBarry Smith .  -snes_converged_reason - print the reason for convergence/divergence after each solve
905e62ac41dSBarry Smith .  -npc_snes_type <type> - the SNES type to use as a nonlinear preconditioner
906e62ac41dSBarry Smith .   -snes_test_jacobian <optional threshold> - compare the user provided Jacobian with one computed via finite differences to check for errors.  If a threshold is given, display only those entries whose difference is greater than the threshold.
907e62ac41dSBarry Smith -   -snes_test_jacobian_view - 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.
90882738288SBarry Smith 
90982738288SBarry Smith     Options Database for Eisenstat-Walker method:
910fa9f3622SBarry Smith +  -snes_ksp_ew - use Eisenstat-Walker method for determining linear system convergence
9114b27c08aSLois Curfman McInnes .  -snes_ksp_ew_version ver - version of  Eisenstat-Walker method
91236851e7fSLois Curfman McInnes .  -snes_ksp_ew_rtol0 <rtol0> - Sets rtol0
91336851e7fSLois Curfman McInnes .  -snes_ksp_ew_rtolmax <rtolmax> - Sets rtolmax
91436851e7fSLois Curfman McInnes .  -snes_ksp_ew_gamma <gamma> - Sets gamma
91536851e7fSLois Curfman McInnes .  -snes_ksp_ew_alpha <alpha> - Sets alpha
91636851e7fSLois Curfman McInnes .  -snes_ksp_ew_alpha2 <alpha2> - Sets alpha2
91736851e7fSLois Curfman McInnes -  -snes_ksp_ew_threshold <threshold> - Sets threshold
91882738288SBarry Smith 
91911ca99fdSLois Curfman McInnes    Notes:
920ec5066bdSBarry Smith    To see all options, run your program with the -help option or consult the users manual
921ec5066bdSBarry Smith 
922ec5066bdSBarry Smith    Notes:
923a5b23f4aSJose E. Roman       SNES supports three approaches for computing (approximate) Jacobians: user provided via SNESSetJacobian(), matrix free, and computing explicitly with
924ec5066bdSBarry Smith       finite differences and coloring using MatFDColoring. It is also possible to use automatic differentiation and the MatFDColoring object.
92583e2fdc7SBarry Smith 
92636851e7fSLois Curfman McInnes    Level: beginner
92736851e7fSLois Curfman McInnes 
928db781477SPatrick Sanan .seealso: `SNESSetOptionsPrefix()`, `SNESResetFromOptions()`, `SNES`, `SNESCreate()`
9299b94acceSBarry Smith @*/
9307087cfbeSBarry Smith PetscErrorCode  SNESSetFromOptions(SNES snes)
9319b94acceSBarry Smith {
9328afaa268SBarry Smith   PetscBool      flg,pcset,persist,set;
933d8f46077SPeter Brune   PetscInt       i,indx,lag,grids;
93404d7464bSBarry Smith   const char     *deft        = SNESNEWTONLS;
935649ef022SMatthew Knepley   const char     *convtests[] = {"default","skip","correct_pressure"};
93685385478SLisandro Dalcin   SNESKSPEW      *kctx        = NULL;
937e8105e01SRichard Katz   char           type[256], monfilename[PETSC_MAX_PATH_LEN];
938c40d0f55SPeter Brune   PCSide         pcside;
939a64e098fSPeter Brune   const char     *optionsprefix;
9409b94acceSBarry Smith 
9413a40ed3dSBarry Smith   PetscFunctionBegin;
9420700a824SBarry Smith   PetscValidHeaderSpecific(snes,SNES_CLASSID,1);
9439566063dSJacob Faibussowitsch   PetscCall(SNESRegisterAll());
944d0609cedSBarry Smith   PetscObjectOptionsBegin((PetscObject)snes);
945639ff905SBarry Smith   if (((PetscObject)snes)->type_name) deft = ((PetscObject)snes)->type_name;
9469566063dSJacob Faibussowitsch   PetscCall(PetscOptionsFList("-snes_type","Nonlinear solver method","SNESSetType",SNESList,deft,type,256,&flg));
947d64ed03dSBarry Smith   if (flg) {
9489566063dSJacob Faibussowitsch     PetscCall(SNESSetType(snes,type));
9497adad957SLisandro Dalcin   } else if (!((PetscObject)snes)->type_name) {
9509566063dSJacob Faibussowitsch     PetscCall(SNESSetType(snes,deft));
951d64ed03dSBarry Smith   }
9529566063dSJacob Faibussowitsch   PetscCall(PetscOptionsReal("-snes_stol","Stop if step length less than","SNESSetTolerances",snes->stol,&snes->stol,NULL));
9539566063dSJacob Faibussowitsch   PetscCall(PetscOptionsReal("-snes_atol","Stop if function norm less than","SNESSetTolerances",snes->abstol,&snes->abstol,NULL));
954186905e3SBarry Smith 
9559566063dSJacob Faibussowitsch   PetscCall(PetscOptionsReal("-snes_rtol","Stop if decrease in function norm less than","SNESSetTolerances",snes->rtol,&snes->rtol,NULL));
9569566063dSJacob Faibussowitsch   PetscCall(PetscOptionsReal("-snes_divergence_tolerance","Stop if residual norm increases by this factor","SNESSetDivergenceTolerance",snes->divtol,&snes->divtol,NULL));
9579566063dSJacob Faibussowitsch   PetscCall(PetscOptionsInt("-snes_max_it","Maximum iterations","SNESSetTolerances",snes->max_its,&snes->max_its,NULL));
9589566063dSJacob Faibussowitsch   PetscCall(PetscOptionsInt("-snes_max_funcs","Maximum function evaluations","SNESSetTolerances",snes->max_funcs,&snes->max_funcs,NULL));
9599566063dSJacob Faibussowitsch   PetscCall(PetscOptionsInt("-snes_max_fail","Maximum nonlinear step failures","SNESSetMaxNonlinearStepFailures",snes->maxFailures,&snes->maxFailures,NULL));
9609566063dSJacob Faibussowitsch   PetscCall(PetscOptionsInt("-snes_max_linear_solve_fail","Maximum failures in linear solves allowed","SNESSetMaxLinearSolveFailures",snes->maxLinearSolveFailures,&snes->maxLinearSolveFailures,NULL));
9619566063dSJacob Faibussowitsch   PetscCall(PetscOptionsBool("-snes_error_if_not_converged","Generate error if solver does not converge","SNESSetErrorIfNotConverged",snes->errorifnotconverged,&snes->errorifnotconverged,NULL));
9629566063dSJacob Faibussowitsch   PetscCall(PetscOptionsBool("-snes_force_iteration","Force SNESSolve() to take at least one iteration","SNESSetForceIteration",snes->forceiteration,&snes->forceiteration,NULL));
9639566063dSJacob Faibussowitsch   PetscCall(PetscOptionsBool("-snes_check_jacobian_domain_error","Check Jacobian domain error after Jacobian evaluation","SNESCheckJacobianDomainError",snes->checkjacdomainerror,&snes->checkjacdomainerror,NULL));
96485385478SLisandro Dalcin 
9659566063dSJacob Faibussowitsch   PetscCall(PetscOptionsInt("-snes_lag_preconditioner","How often to rebuild preconditioner","SNESSetLagPreconditioner",snes->lagpreconditioner,&lag,&flg));
966a8054027SBarry Smith   if (flg) {
9675f80ce2aSJacob Faibussowitsch     PetscCheck(lag != -1,PetscObjectComm((PetscObject)snes),PETSC_ERR_USER,"Cannot set the lag to -1 from the command line since the preconditioner must be built as least once, perhaps you mean -2");
9689566063dSJacob Faibussowitsch     PetscCall(SNESSetLagPreconditioner(snes,lag));
969a8054027SBarry Smith   }
9709566063dSJacob Faibussowitsch   PetscCall(PetscOptionsBool("-snes_lag_preconditioner_persists","Preconditioner lagging through multiple SNES solves","SNESSetLagPreconditionerPersists",snes->lagjac_persist,&persist,&flg));
97137ec4e1aSPeter Brune   if (flg) {
9729566063dSJacob Faibussowitsch     PetscCall(SNESSetLagPreconditionerPersists(snes,persist));
97337ec4e1aSPeter Brune   }
9749566063dSJacob Faibussowitsch   PetscCall(PetscOptionsInt("-snes_lag_jacobian","How often to rebuild Jacobian","SNESSetLagJacobian",snes->lagjacobian,&lag,&flg));
975e35cf81dSBarry Smith   if (flg) {
9765f80ce2aSJacob Faibussowitsch     PetscCheck(lag != -1,PetscObjectComm((PetscObject)snes),PETSC_ERR_USER,"Cannot set the lag to -1 from the command line since the Jacobian must be built as least once, perhaps you mean -2");
9779566063dSJacob Faibussowitsch     PetscCall(SNESSetLagJacobian(snes,lag));
978e35cf81dSBarry Smith   }
9799566063dSJacob Faibussowitsch   PetscCall(PetscOptionsBool("-snes_lag_jacobian_persists","Jacobian lagging through multiple SNES solves","SNESSetLagJacobianPersists",snes->lagjac_persist,&persist,&flg));
98037ec4e1aSPeter Brune   if (flg) {
9819566063dSJacob Faibussowitsch     PetscCall(SNESSetLagJacobianPersists(snes,persist));
98237ec4e1aSPeter Brune   }
98337ec4e1aSPeter Brune 
9849566063dSJacob Faibussowitsch   PetscCall(PetscOptionsInt("-snes_grid_sequence","Use grid sequencing to generate initial guess","SNESSetGridSequence",snes->gridsequence,&grids,&flg));
985efd51863SBarry Smith   if (flg) {
9869566063dSJacob Faibussowitsch     PetscCall(SNESSetGridSequence(snes,grids));
987efd51863SBarry Smith   }
988a8054027SBarry Smith 
9899566063dSJacob Faibussowitsch   PetscCall(PetscOptionsEList("-snes_convergence_test","Convergence test","SNESSetConvergenceTest",convtests,sizeof(convtests)/sizeof(char*),"default",&indx,&flg));
99085385478SLisandro Dalcin   if (flg) {
99185385478SLisandro Dalcin     switch (indx) {
9929566063dSJacob Faibussowitsch     case 0: PetscCall(SNESSetConvergenceTest(snes,SNESConvergedDefault,NULL,NULL)); break;
9939566063dSJacob Faibussowitsch     case 1: PetscCall(SNESSetConvergenceTest(snes,SNESConvergedSkip,NULL,NULL)); break;
9949566063dSJacob Faibussowitsch     case 2: PetscCall(SNESSetConvergenceTest(snes,SNESConvergedCorrectPressure,NULL,NULL)); break;
99585385478SLisandro Dalcin     }
99685385478SLisandro Dalcin   }
99785385478SLisandro Dalcin 
9989566063dSJacob Faibussowitsch   PetscCall(PetscOptionsEList("-snes_norm_schedule","SNES Norm schedule","SNESSetNormSchedule",SNESNormSchedules,5,"function",&indx,&flg));
9999566063dSJacob Faibussowitsch   if (flg) PetscCall(SNESSetNormSchedule(snes,(SNESNormSchedule)indx));
1000fdacfa88SPeter Brune 
10019566063dSJacob Faibussowitsch   PetscCall(PetscOptionsEList("-snes_function_type","SNES Norm schedule","SNESSetFunctionType",SNESFunctionTypes,2,"unpreconditioned",&indx,&flg));
10029566063dSJacob Faibussowitsch   if (flg) PetscCall(SNESSetFunctionType(snes,(SNESFunctionType)indx));
1003186905e3SBarry Smith 
100485385478SLisandro Dalcin   kctx = (SNESKSPEW*)snes->kspconvctx;
100585385478SLisandro Dalcin 
10069566063dSJacob Faibussowitsch   PetscCall(PetscOptionsBool("-snes_ksp_ew","Use Eisentat-Walker linear system convergence test","SNESKSPSetUseEW",snes->ksp_ewconv,&snes->ksp_ewconv,NULL));
1007186905e3SBarry Smith 
10089566063dSJacob Faibussowitsch   PetscCall(PetscOptionsInt("-snes_ksp_ew_version","Version 1, 2 or 3","SNESKSPSetParametersEW",kctx->version,&kctx->version,NULL));
10099566063dSJacob Faibussowitsch   PetscCall(PetscOptionsReal("-snes_ksp_ew_rtol0","0 <= rtol0 < 1","SNESKSPSetParametersEW",kctx->rtol_0,&kctx->rtol_0,NULL));
10109566063dSJacob Faibussowitsch   PetscCall(PetscOptionsReal("-snes_ksp_ew_rtolmax","0 <= rtolmax < 1","SNESKSPSetParametersEW",kctx->rtol_max,&kctx->rtol_max,NULL));
10119566063dSJacob Faibussowitsch   PetscCall(PetscOptionsReal("-snes_ksp_ew_gamma","0 <= gamma <= 1","SNESKSPSetParametersEW",kctx->gamma,&kctx->gamma,NULL));
10129566063dSJacob Faibussowitsch   PetscCall(PetscOptionsReal("-snes_ksp_ew_alpha","1 < alpha <= 2","SNESKSPSetParametersEW",kctx->alpha,&kctx->alpha,NULL));
10139566063dSJacob Faibussowitsch   PetscCall(PetscOptionsReal("-snes_ksp_ew_alpha2","alpha2","SNESKSPSetParametersEW",kctx->alpha2,&kctx->alpha2,NULL));
10149566063dSJacob Faibussowitsch   PetscCall(PetscOptionsReal("-snes_ksp_ew_threshold","0 < threshold < 1","SNESKSPSetParametersEW",kctx->threshold,&kctx->threshold,NULL));
1015186905e3SBarry Smith 
101690d69ab7SBarry Smith   flg  = PETSC_FALSE;
10179566063dSJacob Faibussowitsch   PetscCall(PetscOptionsBool("-snes_monitor_cancel","Remove all monitors","SNESMonitorCancel",flg,&flg,&set));
10189566063dSJacob Faibussowitsch   if (set && flg) PetscCall(SNESMonitorCancel(snes));
1019eabae89aSBarry Smith 
10209566063dSJacob Faibussowitsch   PetscCall(SNESMonitorSetFromOptions(snes,"-snes_monitor","Monitor norm of function","SNESMonitorDefault",SNESMonitorDefault,SNESMonitorDefaultSetUp));
10219566063dSJacob Faibussowitsch   PetscCall(SNESMonitorSetFromOptions(snes,"-snes_monitor_short","Monitor norm of function with fewer digits","SNESMonitorDefaultShort",SNESMonitorDefaultShort,NULL));
10229566063dSJacob Faibussowitsch   PetscCall(SNESMonitorSetFromOptions(snes,"-snes_monitor_range","Monitor range of elements of function","SNESMonitorRange",SNESMonitorRange,NULL));
1023eabae89aSBarry Smith 
10249566063dSJacob Faibussowitsch   PetscCall(SNESMonitorSetFromOptions(snes,"-snes_monitor_ratio","Monitor ratios of the norm of function for consecutive steps","SNESMonitorRatio",SNESMonitorRatio,SNESMonitorRatioSetUp));
10259566063dSJacob Faibussowitsch   PetscCall(SNESMonitorSetFromOptions(snes,"-snes_monitor_field","Monitor norm of function (split into fields)","SNESMonitorDefaultField",SNESMonitorDefaultField,NULL));
10269566063dSJacob Faibussowitsch   PetscCall(SNESMonitorSetFromOptions(snes,"-snes_monitor_solution","View solution at each iteration","SNESMonitorSolution",SNESMonitorSolution,NULL));
10279566063dSJacob Faibussowitsch   PetscCall(SNESMonitorSetFromOptions(snes,"-snes_monitor_solution_update","View correction at each iteration","SNESMonitorSolutionUpdate",SNESMonitorSolutionUpdate,NULL));
10289566063dSJacob Faibussowitsch   PetscCall(SNESMonitorSetFromOptions(snes,"-snes_monitor_residual","View residual at each iteration","SNESMonitorResidual",SNESMonitorResidual,NULL));
10299566063dSJacob Faibussowitsch   PetscCall(SNESMonitorSetFromOptions(snes,"-snes_monitor_jacupdate_spectrum","Print the change in the spectrum of the Jacobian","SNESMonitorJacUpdateSpectrum",SNESMonitorJacUpdateSpectrum,NULL));
10309566063dSJacob Faibussowitsch   PetscCall(SNESMonitorSetFromOptions(snes,"-snes_monitor_fields","Monitor norm of function per field","SNESMonitorSet",SNESMonitorFields,NULL));
10319566063dSJacob Faibussowitsch   PetscCall(PetscOptionsBool("-snes_monitor_pause_final", "Pauses all draw monitors at the final iterate", "SNESMonitorPauseFinal_Internal", PETSC_FALSE, &snes->pauseFinal, NULL));
10322db13446SMatthew G. Knepley 
10339566063dSJacob Faibussowitsch   PetscCall(PetscOptionsString("-snes_monitor_python","Use Python function","SNESMonitorSet",NULL,monfilename,sizeof(monfilename),&flg));
10349566063dSJacob Faibussowitsch   if (flg) PetscCall(PetscPythonMonitorSet((PetscObject)snes,monfilename));
10355180491cSLisandro Dalcin 
103690d69ab7SBarry Smith   flg  = PETSC_FALSE;
10379566063dSJacob Faibussowitsch   PetscCall(PetscOptionsBool("-snes_monitor_lg_range","Plot function range at each iteration","SNESMonitorLGRange",flg,&flg,NULL));
1038459f5d12SBarry Smith   if (flg) {
1039459f5d12SBarry Smith     PetscViewer ctx;
1040e24b481bSBarry Smith 
10419566063dSJacob Faibussowitsch     PetscCall(PetscViewerDrawOpen(PetscObjectComm((PetscObject)snes),NULL,NULL,PETSC_DECIDE,PETSC_DECIDE,400,300,&ctx));
10429566063dSJacob Faibussowitsch     PetscCall(SNESMonitorSet(snes,SNESMonitorLGRange,ctx,(PetscErrorCode (*)(void**))PetscViewerDestroy));
1043459f5d12SBarry Smith   }
10442e7541e6SPeter Brune 
104590d69ab7SBarry Smith   flg  = PETSC_FALSE;
10469566063dSJacob Faibussowitsch   PetscCall(PetscOptionsBool("-snes_converged_reason_view_cancel","Remove all converged reason viewers","SNESConvergedReasonViewCancel",flg,&flg,&set));
10479566063dSJacob Faibussowitsch   if (set && flg) PetscCall(SNESConvergedReasonViewCancel(snes));
1048c4421ceaSFande Kong 
1049c4421ceaSFande Kong   flg  = PETSC_FALSE;
10509566063dSJacob Faibussowitsch   PetscCall(PetscOptionsBool("-snes_fd","Use finite differences (slow) to compute Jacobian","SNESComputeJacobianDefault",flg,&flg,NULL));
10514b27c08aSLois Curfman McInnes   if (flg) {
10526cab3a1bSJed Brown     void    *functx;
1053b1f624c7SBarry Smith     DM      dm;
1054b1f624c7SBarry Smith     DMSNES  sdm;
10559566063dSJacob Faibussowitsch     PetscCall(SNESGetDM(snes,&dm));
10569566063dSJacob Faibussowitsch     PetscCall(DMGetDMSNES(dm,&sdm));
1057b1f624c7SBarry Smith     sdm->jacobianctx = NULL;
10589566063dSJacob Faibussowitsch     PetscCall(SNESGetFunction(snes,NULL,NULL,&functx));
10599566063dSJacob Faibussowitsch     PetscCall(SNESSetJacobian(snes,snes->jacobian,snes->jacobian_pre,SNESComputeJacobianDefault,functx));
10609566063dSJacob Faibussowitsch     PetscCall(PetscInfo(snes,"Setting default finite difference Jacobian matrix\n"));
10619b94acceSBarry Smith   }
1062639f9d9dSBarry Smith 
106344848bc4SPeter Brune   flg  = PETSC_FALSE;
10649566063dSJacob Faibussowitsch   PetscCall(PetscOptionsBool("-snes_fd_function","Use finite differences (slow) to compute function from user objective","SNESObjectiveComputeFunctionDefaultFD",flg,&flg,NULL));
106597584545SPeter Brune   if (flg) {
10669566063dSJacob Faibussowitsch     PetscCall(SNESSetFunction(snes,NULL,SNESObjectiveComputeFunctionDefaultFD,NULL));
106797584545SPeter Brune   }
106897584545SPeter Brune 
106997584545SPeter Brune   flg  = PETSC_FALSE;
10709566063dSJacob Faibussowitsch   PetscCall(PetscOptionsBool("-snes_fd_color","Use finite differences with coloring to compute Jacobian","SNESComputeJacobianDefaultColor",flg,&flg,NULL));
107144848bc4SPeter Brune   if (flg) {
1072c52e227fSPeter Brune     DM             dm;
1073c52e227fSPeter Brune     DMSNES         sdm;
10749566063dSJacob Faibussowitsch     PetscCall(SNESGetDM(snes,&dm));
10759566063dSJacob Faibussowitsch     PetscCall(DMGetDMSNES(dm,&sdm));
1076aace71b7SPeter Brune     sdm->jacobianctx = NULL;
10779566063dSJacob Faibussowitsch     PetscCall(SNESSetJacobian(snes,snes->jacobian,snes->jacobian_pre,SNESComputeJacobianDefaultColor,NULL));
10789566063dSJacob Faibussowitsch     PetscCall(PetscInfo(snes,"Setting default finite difference coloring Jacobian matrix\n"));
107944848bc4SPeter Brune   }
108044848bc4SPeter Brune 
1081aa3661deSLisandro Dalcin   flg  = PETSC_FALSE;
10829566063dSJacob Faibussowitsch   PetscCall(PetscOptionsBool("-snes_mf_operator","Use a Matrix-Free Jacobian with user-provided preconditioner matrix","SNESSetUseMatrixFree",PETSC_FALSE,&snes->mf_operator,&flg));
1083d8f46077SPeter Brune   if (flg && snes->mf_operator) {
1084a8248277SBarry Smith     snes->mf_operator = PETSC_TRUE;
1085d8f46077SPeter Brune     snes->mf          = PETSC_TRUE;
1086a8248277SBarry Smith   }
1087aa3661deSLisandro Dalcin   flg  = PETSC_FALSE;
10889566063dSJacob Faibussowitsch   PetscCall(PetscOptionsBool("-snes_mf","Use a Matrix-Free Jacobian with no preconditioner matrix","SNESSetUseMatrixFree",PETSC_FALSE,&snes->mf,&flg));
1089d8f46077SPeter Brune   if (!flg && snes->mf_operator) snes->mf = PETSC_TRUE;
10909566063dSJacob Faibussowitsch   PetscCall(PetscOptionsInt("-snes_mf_version","Matrix-Free routines version 1 or 2","None",snes->mf_version,&snes->mf_version,NULL));
1091d28543b3SPeter Brune 
1092c40d0f55SPeter Brune   flg  = PETSC_FALSE;
10939566063dSJacob Faibussowitsch   PetscCall(SNESGetNPCSide(snes,&pcside));
10949566063dSJacob Faibussowitsch   PetscCall(PetscOptionsEnum("-snes_npc_side","SNES nonlinear preconditioner side","SNESSetNPCSide",PCSides,(PetscEnum)pcside,(PetscEnum*)&pcside,&flg));
10959566063dSJacob Faibussowitsch   if (flg) PetscCall(SNESSetNPCSide(snes,pcside));
1096c40d0f55SPeter Brune 
1097e04113cfSBarry Smith #if defined(PETSC_HAVE_SAWS)
10988a70d858SHong Zhang   /*
10998a70d858SHong Zhang     Publish convergence information using SAWs
11008a70d858SHong Zhang   */
11018a70d858SHong Zhang   flg  = PETSC_FALSE;
11029566063dSJacob Faibussowitsch   PetscCall(PetscOptionsBool("-snes_monitor_saws","Publish SNES progress using SAWs","SNESMonitorSet",flg,&flg,NULL));
11038a70d858SHong Zhang   if (flg) {
11048a70d858SHong Zhang     void *ctx;
11059566063dSJacob Faibussowitsch     PetscCall(SNESMonitorSAWsCreate(snes,&ctx));
11069566063dSJacob Faibussowitsch     PetscCall(SNESMonitorSet(snes,SNESMonitorSAWs,ctx,SNESMonitorSAWsDestroy));
11078a70d858SHong Zhang   }
11088a70d858SHong Zhang #endif
11098a70d858SHong Zhang #if defined(PETSC_HAVE_SAWS)
1110b90c6cbeSBarry Smith   {
1111b90c6cbeSBarry Smith   PetscBool set;
1112b90c6cbeSBarry Smith   flg  = PETSC_FALSE;
11139566063dSJacob Faibussowitsch   PetscCall(PetscOptionsBool("-snes_saws_block","Block for SAWs at end of SNESSolve","PetscObjectSAWsBlock",((PetscObject)snes)->amspublishblock,&flg,&set));
1114b90c6cbeSBarry Smith   if (set) {
11159566063dSJacob Faibussowitsch     PetscCall(PetscObjectSAWsSetBlock((PetscObject)snes,flg));
1116b90c6cbeSBarry Smith   }
1117b90c6cbeSBarry Smith   }
1118b90c6cbeSBarry Smith #endif
1119b90c6cbeSBarry Smith 
112076b2cf59SMatthew Knepley   for (i = 0; i < numberofsetfromoptions; i++) {
11219566063dSJacob Faibussowitsch     PetscCall((*othersetfromoptions[i])(snes));
112276b2cf59SMatthew Knepley   }
112376b2cf59SMatthew Knepley 
1124e7788613SBarry Smith   if (snes->ops->setfromoptions) {
11259566063dSJacob Faibussowitsch     PetscCall((*snes->ops->setfromoptions)(PetscOptionsObject,snes));
1126639f9d9dSBarry Smith   }
11275d973c19SBarry Smith 
11285d973c19SBarry Smith   /* process any options handlers added with PetscObjectAddOptionsHandler() */
11299566063dSJacob Faibussowitsch   PetscCall(PetscObjectProcessOptionsHandlers(PetscOptionsObject,(PetscObject)snes));
1130d0609cedSBarry Smith   PetscOptionsEnd();
11314bbc92c1SBarry Smith 
1132d8d34be6SBarry Smith   if (snes->linesearch) {
11339566063dSJacob Faibussowitsch     PetscCall(SNESGetLineSearch(snes, &snes->linesearch));
11349566063dSJacob Faibussowitsch     PetscCall(SNESLineSearchSetFromOptions(snes->linesearch));
1135d8d34be6SBarry Smith   }
11369e764e56SPeter Brune 
11376aa5e7e9SBarry Smith   if (snes->usesksp) {
11389566063dSJacob Faibussowitsch     if (!snes->ksp) PetscCall(SNESGetKSP(snes,&snes->ksp));
11399566063dSJacob Faibussowitsch     PetscCall(KSPSetOperators(snes->ksp,snes->jacobian,snes->jacobian_pre));
11409566063dSJacob Faibussowitsch     PetscCall(KSPSetFromOptions(snes->ksp));
11416aa5e7e9SBarry Smith   }
11426991f827SBarry Smith 
1143b5badacbSBarry Smith   /* if user has set the SNES NPC type via options database, create it. */
11449566063dSJacob Faibussowitsch   PetscCall(SNESGetOptionsPrefix(snes, &optionsprefix));
11459566063dSJacob Faibussowitsch   PetscCall(PetscOptionsHasName(((PetscObject)snes)->options,optionsprefix, "-npc_snes_type", &pcset));
1146efd4aadfSBarry Smith   if (pcset && (!snes->npc)) {
11479566063dSJacob Faibussowitsch     PetscCall(SNESGetNPC(snes, &snes->npc));
114851e86f29SPeter Brune   }
1149b5badacbSBarry Smith   if (snes->npc) {
11509566063dSJacob Faibussowitsch     PetscCall(SNESSetFromOptions(snes->npc));
1151b5badacbSBarry Smith   }
1152b3cd9a81SMatthew G. Knepley   snes->setfromoptionscalled++;
1153b3cd9a81SMatthew G. Knepley   PetscFunctionReturn(0);
1154b3cd9a81SMatthew G. Knepley }
1155b3cd9a81SMatthew G. Knepley 
1156b3cd9a81SMatthew G. Knepley /*@
1157b3cd9a81SMatthew G. Knepley    SNESResetFromOptions - Sets various SNES and KSP parameters from user options ONLY if the SNES was previously set from options
1158b3cd9a81SMatthew G. Knepley 
1159b3cd9a81SMatthew G. Knepley    Collective on SNES
1160b3cd9a81SMatthew G. Knepley 
1161b3cd9a81SMatthew G. Knepley    Input Parameter:
1162b3cd9a81SMatthew G. Knepley .  snes - the SNES context
1163b3cd9a81SMatthew G. Knepley 
1164b3cd9a81SMatthew G. Knepley    Level: beginner
1165b3cd9a81SMatthew G. Knepley 
1166db781477SPatrick Sanan .seealso: `SNESSetFromOptions()`, `SNESSetOptionsPrefix()`
1167b3cd9a81SMatthew G. Knepley @*/
1168b3cd9a81SMatthew G. Knepley PetscErrorCode SNESResetFromOptions(SNES snes)
1169b3cd9a81SMatthew G. Knepley {
1170b3cd9a81SMatthew G. Knepley   PetscFunctionBegin;
11719566063dSJacob Faibussowitsch   if (snes->setfromoptionscalled) PetscCall(SNESSetFromOptions(snes));
11723a40ed3dSBarry Smith   PetscFunctionReturn(0);
11739b94acceSBarry Smith }
11749b94acceSBarry Smith 
1175bb9467b5SJed Brown /*@C
1176d25893d9SBarry Smith    SNESSetComputeApplicationContext - Sets an optional function to compute a user-defined context for
1177d25893d9SBarry Smith    the nonlinear solvers.
1178d25893d9SBarry Smith 
1179d25893d9SBarry Smith    Logically Collective on SNES
1180d25893d9SBarry Smith 
1181d25893d9SBarry Smith    Input Parameters:
1182d25893d9SBarry Smith +  snes - the SNES context
1183d25893d9SBarry Smith .  compute - function to compute the context
1184d25893d9SBarry Smith -  destroy - function to destroy the context
1185d25893d9SBarry Smith 
1186d25893d9SBarry Smith    Level: intermediate
1187d25893d9SBarry Smith 
1188bb9467b5SJed Brown    Notes:
1189bb9467b5SJed Brown    This function is currently not available from Fortran.
1190bb9467b5SJed Brown 
1191db781477SPatrick Sanan .seealso: `SNESGetApplicationContext()`, `SNESSetComputeApplicationContext()`, `SNESGetApplicationContext()`
1192d25893d9SBarry Smith @*/
1193d25893d9SBarry Smith PetscErrorCode  SNESSetComputeApplicationContext(SNES snes,PetscErrorCode (*compute)(SNES,void**),PetscErrorCode (*destroy)(void**))
1194d25893d9SBarry Smith {
1195d25893d9SBarry Smith   PetscFunctionBegin;
1196d25893d9SBarry Smith   PetscValidHeaderSpecific(snes,SNES_CLASSID,1);
1197d25893d9SBarry Smith   snes->ops->usercompute = compute;
1198d25893d9SBarry Smith   snes->ops->userdestroy = destroy;
1199d25893d9SBarry Smith   PetscFunctionReturn(0);
1200d25893d9SBarry Smith }
1201a847f771SSatish Balay 
1202b07ff414SBarry Smith /*@
12039b94acceSBarry Smith    SNESSetApplicationContext - Sets the optional user-defined context for
12049b94acceSBarry Smith    the nonlinear solvers.
12059b94acceSBarry Smith 
12063f9fe445SBarry Smith    Logically Collective on SNES
1207fee21e36SBarry Smith 
1208c7afd0dbSLois Curfman McInnes    Input Parameters:
1209c7afd0dbSLois Curfman McInnes +  snes - the SNES context
1210c7afd0dbSLois Curfman McInnes -  usrP - optional user context
1211c7afd0dbSLois Curfman McInnes 
121236851e7fSLois Curfman McInnes    Level: intermediate
121336851e7fSLois Curfman McInnes 
121495452b02SPatrick Sanan    Fortran Notes:
121595452b02SPatrick Sanan     To use this from Fortran you must write a Fortran interface definition for this
1216daf670e6SBarry Smith     function that tells Fortran the Fortran derived data type that you are passing in as the ctx argument.
1217daf670e6SBarry Smith 
1218db781477SPatrick Sanan .seealso: `SNESGetApplicationContext()`
12199b94acceSBarry Smith @*/
12207087cfbeSBarry Smith PetscErrorCode  SNESSetApplicationContext(SNES snes,void *usrP)
12219b94acceSBarry Smith {
1222b07ff414SBarry Smith   KSP            ksp;
12231b2093e4SBarry Smith 
12243a40ed3dSBarry Smith   PetscFunctionBegin;
12250700a824SBarry Smith   PetscValidHeaderSpecific(snes,SNES_CLASSID,1);
12269566063dSJacob Faibussowitsch   PetscCall(SNESGetKSP(snes,&ksp));
12279566063dSJacob Faibussowitsch   PetscCall(KSPSetApplicationContext(ksp,usrP));
12289b94acceSBarry Smith   snes->user = usrP;
12293a40ed3dSBarry Smith   PetscFunctionReturn(0);
12309b94acceSBarry Smith }
123174679c65SBarry Smith 
1232b07ff414SBarry Smith /*@
12339b94acceSBarry Smith    SNESGetApplicationContext - Gets the user-defined context for the
12349b94acceSBarry Smith    nonlinear solvers.
12359b94acceSBarry Smith 
1236c7afd0dbSLois Curfman McInnes    Not Collective
1237c7afd0dbSLois Curfman McInnes 
12389b94acceSBarry Smith    Input Parameter:
12399b94acceSBarry Smith .  snes - SNES context
12409b94acceSBarry Smith 
12419b94acceSBarry Smith    Output Parameter:
12429b94acceSBarry Smith .  usrP - user context
12439b94acceSBarry Smith 
124495452b02SPatrick Sanan    Fortran Notes:
124595452b02SPatrick Sanan     To use this from Fortran you must write a Fortran interface definition for this
1246daf670e6SBarry Smith     function that tells Fortran the Fortran derived data type that you are passing in as the ctx argument.
1247daf670e6SBarry Smith 
124836851e7fSLois Curfman McInnes    Level: intermediate
124936851e7fSLois Curfman McInnes 
1250db781477SPatrick Sanan .seealso: `SNESSetApplicationContext()`
12519b94acceSBarry Smith @*/
1252e71120c6SJed Brown PetscErrorCode  SNESGetApplicationContext(SNES snes,void *usrP)
12539b94acceSBarry Smith {
12543a40ed3dSBarry Smith   PetscFunctionBegin;
12550700a824SBarry Smith   PetscValidHeaderSpecific(snes,SNES_CLASSID,1);
1256e71120c6SJed Brown   *(void**)usrP = snes->user;
12573a40ed3dSBarry Smith   PetscFunctionReturn(0);
12589b94acceSBarry Smith }
125974679c65SBarry Smith 
12609b94acceSBarry Smith /*@
1261ec5066bdSBarry Smith    SNESSetUseMatrixFree - indicates that SNES should use matrix free finite difference matrix vector products internally to apply the Jacobian.
12623565c898SBarry Smith 
12633565c898SBarry Smith    Collective on SNES
12643565c898SBarry Smith 
12653565c898SBarry Smith    Input Parameters:
12663565c898SBarry Smith +  snes - SNES context
12674ddffce6SLisandro Dalcin .  mf_operator - use matrix-free only for the Amat used by SNESSetJacobian(), this means the user provided Pmat will continue to be used
12684ddffce6SLisandro Dalcin -  mf - use matrix-free for both the Amat and Pmat used by SNESSetJacobian(), both the Amat and Pmat set in SNESSetJacobian() will be ignored
12693565c898SBarry Smith 
12703565c898SBarry Smith    Options Database:
12713565c898SBarry Smith + -snes_mf - use matrix free for both the mat and pmat operator
1272ec5066bdSBarry Smith . -snes_mf_operator - use matrix free only for the mat operator
1273ec5066bdSBarry Smith . -snes_fd_color - compute the Jacobian via coloring and finite differences.
1274ec5066bdSBarry Smith - -snes_fd - compute the Jacobian via finite differences (slow)
12753565c898SBarry Smith 
12763565c898SBarry Smith    Level: intermediate
12773565c898SBarry Smith 
1278ec5066bdSBarry Smith    Notes:
1279a5b23f4aSJose E. Roman       SNES supports three approaches for computing (approximate) Jacobians: user provided via SNESSetJacobian(), matrix free, and computing explicitly with
1280ec5066bdSBarry Smith       finite differences and coloring using MatFDColoring. It is also possible to use automatic differentiation and the MatFDColoring object.
1281ec5066bdSBarry Smith 
1282db781477SPatrick Sanan .seealso: `SNESGetUseMatrixFree()`, `MatCreateSNESMF()`, `SNESComputeJacobianDefaultColor()`
12833565c898SBarry Smith @*/
12843565c898SBarry Smith PetscErrorCode  SNESSetUseMatrixFree(SNES snes,PetscBool mf_operator,PetscBool mf)
12853565c898SBarry Smith {
12863565c898SBarry Smith   PetscFunctionBegin;
12873565c898SBarry Smith   PetscValidHeaderSpecific(snes,SNES_CLASSID,1);
128888b4c220SStefano Zampini   PetscValidLogicalCollectiveBool(snes,mf_operator,2);
128988b4c220SStefano Zampini   PetscValidLogicalCollectiveBool(snes,mf,3);
12904ddffce6SLisandro Dalcin   snes->mf          = mf_operator ? PETSC_TRUE : mf;
12913565c898SBarry Smith   snes->mf_operator = mf_operator;
12923565c898SBarry Smith   PetscFunctionReturn(0);
12933565c898SBarry Smith }
12943565c898SBarry Smith 
12953565c898SBarry Smith /*@
1296ec5066bdSBarry Smith    SNESGetUseMatrixFree - indicates if the SNES uses matrix free finite difference matrix vector products to apply the Jacobian.
12973565c898SBarry Smith 
12983565c898SBarry Smith    Collective on SNES
12993565c898SBarry Smith 
13003565c898SBarry Smith    Input Parameter:
13013565c898SBarry Smith .  snes - SNES context
13023565c898SBarry Smith 
13033565c898SBarry Smith    Output Parameters:
13044ddffce6SLisandro Dalcin +  mf_operator - use matrix-free only for the Amat used by SNESSetJacobian(), this means the user provided Pmat will continue to be used
13054ddffce6SLisandro Dalcin -  mf - use matrix-free for both the Amat and Pmat used by SNESSetJacobian(), both the Amat and Pmat set in SNESSetJacobian() will be ignored
13063565c898SBarry Smith 
13073565c898SBarry Smith    Options Database:
13083565c898SBarry Smith + -snes_mf - use matrix free for both the mat and pmat operator
13093565c898SBarry Smith - -snes_mf_operator - use matrix free only for the mat operator
13103565c898SBarry Smith 
13113565c898SBarry Smith    Level: intermediate
13123565c898SBarry Smith 
1313db781477SPatrick Sanan .seealso: `SNESSetUseMatrixFree()`, `MatCreateSNESMF()`
13143565c898SBarry Smith @*/
13153565c898SBarry Smith PetscErrorCode  SNESGetUseMatrixFree(SNES snes,PetscBool *mf_operator,PetscBool *mf)
13163565c898SBarry Smith {
13173565c898SBarry Smith   PetscFunctionBegin;
13183565c898SBarry Smith   PetscValidHeaderSpecific(snes,SNES_CLASSID,1);
13193565c898SBarry Smith   if (mf)          *mf          = snes->mf;
13203565c898SBarry Smith   if (mf_operator) *mf_operator = snes->mf_operator;
13213565c898SBarry Smith   PetscFunctionReturn(0);
13223565c898SBarry Smith }
13233565c898SBarry Smith 
13243565c898SBarry Smith /*@
1325c8228a4eSBarry Smith    SNESGetIterationNumber - Gets the number of nonlinear iterations completed
1326c8228a4eSBarry Smith    at this time.
13279b94acceSBarry Smith 
1328c7afd0dbSLois Curfman McInnes    Not Collective
1329c7afd0dbSLois Curfman McInnes 
13309b94acceSBarry Smith    Input Parameter:
13319b94acceSBarry Smith .  snes - SNES context
13329b94acceSBarry Smith 
13339b94acceSBarry Smith    Output Parameter:
13349b94acceSBarry Smith .  iter - iteration number
13359b94acceSBarry Smith 
1336c8228a4eSBarry Smith    Notes:
1337c8228a4eSBarry Smith    For example, during the computation of iteration 2 this would return 1.
1338c8228a4eSBarry Smith 
1339c8228a4eSBarry Smith    This is useful for using lagged Jacobians (where one does not recompute the
134008405cd6SLois Curfman McInnes    Jacobian at each SNES iteration). For example, the code
134108405cd6SLois Curfman McInnes .vb
134208405cd6SLois Curfman McInnes       ierr = SNESGetIterationNumber(snes,&it);
134308405cd6SLois Curfman McInnes       if (!(it % 2)) {
134408405cd6SLois Curfman McInnes         [compute Jacobian here]
134508405cd6SLois Curfman McInnes       }
134608405cd6SLois Curfman McInnes .ve
1347c8228a4eSBarry Smith    can be used in your ComputeJacobian() function to cause the Jacobian to be
134808405cd6SLois Curfman McInnes    recomputed every second SNES iteration.
1349c8228a4eSBarry Smith 
1350c04deec6SBarry Smith    After the SNES solve is complete this will return the number of nonlinear iterations used.
1351c04deec6SBarry Smith 
135236851e7fSLois Curfman McInnes    Level: intermediate
135336851e7fSLois Curfman McInnes 
1354db781477SPatrick Sanan .seealso: `SNESGetLinearSolveIterations()`
13559b94acceSBarry Smith @*/
13567087cfbeSBarry Smith PetscErrorCode  SNESGetIterationNumber(SNES snes,PetscInt *iter)
13579b94acceSBarry Smith {
13583a40ed3dSBarry Smith   PetscFunctionBegin;
13590700a824SBarry Smith   PetscValidHeaderSpecific(snes,SNES_CLASSID,1);
13604482741eSBarry Smith   PetscValidIntPointer(iter,2);
13619b94acceSBarry Smith   *iter = snes->iter;
13623a40ed3dSBarry Smith   PetscFunctionReturn(0);
13639b94acceSBarry Smith }
136474679c65SBarry Smith 
1365360c497dSPeter Brune /*@
1366360c497dSPeter Brune    SNESSetIterationNumber - Sets the current iteration number.
1367360c497dSPeter Brune 
1368360c497dSPeter Brune    Not Collective
1369360c497dSPeter Brune 
1370d8d19677SJose E. Roman    Input Parameters:
1371a2b725a8SWilliam Gropp +  snes - SNES context
1372a2b725a8SWilliam Gropp -  iter - iteration number
1373360c497dSPeter Brune 
1374360c497dSPeter Brune    Level: developer
1375360c497dSPeter Brune 
1376db781477SPatrick Sanan .seealso: `SNESGetLinearSolveIterations()`
1377360c497dSPeter Brune @*/
1378360c497dSPeter Brune PetscErrorCode  SNESSetIterationNumber(SNES snes,PetscInt iter)
1379360c497dSPeter Brune {
1380360c497dSPeter Brune   PetscFunctionBegin;
1381360c497dSPeter Brune   PetscValidHeaderSpecific(snes,SNES_CLASSID,1);
13829566063dSJacob Faibussowitsch   PetscCall(PetscObjectSAWsTakeAccess((PetscObject)snes));
1383360c497dSPeter Brune   snes->iter = iter;
13849566063dSJacob Faibussowitsch   PetscCall(PetscObjectSAWsGrantAccess((PetscObject)snes));
1385360c497dSPeter Brune   PetscFunctionReturn(0);
1386360c497dSPeter Brune }
1387360c497dSPeter Brune 
13889b94acceSBarry Smith /*@
1389b850b91aSLisandro Dalcin    SNESGetNonlinearStepFailures - Gets the number of unsuccessful steps
13909b94acceSBarry Smith    attempted by the nonlinear solver.
13919b94acceSBarry Smith 
1392c7afd0dbSLois Curfman McInnes    Not Collective
1393c7afd0dbSLois Curfman McInnes 
13949b94acceSBarry Smith    Input Parameter:
13959b94acceSBarry Smith .  snes - SNES context
13969b94acceSBarry Smith 
13979b94acceSBarry Smith    Output Parameter:
13989b94acceSBarry Smith .  nfails - number of unsuccessful steps attempted
13999b94acceSBarry Smith 
1400c96a6f78SLois Curfman McInnes    Notes:
1401c96a6f78SLois Curfman McInnes    This counter is reset to zero for each successive call to SNESSolve().
1402c96a6f78SLois Curfman McInnes 
140336851e7fSLois Curfman McInnes    Level: intermediate
140436851e7fSLois Curfman McInnes 
1405db781477SPatrick Sanan .seealso: `SNESGetMaxLinearSolveFailures()`, `SNESGetLinearSolveIterations()`, `SNESSetMaxLinearSolveFailures()`, `SNESGetLinearSolveFailures()`,
1406db781477SPatrick Sanan           `SNESSetMaxNonlinearStepFailures()`, `SNESGetMaxNonlinearStepFailures()`
14079b94acceSBarry Smith @*/
14087087cfbeSBarry Smith PetscErrorCode  SNESGetNonlinearStepFailures(SNES snes,PetscInt *nfails)
14099b94acceSBarry Smith {
14103a40ed3dSBarry Smith   PetscFunctionBegin;
14110700a824SBarry Smith   PetscValidHeaderSpecific(snes,SNES_CLASSID,1);
14124482741eSBarry Smith   PetscValidIntPointer(nfails,2);
141350ffb88aSMatthew Knepley   *nfails = snes->numFailures;
141450ffb88aSMatthew Knepley   PetscFunctionReturn(0);
141550ffb88aSMatthew Knepley }
141650ffb88aSMatthew Knepley 
141750ffb88aSMatthew Knepley /*@
1418b850b91aSLisandro Dalcin    SNESSetMaxNonlinearStepFailures - Sets the maximum number of unsuccessful steps
141950ffb88aSMatthew Knepley    attempted by the nonlinear solver before it gives up.
142050ffb88aSMatthew Knepley 
142150ffb88aSMatthew Knepley    Not Collective
142250ffb88aSMatthew Knepley 
142350ffb88aSMatthew Knepley    Input Parameters:
142450ffb88aSMatthew Knepley +  snes     - SNES context
142550ffb88aSMatthew Knepley -  maxFails - maximum of unsuccessful steps
142650ffb88aSMatthew Knepley 
142750ffb88aSMatthew Knepley    Level: intermediate
142850ffb88aSMatthew Knepley 
1429db781477SPatrick Sanan .seealso: `SNESGetMaxLinearSolveFailures()`, `SNESGetLinearSolveIterations()`, `SNESSetMaxLinearSolveFailures()`, `SNESGetLinearSolveFailures()`,
1430db781477SPatrick Sanan           `SNESGetMaxNonlinearStepFailures()`, `SNESGetNonlinearStepFailures()`
143150ffb88aSMatthew Knepley @*/
14327087cfbeSBarry Smith PetscErrorCode  SNESSetMaxNonlinearStepFailures(SNES snes, PetscInt maxFails)
143350ffb88aSMatthew Knepley {
143450ffb88aSMatthew Knepley   PetscFunctionBegin;
14350700a824SBarry Smith   PetscValidHeaderSpecific(snes,SNES_CLASSID,1);
143650ffb88aSMatthew Knepley   snes->maxFailures = maxFails;
143750ffb88aSMatthew Knepley   PetscFunctionReturn(0);
143850ffb88aSMatthew Knepley }
143950ffb88aSMatthew Knepley 
144050ffb88aSMatthew Knepley /*@
1441b850b91aSLisandro Dalcin    SNESGetMaxNonlinearStepFailures - Gets the maximum number of unsuccessful steps
144250ffb88aSMatthew Knepley    attempted by the nonlinear solver before it gives up.
144350ffb88aSMatthew Knepley 
144450ffb88aSMatthew Knepley    Not Collective
144550ffb88aSMatthew Knepley 
144650ffb88aSMatthew Knepley    Input Parameter:
144750ffb88aSMatthew Knepley .  snes     - SNES context
144850ffb88aSMatthew Knepley 
144950ffb88aSMatthew Knepley    Output Parameter:
145050ffb88aSMatthew Knepley .  maxFails - maximum of unsuccessful steps
145150ffb88aSMatthew Knepley 
145250ffb88aSMatthew Knepley    Level: intermediate
145350ffb88aSMatthew Knepley 
1454db781477SPatrick Sanan .seealso: `SNESGetMaxLinearSolveFailures()`, `SNESGetLinearSolveIterations()`, `SNESSetMaxLinearSolveFailures()`, `SNESGetLinearSolveFailures()`,
1455db781477SPatrick Sanan           `SNESSetMaxNonlinearStepFailures()`, `SNESGetNonlinearStepFailures()`
145658ebbce7SBarry Smith 
145750ffb88aSMatthew Knepley @*/
14587087cfbeSBarry Smith PetscErrorCode  SNESGetMaxNonlinearStepFailures(SNES snes, PetscInt *maxFails)
145950ffb88aSMatthew Knepley {
146050ffb88aSMatthew Knepley   PetscFunctionBegin;
14610700a824SBarry Smith   PetscValidHeaderSpecific(snes,SNES_CLASSID,1);
14624482741eSBarry Smith   PetscValidIntPointer(maxFails,2);
146350ffb88aSMatthew Knepley   *maxFails = snes->maxFailures;
14643a40ed3dSBarry Smith   PetscFunctionReturn(0);
14659b94acceSBarry Smith }
1466a847f771SSatish Balay 
14672541af92SBarry Smith /*@
14682541af92SBarry Smith    SNESGetNumberFunctionEvals - Gets the number of user provided function evaluations
14692541af92SBarry Smith      done by SNES.
14702541af92SBarry Smith 
14712541af92SBarry Smith    Not Collective
14722541af92SBarry Smith 
14732541af92SBarry Smith    Input Parameter:
14742541af92SBarry Smith .  snes     - SNES context
14752541af92SBarry Smith 
14762541af92SBarry Smith    Output Parameter:
14772541af92SBarry Smith .  nfuncs - number of evaluations
14782541af92SBarry Smith 
14792541af92SBarry Smith    Level: intermediate
14802541af92SBarry Smith 
148195452b02SPatrick Sanan    Notes:
148295452b02SPatrick Sanan     Reset every time SNESSolve is called unless SNESSetCountersReset() is used.
1483971e163fSPeter Brune 
1484db781477SPatrick Sanan .seealso: `SNESGetMaxLinearSolveFailures()`, `SNESGetLinearSolveIterations()`, `SNESSetMaxLinearSolveFailures()`, `SNESGetLinearSolveFailures()`, `SNESSetCountersReset()`
14852541af92SBarry Smith @*/
14867087cfbeSBarry Smith PetscErrorCode  SNESGetNumberFunctionEvals(SNES snes, PetscInt *nfuncs)
14872541af92SBarry Smith {
14882541af92SBarry Smith   PetscFunctionBegin;
14890700a824SBarry Smith   PetscValidHeaderSpecific(snes,SNES_CLASSID,1);
14902541af92SBarry Smith   PetscValidIntPointer(nfuncs,2);
14912541af92SBarry Smith   *nfuncs = snes->nfuncs;
14922541af92SBarry Smith   PetscFunctionReturn(0);
14932541af92SBarry Smith }
14942541af92SBarry Smith 
14953d4c4710SBarry Smith /*@
14963d4c4710SBarry Smith    SNESGetLinearSolveFailures - Gets the number of failed (non-converged)
14973d4c4710SBarry Smith    linear solvers.
14983d4c4710SBarry Smith 
14993d4c4710SBarry Smith    Not Collective
15003d4c4710SBarry Smith 
15013d4c4710SBarry Smith    Input Parameter:
15023d4c4710SBarry Smith .  snes - SNES context
15033d4c4710SBarry Smith 
15043d4c4710SBarry Smith    Output Parameter:
15053d4c4710SBarry Smith .  nfails - number of failed solves
15063d4c4710SBarry Smith 
15079d85da0cSMatthew G. Knepley    Level: intermediate
15089d85da0cSMatthew G. Knepley 
15099d85da0cSMatthew G. Knepley    Options Database Keys:
15109d85da0cSMatthew G. Knepley . -snes_max_linear_solve_fail <num> - The number of failures before the solve is terminated
15119d85da0cSMatthew G. Knepley 
15123d4c4710SBarry Smith    Notes:
15133d4c4710SBarry Smith    This counter is reset to zero for each successive call to SNESSolve().
15143d4c4710SBarry Smith 
1515db781477SPatrick Sanan .seealso: `SNESGetMaxLinearSolveFailures()`, `SNESGetLinearSolveIterations()`, `SNESSetMaxLinearSolveFailures()`
15163d4c4710SBarry Smith @*/
15177087cfbeSBarry Smith PetscErrorCode  SNESGetLinearSolveFailures(SNES snes,PetscInt *nfails)
15183d4c4710SBarry Smith {
15193d4c4710SBarry Smith   PetscFunctionBegin;
15200700a824SBarry Smith   PetscValidHeaderSpecific(snes,SNES_CLASSID,1);
15213d4c4710SBarry Smith   PetscValidIntPointer(nfails,2);
15223d4c4710SBarry Smith   *nfails = snes->numLinearSolveFailures;
15233d4c4710SBarry Smith   PetscFunctionReturn(0);
15243d4c4710SBarry Smith }
15253d4c4710SBarry Smith 
15263d4c4710SBarry Smith /*@
15273d4c4710SBarry Smith    SNESSetMaxLinearSolveFailures - the number of failed linear solve attempts
15283d4c4710SBarry Smith    allowed before SNES returns with a diverged reason of SNES_DIVERGED_LINEAR_SOLVE
15293d4c4710SBarry Smith 
15303f9fe445SBarry Smith    Logically Collective on SNES
15313d4c4710SBarry Smith 
15323d4c4710SBarry Smith    Input Parameters:
15333d4c4710SBarry Smith +  snes     - SNES context
15343d4c4710SBarry Smith -  maxFails - maximum allowed linear solve failures
15353d4c4710SBarry Smith 
15363d4c4710SBarry Smith    Level: intermediate
15373d4c4710SBarry Smith 
15389d85da0cSMatthew G. Knepley    Options Database Keys:
15399d85da0cSMatthew G. Knepley . -snes_max_linear_solve_fail <num> - The number of failures before the solve is terminated
15409d85da0cSMatthew G. Knepley 
154195452b02SPatrick Sanan    Notes:
154295452b02SPatrick Sanan     By default this is 0; that is SNES returns on the first failed linear solve
15433d4c4710SBarry Smith 
1544db781477SPatrick Sanan .seealso: `SNESGetLinearSolveFailures()`, `SNESGetMaxLinearSolveFailures()`, `SNESGetLinearSolveIterations()`
15453d4c4710SBarry Smith @*/
15467087cfbeSBarry Smith PetscErrorCode  SNESSetMaxLinearSolveFailures(SNES snes, PetscInt maxFails)
15473d4c4710SBarry Smith {
15483d4c4710SBarry Smith   PetscFunctionBegin;
15490700a824SBarry Smith   PetscValidHeaderSpecific(snes,SNES_CLASSID,1);
1550c5eb9154SBarry Smith   PetscValidLogicalCollectiveInt(snes,maxFails,2);
15513d4c4710SBarry Smith   snes->maxLinearSolveFailures = maxFails;
15523d4c4710SBarry Smith   PetscFunctionReturn(0);
15533d4c4710SBarry Smith }
15543d4c4710SBarry Smith 
15553d4c4710SBarry Smith /*@
15563d4c4710SBarry Smith    SNESGetMaxLinearSolveFailures - gets the maximum number of linear solve failures that
15573d4c4710SBarry Smith      are allowed before SNES terminates
15583d4c4710SBarry Smith 
15593d4c4710SBarry Smith    Not Collective
15603d4c4710SBarry Smith 
15613d4c4710SBarry Smith    Input Parameter:
15623d4c4710SBarry Smith .  snes     - SNES context
15633d4c4710SBarry Smith 
15643d4c4710SBarry Smith    Output Parameter:
15653d4c4710SBarry Smith .  maxFails - maximum of unsuccessful solves allowed
15663d4c4710SBarry Smith 
15673d4c4710SBarry Smith    Level: intermediate
15683d4c4710SBarry Smith 
156995452b02SPatrick Sanan    Notes:
157095452b02SPatrick Sanan     By default this is 1; that is SNES returns on the first failed linear solve
15713d4c4710SBarry Smith 
1572db781477SPatrick Sanan .seealso: `SNESGetLinearSolveFailures()`, `SNESGetLinearSolveIterations()`, `SNESSetMaxLinearSolveFailures()`,
15733d4c4710SBarry Smith @*/
15747087cfbeSBarry Smith PetscErrorCode  SNESGetMaxLinearSolveFailures(SNES snes, PetscInt *maxFails)
15753d4c4710SBarry Smith {
15763d4c4710SBarry Smith   PetscFunctionBegin;
15770700a824SBarry Smith   PetscValidHeaderSpecific(snes,SNES_CLASSID,1);
15783d4c4710SBarry Smith   PetscValidIntPointer(maxFails,2);
15793d4c4710SBarry Smith   *maxFails = snes->maxLinearSolveFailures;
15803d4c4710SBarry Smith   PetscFunctionReturn(0);
15813d4c4710SBarry Smith }
15823d4c4710SBarry Smith 
1583c96a6f78SLois Curfman McInnes /*@
1584b850b91aSLisandro Dalcin    SNESGetLinearSolveIterations - Gets the total number of linear iterations
1585c96a6f78SLois Curfman McInnes    used by the nonlinear solver.
1586c96a6f78SLois Curfman McInnes 
1587c7afd0dbSLois Curfman McInnes    Not Collective
1588c7afd0dbSLois Curfman McInnes 
1589c96a6f78SLois Curfman McInnes    Input Parameter:
1590c96a6f78SLois Curfman McInnes .  snes - SNES context
1591c96a6f78SLois Curfman McInnes 
1592c96a6f78SLois Curfman McInnes    Output Parameter:
1593c96a6f78SLois Curfman McInnes .  lits - number of linear iterations
1594c96a6f78SLois Curfman McInnes 
1595c96a6f78SLois Curfman McInnes    Notes:
1596971e163fSPeter Brune    This counter is reset to zero for each successive call to SNESSolve() unless SNESSetCountersReset() is used.
1597c96a6f78SLois Curfman McInnes 
1598010be392SBarry 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
1599010be392SBarry Smith    then call KSPGetIterationNumber() after the failed solve.
1600010be392SBarry Smith 
160136851e7fSLois Curfman McInnes    Level: intermediate
160236851e7fSLois Curfman McInnes 
1603db781477SPatrick Sanan .seealso: `SNESGetIterationNumber()`, `SNESGetLinearSolveFailures()`, `SNESGetMaxLinearSolveFailures()`, `SNESSetCountersReset()`
1604c96a6f78SLois Curfman McInnes @*/
16057087cfbeSBarry Smith PetscErrorCode  SNESGetLinearSolveIterations(SNES snes,PetscInt *lits)
1606c96a6f78SLois Curfman McInnes {
16073a40ed3dSBarry Smith   PetscFunctionBegin;
16080700a824SBarry Smith   PetscValidHeaderSpecific(snes,SNES_CLASSID,1);
16094482741eSBarry Smith   PetscValidIntPointer(lits,2);
1610c96a6f78SLois Curfman McInnes   *lits = snes->linear_its;
16113a40ed3dSBarry Smith   PetscFunctionReturn(0);
1612c96a6f78SLois Curfman McInnes }
1613c96a6f78SLois Curfman McInnes 
1614971e163fSPeter Brune /*@
1615971e163fSPeter Brune    SNESSetCountersReset - Sets whether or not the counters for linear iterations and function evaluations
1616971e163fSPeter Brune    are reset every time SNESSolve() is called.
1617971e163fSPeter Brune 
1618971e163fSPeter Brune    Logically Collective on SNES
1619971e163fSPeter Brune 
1620d8d19677SJose E. Roman    Input Parameters:
1621971e163fSPeter Brune +  snes - SNES context
1622971e163fSPeter Brune -  reset - whether to reset the counters or not
1623971e163fSPeter Brune 
1624971e163fSPeter Brune    Notes:
1625fa19ca70SBarry Smith    This defaults to PETSC_TRUE
1626971e163fSPeter Brune 
1627971e163fSPeter Brune    Level: developer
1628971e163fSPeter Brune 
1629db781477SPatrick Sanan .seealso: `SNESGetNumberFunctionEvals()`, `SNESGetLinearSolveIterations()`, `SNESGetNPC()`
1630971e163fSPeter Brune @*/
1631971e163fSPeter Brune PetscErrorCode  SNESSetCountersReset(SNES snes,PetscBool reset)
1632971e163fSPeter Brune {
1633971e163fSPeter Brune   PetscFunctionBegin;
1634971e163fSPeter Brune   PetscValidHeaderSpecific(snes,SNES_CLASSID,1);
1635971e163fSPeter Brune   PetscValidLogicalCollectiveBool(snes,reset,2);
1636971e163fSPeter Brune   snes->counters_reset = reset;
1637971e163fSPeter Brune   PetscFunctionReturn(0);
1638971e163fSPeter Brune }
1639971e163fSPeter Brune 
16402999313aSBarry Smith /*@
16412999313aSBarry Smith    SNESSetKSP - Sets a KSP context for the SNES object to use
16422999313aSBarry Smith 
16432999313aSBarry Smith    Not Collective, but the SNES and KSP objects must live on the same MPI_Comm
16442999313aSBarry Smith 
16452999313aSBarry Smith    Input Parameters:
16462999313aSBarry Smith +  snes - the SNES context
16472999313aSBarry Smith -  ksp - the KSP context
16482999313aSBarry Smith 
16492999313aSBarry Smith    Notes:
16502999313aSBarry Smith    The SNES object already has its KSP object, you can obtain with SNESGetKSP()
16512999313aSBarry Smith    so this routine is rarely needed.
16522999313aSBarry Smith 
16532999313aSBarry Smith    The KSP object that is already in the SNES object has its reference count
16542999313aSBarry Smith    decreased by one.
16552999313aSBarry Smith 
16562999313aSBarry Smith    Level: developer
16572999313aSBarry Smith 
1658db781477SPatrick Sanan .seealso: `KSPGetPC()`, `SNESCreate()`, `KSPCreate()`, `SNESSetKSP()`
16592999313aSBarry Smith @*/
16607087cfbeSBarry Smith PetscErrorCode  SNESSetKSP(SNES snes,KSP ksp)
16612999313aSBarry Smith {
16622999313aSBarry Smith   PetscFunctionBegin;
16630700a824SBarry Smith   PetscValidHeaderSpecific(snes,SNES_CLASSID,1);
16640700a824SBarry Smith   PetscValidHeaderSpecific(ksp,KSP_CLASSID,2);
16652999313aSBarry Smith   PetscCheckSameComm(snes,1,ksp,2);
16669566063dSJacob Faibussowitsch   PetscCall(PetscObjectReference((PetscObject)ksp));
16679566063dSJacob Faibussowitsch   if (snes->ksp) PetscCall(PetscObjectDereference((PetscObject)snes->ksp));
16682999313aSBarry Smith   snes->ksp = ksp;
16692999313aSBarry Smith   PetscFunctionReturn(0);
16702999313aSBarry Smith }
16712999313aSBarry Smith 
16729b94acceSBarry Smith /* -----------------------------------------------------------*/
167352baeb72SSatish Balay /*@
16749b94acceSBarry Smith    SNESCreate - Creates a nonlinear solver context.
16759b94acceSBarry Smith 
1676d083f849SBarry Smith    Collective
1677c7afd0dbSLois Curfman McInnes 
1678c7afd0dbSLois Curfman McInnes    Input Parameters:
1679906ed7ccSBarry Smith .  comm - MPI communicator
16809b94acceSBarry Smith 
16819b94acceSBarry Smith    Output Parameter:
16829b94acceSBarry Smith .  outsnes - the new SNES context
16839b94acceSBarry Smith 
1684c7afd0dbSLois Curfman McInnes    Options Database Keys:
1685c7afd0dbSLois Curfman McInnes +   -snes_mf - Activates default matrix-free Jacobian-vector products,
1686c7afd0dbSLois Curfman McInnes                and no preconditioning matrix
1687c7afd0dbSLois Curfman McInnes .   -snes_mf_operator - Activates default matrix-free Jacobian-vector
1688c7afd0dbSLois Curfman McInnes                products, and a user-provided preconditioning matrix
1689c7afd0dbSLois Curfman McInnes                as set by SNESSetJacobian()
1690c7afd0dbSLois Curfman McInnes -   -snes_fd - Uses (slow!) finite differences to compute Jacobian
1691c1f60f51SBarry Smith 
169236851e7fSLois Curfman McInnes    Level: beginner
169336851e7fSLois Curfman McInnes 
169495452b02SPatrick Sanan    Developer Notes:
169595452b02SPatrick Sanan     SNES always creates a KSP object even though many SNES methods do not use it. This is
1696efd4aadfSBarry Smith                     unfortunate and should be fixed at some point. The flag snes->usesksp indicates if the
1697efd4aadfSBarry Smith                     particular method does use KSP and regulates if the information about the KSP is printed
1698efd4aadfSBarry Smith                     in SNESView(). TSSetFromOptions() does call SNESSetFromOptions() which can lead to users being confused
1699efd4aadfSBarry Smith                     by help messages about meaningless SNES options.
1700efd4aadfSBarry Smith 
1701efd4aadfSBarry Smith                     SNES always creates the snes->kspconvctx even though it is used by only one type. This should
1702efd4aadfSBarry Smith                     be fixed.
1703efd4aadfSBarry Smith 
1704db781477SPatrick Sanan .seealso: `SNESSolve()`, `SNESDestroy()`, `SNES`, `SNESSetLagPreconditioner()`, `SNESSetLagJacobian()`
1705a8054027SBarry Smith 
17069b94acceSBarry Smith @*/
17077087cfbeSBarry Smith PetscErrorCode  SNESCreate(MPI_Comm comm,SNES *outsnes)
17089b94acceSBarry Smith {
17099b94acceSBarry Smith   SNES           snes;
1710fa9f3622SBarry Smith   SNESKSPEW      *kctx;
171137fcc0dbSBarry Smith 
17123a40ed3dSBarry Smith   PetscFunctionBegin;
1713ed1caa07SMatthew Knepley   PetscValidPointer(outsnes,2);
17140298fd71SBarry Smith   *outsnes = NULL;
17159566063dSJacob Faibussowitsch   PetscCall(SNESInitializePackage());
17168ba1e511SMatthew Knepley 
17179566063dSJacob Faibussowitsch   PetscCall(PetscHeaderCreate(snes,SNES_CLASSID,"SNES","Nonlinear solver","SNES",comm,SNESDestroy,SNESView));
17187adad957SLisandro Dalcin 
17198d359177SBarry Smith   snes->ops->converged    = SNESConvergedDefault;
17202c155ee1SBarry Smith   snes->usesksp           = PETSC_TRUE;
172188976e71SPeter Brune   snes->tolerancesset     = PETSC_FALSE;
17229b94acceSBarry Smith   snes->max_its           = 50;
17239750a799SBarry Smith   snes->max_funcs         = 10000;
17249b94acceSBarry Smith   snes->norm              = 0.0;
1725c1e67a49SFande Kong   snes->xnorm             = 0.0;
1726c1e67a49SFande Kong   snes->ynorm             = 0.0;
1727365a6726SPeter Brune   snes->normschedule      = SNES_NORM_ALWAYS;
17286c67d002SPeter Brune   snes->functype          = SNES_FUNCTION_DEFAULT;
17293a2046daSBarry Smith #if defined(PETSC_USE_REAL_SINGLE)
17303a2046daSBarry Smith   snes->rtol              = 1.e-5;
17313a2046daSBarry Smith #else
1732b4874afaSBarry Smith   snes->rtol              = 1.e-8;
17333a2046daSBarry Smith #endif
1734b4874afaSBarry Smith   snes->ttol              = 0.0;
17353a2046daSBarry Smith #if defined(PETSC_USE_REAL_SINGLE)
17363a2046daSBarry Smith   snes->abstol            = 1.e-25;
17373a2046daSBarry Smith #else
173870441072SBarry Smith   snes->abstol            = 1.e-50;
17393a2046daSBarry Smith #endif
17407cd0ae37SLisandro Dalcin #if defined(PETSC_USE_REAL_SINGLE)
17417cd0ae37SLisandro Dalcin   snes->stol              = 1.e-5;
17427cd0ae37SLisandro Dalcin #else
1743c60f73f4SPeter Brune   snes->stol              = 1.e-8;
17447cd0ae37SLisandro Dalcin #endif
17453a2046daSBarry Smith #if defined(PETSC_USE_REAL_SINGLE)
17463a2046daSBarry Smith   snes->deltatol          = 1.e-6;
17473a2046daSBarry Smith #else
17484b27c08aSLois Curfman McInnes   snes->deltatol          = 1.e-12;
17493a2046daSBarry Smith #endif
1750e37c518bSBarry Smith   snes->divtol            = 1.e4;
1751e37c518bSBarry Smith   snes->rnorm0            = 0;
17529b94acceSBarry Smith   snes->nfuncs            = 0;
175350ffb88aSMatthew Knepley   snes->numFailures       = 0;
175450ffb88aSMatthew Knepley   snes->maxFailures       = 1;
17557a00f4a9SLois Curfman McInnes   snes->linear_its        = 0;
1756e35cf81dSBarry Smith   snes->lagjacobian       = 1;
175737ec4e1aSPeter Brune   snes->jac_iter          = 0;
175837ec4e1aSPeter Brune   snes->lagjac_persist    = PETSC_FALSE;
1759a8054027SBarry Smith   snes->lagpreconditioner = 1;
176037ec4e1aSPeter Brune   snes->pre_iter          = 0;
176137ec4e1aSPeter Brune   snes->lagpre_persist    = PETSC_FALSE;
1762639f9d9dSBarry Smith   snes->numbermonitors    = 0;
1763c4421ceaSFande Kong   snes->numberreasonviews = 0;
17649e5d0892SLisandro Dalcin   snes->data              = NULL;
17654dc4c822SBarry Smith   snes->setupcalled       = PETSC_FALSE;
1766186905e3SBarry Smith   snes->ksp_ewconv        = PETSC_FALSE;
17676f24a144SLois Curfman McInnes   snes->nwork             = 0;
17689e5d0892SLisandro Dalcin   snes->work              = NULL;
176958c9b817SLisandro Dalcin   snes->nvwork            = 0;
17709e5d0892SLisandro Dalcin   snes->vwork             = NULL;
1771758f92a0SBarry Smith   snes->conv_hist_len     = 0;
1772758f92a0SBarry Smith   snes->conv_hist_max     = 0;
17730298fd71SBarry Smith   snes->conv_hist         = NULL;
17740298fd71SBarry Smith   snes->conv_hist_its     = NULL;
1775758f92a0SBarry Smith   snes->conv_hist_reset   = PETSC_TRUE;
1776971e163fSPeter Brune   snes->counters_reset    = PETSC_TRUE;
1777e4ed7901SPeter Brune   snes->vec_func_init_set = PETSC_FALSE;
1778184914b5SBarry Smith   snes->reason            = SNES_CONVERGED_ITERATING;
1779efd4aadfSBarry Smith   snes->npcside           = PC_RIGHT;
1780b3cd9a81SMatthew G. Knepley   snes->setfromoptionscalled = 0;
1781c40d0f55SPeter Brune 
1782d8f46077SPeter Brune   snes->mf          = PETSC_FALSE;
1783d8f46077SPeter Brune   snes->mf_operator = PETSC_FALSE;
1784d8f46077SPeter Brune   snes->mf_version  = 1;
1785d8f46077SPeter Brune 
17863d4c4710SBarry Smith   snes->numLinearSolveFailures = 0;
17873d4c4710SBarry Smith   snes->maxLinearSolveFailures = 1;
17883d4c4710SBarry Smith 
1789349187a7SBarry Smith   snes->vizerotolerance = 1.e-8;
179076bd3646SJed Brown   snes->checkjacdomainerror = PetscDefined(USE_DEBUG) ? PETSC_TRUE : PETSC_FALSE;
1791349187a7SBarry Smith 
17924fc747eaSLawrence Mitchell   /* Set this to true if the implementation of SNESSolve_XXX does compute the residual at the final solution. */
17934fc747eaSLawrence Mitchell   snes->alwayscomputesfinalresidual = PETSC_FALSE;
17944fc747eaSLawrence Mitchell 
17959b94acceSBarry Smith   /* Create context to compute Eisenstat-Walker relative tolerance for KSP */
17969566063dSJacob Faibussowitsch   PetscCall(PetscNewLog(snes,&kctx));
1797f5af7f23SKarl Rupp 
17989b94acceSBarry Smith   snes->kspconvctx  = (void*)kctx;
17999b94acceSBarry Smith   kctx->version     = 2;
18009b94acceSBarry Smith   kctx->rtol_0      = .3; /* Eisenstat and Walker suggest rtol_0=.5, but
18019b94acceSBarry Smith                              this was too large for some test cases */
180275567043SBarry Smith   kctx->rtol_last   = 0.0;
18039b94acceSBarry Smith   kctx->rtol_max    = .9;
18049b94acceSBarry Smith   kctx->gamma       = 1.0;
180562d1f40fSBarry Smith   kctx->alpha       = .5*(1.0 + PetscSqrtReal(5.0));
180671f87433Sdalcinl   kctx->alpha2      = kctx->alpha;
18079b94acceSBarry Smith   kctx->threshold   = .1;
180875567043SBarry Smith   kctx->lresid_last = 0.0;
180975567043SBarry Smith   kctx->norm_last   = 0.0;
18109b94acceSBarry Smith 
18119b94acceSBarry Smith   *outsnes = snes;
18123a40ed3dSBarry Smith   PetscFunctionReturn(0);
18139b94acceSBarry Smith }
18149b94acceSBarry Smith 
181588f0584fSBarry Smith /*MC
1816411c0326SBarry Smith     SNESFunction - Functional form used to convey the nonlinear function to be solved by SNES
181788f0584fSBarry Smith 
181888f0584fSBarry Smith      Synopsis:
1819411c0326SBarry Smith      #include "petscsnes.h"
1820411c0326SBarry Smith      PetscErrorCode SNESFunction(SNES snes,Vec x,Vec f,void *ctx);
182188f0584fSBarry Smith 
18221843f636SBarry Smith      Collective on snes
18231843f636SBarry Smith 
182488f0584fSBarry Smith      Input Parameters:
182588f0584fSBarry Smith +     snes - the SNES context
182688f0584fSBarry Smith .     x    - state at which to evaluate residual
182788f0584fSBarry Smith -     ctx     - optional user-defined function context, passed in with SNESSetFunction()
182888f0584fSBarry Smith 
182988f0584fSBarry Smith      Output Parameter:
183088f0584fSBarry Smith .     f  - vector to put residual (function value)
183188f0584fSBarry Smith 
1832878cb397SSatish Balay    Level: intermediate
1833878cb397SSatish Balay 
1834db781477SPatrick Sanan .seealso: `SNESSetFunction()`, `SNESGetFunction()`
183588f0584fSBarry Smith M*/
183688f0584fSBarry Smith 
18379b94acceSBarry Smith /*@C
18389b94acceSBarry Smith    SNESSetFunction - Sets the function evaluation routine and function
18399b94acceSBarry Smith    vector for use by the SNES routines in solving systems of nonlinear
18409b94acceSBarry Smith    equations.
18419b94acceSBarry Smith 
18423f9fe445SBarry Smith    Logically Collective on SNES
1843fee21e36SBarry Smith 
1844c7afd0dbSLois Curfman McInnes    Input Parameters:
1845c7afd0dbSLois Curfman McInnes +  snes - the SNES context
18466b7fb656SBarry Smith .  r - vector to store function values, may be NULL
1847f8b49ee9SBarry Smith .  f - function evaluation routine; see SNESFunction for calling sequence details
1848c7afd0dbSLois Curfman McInnes -  ctx - [optional] user-defined context for private data for the
18490298fd71SBarry Smith          function evaluation routine (may be NULL)
18509b94acceSBarry Smith 
18519b94acceSBarry Smith    Notes:
18529b94acceSBarry Smith    The Newton-like methods typically solve linear systems of the form
18539b94acceSBarry Smith $      f'(x) x = -f(x),
1854c7afd0dbSLois Curfman McInnes    where f'(x) denotes the Jacobian matrix and f(x) is the function.
18559b94acceSBarry Smith 
185636851e7fSLois Curfman McInnes    Level: beginner
185736851e7fSLois Curfman McInnes 
1858db781477SPatrick Sanan .seealso: `SNESGetFunction()`, `SNESComputeFunction()`, `SNESSetJacobian()`, `SNESSetPicard()`, `SNESFunction`
18599b94acceSBarry Smith @*/
1860f8b49ee9SBarry Smith PetscErrorCode  SNESSetFunction(SNES snes,Vec r,PetscErrorCode (*f)(SNES,Vec,Vec,void*),void *ctx)
18619b94acceSBarry Smith {
18626cab3a1bSJed Brown   DM             dm;
18636cab3a1bSJed Brown 
18643a40ed3dSBarry Smith   PetscFunctionBegin;
18650700a824SBarry Smith   PetscValidHeaderSpecific(snes,SNES_CLASSID,1);
1866d2a683ecSLisandro Dalcin   if (r) {
1867d2a683ecSLisandro Dalcin     PetscValidHeaderSpecific(r,VEC_CLASSID,2);
1868d2a683ecSLisandro Dalcin     PetscCheckSameComm(snes,1,r,2);
18699566063dSJacob Faibussowitsch     PetscCall(PetscObjectReference((PetscObject)r));
18709566063dSJacob Faibussowitsch     PetscCall(VecDestroy(&snes->vec_func));
187185385478SLisandro Dalcin     snes->vec_func = r;
1872d2a683ecSLisandro Dalcin   }
18739566063dSJacob Faibussowitsch   PetscCall(SNESGetDM(snes,&dm));
18749566063dSJacob Faibussowitsch   PetscCall(DMSNESSetFunction(dm,f,ctx));
1875bbc1464cSBarry Smith   if (f == SNESPicardComputeFunction) {
18769566063dSJacob Faibussowitsch     PetscCall(DMSNESSetMFFunction(dm,SNESPicardComputeMFFunction,ctx));
1877bbc1464cSBarry Smith   }
18783a40ed3dSBarry Smith   PetscFunctionReturn(0);
18799b94acceSBarry Smith }
18809b94acceSBarry Smith 
1881e4ed7901SPeter Brune /*@C
1882e4ed7901SPeter Brune    SNESSetInitialFunction - Sets the function vector to be used as the
1883e4ed7901SPeter Brune    function norm at the initialization of the method.  In some
1884e4ed7901SPeter Brune    instances, the user has precomputed the function before calling
1885e4ed7901SPeter Brune    SNESSolve.  This function allows one to avoid a redundant call
1886e4ed7901SPeter Brune    to SNESComputeFunction in that case.
1887e4ed7901SPeter Brune 
1888e4ed7901SPeter Brune    Logically Collective on SNES
1889e4ed7901SPeter Brune 
1890e4ed7901SPeter Brune    Input Parameters:
1891e4ed7901SPeter Brune +  snes - the SNES context
1892e4ed7901SPeter Brune -  f - vector to store function value
1893e4ed7901SPeter Brune 
1894e4ed7901SPeter Brune    Notes:
1895e4ed7901SPeter Brune    This should not be modified during the solution procedure.
1896e4ed7901SPeter Brune 
1897e4ed7901SPeter Brune    This is used extensively in the SNESFAS hierarchy and in nonlinear preconditioning.
1898e4ed7901SPeter Brune 
1899e4ed7901SPeter Brune    Level: developer
1900e4ed7901SPeter Brune 
1901db781477SPatrick Sanan .seealso: `SNESSetFunction()`, `SNESComputeFunction()`, `SNESSetInitialFunctionNorm()`
1902e4ed7901SPeter Brune @*/
1903e4ed7901SPeter Brune PetscErrorCode  SNESSetInitialFunction(SNES snes, Vec f)
1904e4ed7901SPeter Brune {
1905e4ed7901SPeter Brune   Vec            vec_func;
1906e4ed7901SPeter Brune 
1907e4ed7901SPeter Brune   PetscFunctionBegin;
1908e4ed7901SPeter Brune   PetscValidHeaderSpecific(snes,SNES_CLASSID,1);
1909e4ed7901SPeter Brune   PetscValidHeaderSpecific(f,VEC_CLASSID,2);
1910e4ed7901SPeter Brune   PetscCheckSameComm(snes,1,f,2);
1911efd4aadfSBarry Smith   if (snes->npcside == PC_LEFT && snes->functype == SNES_FUNCTION_PRECONDITIONED) {
1912902f982fSPeter Brune     snes->vec_func_init_set = PETSC_FALSE;
1913902f982fSPeter Brune     PetscFunctionReturn(0);
1914902f982fSPeter Brune   }
19159566063dSJacob Faibussowitsch   PetscCall(SNESGetFunction(snes,&vec_func,NULL,NULL));
19169566063dSJacob Faibussowitsch   PetscCall(VecCopy(f,vec_func));
1917f5af7f23SKarl Rupp 
1918217b9c2eSPeter Brune   snes->vec_func_init_set = PETSC_TRUE;
1919e4ed7901SPeter Brune   PetscFunctionReturn(0);
1920e4ed7901SPeter Brune }
1921e4ed7901SPeter Brune 
1922534ebe21SPeter Brune /*@
1923a5b23f4aSJose E. Roman    SNESSetNormSchedule - Sets the SNESNormSchedule used in convergence and monitoring
1924534ebe21SPeter Brune    of the SNES method.
1925534ebe21SPeter Brune 
1926534ebe21SPeter Brune    Logically Collective on SNES
1927534ebe21SPeter Brune 
1928534ebe21SPeter Brune    Input Parameters:
1929534ebe21SPeter Brune +  snes - the SNES context
1930365a6726SPeter Brune -  normschedule - the frequency of norm computation
1931534ebe21SPeter Brune 
1932517f1916SMatthew G. Knepley    Options Database Key:
193367b8a455SSatish Balay .  -snes_norm_schedule <none, always, initialonly, finalonly, initialfinalonly> - set the schedule
1934517f1916SMatthew G. Knepley 
1935534ebe21SPeter Brune    Notes:
1936365a6726SPeter Brune    Only certain SNES methods support certain SNESNormSchedules.  Most require evaluation
1937534ebe21SPeter Brune    of the nonlinear function and the taking of its norm at every iteration to
1938534ebe21SPeter Brune    even ensure convergence at all.  However, methods such as custom Gauss-Seidel methods
1939a5b23f4aSJose E. Roman    (SNESNGS) and the like do not require the norm of the function to be computed, and therefore
1940534ebe21SPeter Brune    may either be monitored for convergence or not.  As these are often used as nonlinear
1941534ebe21SPeter Brune    preconditioners, monitoring the norm of their error is not a useful enterprise within
1942534ebe21SPeter Brune    their solution.
1943534ebe21SPeter Brune 
1944534ebe21SPeter Brune    Level: developer
1945534ebe21SPeter Brune 
1946db781477SPatrick Sanan .seealso: `SNESGetNormSchedule()`, `SNESComputeFunction()`, `VecNorm()`, `SNESSetFunction()`, `SNESSetInitialFunction()`, `SNESNormSchedule`
1947534ebe21SPeter Brune @*/
1948365a6726SPeter Brune PetscErrorCode  SNESSetNormSchedule(SNES snes, SNESNormSchedule normschedule)
1949534ebe21SPeter Brune {
1950534ebe21SPeter Brune   PetscFunctionBegin;
1951534ebe21SPeter Brune   PetscValidHeaderSpecific(snes,SNES_CLASSID,1);
1952365a6726SPeter Brune   snes->normschedule = normschedule;
1953534ebe21SPeter Brune   PetscFunctionReturn(0);
1954534ebe21SPeter Brune }
1955534ebe21SPeter Brune 
1956534ebe21SPeter Brune /*@
1957a5b23f4aSJose E. Roman    SNESGetNormSchedule - Gets the SNESNormSchedule used in convergence and monitoring
1958534ebe21SPeter Brune    of the SNES method.
1959534ebe21SPeter Brune 
1960534ebe21SPeter Brune    Logically Collective on SNES
1961534ebe21SPeter Brune 
1962534ebe21SPeter Brune    Input Parameters:
1963534ebe21SPeter Brune +  snes - the SNES context
1964365a6726SPeter Brune -  normschedule - the type of the norm used
1965534ebe21SPeter Brune 
1966534ebe21SPeter Brune    Level: advanced
1967534ebe21SPeter Brune 
1968db781477SPatrick Sanan .seealso: `SNESSetNormSchedule()`, `SNESComputeFunction()`, `VecNorm()`, `SNESSetFunction()`, `SNESSetInitialFunction()`, `SNESNormSchedule`
1969534ebe21SPeter Brune @*/
1970365a6726SPeter Brune PetscErrorCode  SNESGetNormSchedule(SNES snes, SNESNormSchedule *normschedule)
1971534ebe21SPeter Brune {
1972534ebe21SPeter Brune   PetscFunctionBegin;
1973534ebe21SPeter Brune   PetscValidHeaderSpecific(snes,SNES_CLASSID,1);
1974365a6726SPeter Brune   *normschedule = snes->normschedule;
1975534ebe21SPeter Brune   PetscFunctionReturn(0);
1976534ebe21SPeter Brune }
1977534ebe21SPeter Brune 
1978c5ce4427SMatthew G. Knepley /*@
1979c5ce4427SMatthew G. Knepley   SNESSetFunctionNorm - Sets the last computed residual norm.
1980c5ce4427SMatthew G. Knepley 
1981c5ce4427SMatthew G. Knepley   Logically Collective on SNES
1982c5ce4427SMatthew G. Knepley 
1983c5ce4427SMatthew G. Knepley   Input Parameters:
1984c5ce4427SMatthew G. Knepley + snes - the SNES context
1985c5ce4427SMatthew G. Knepley 
1986c5ce4427SMatthew G. Knepley - normschedule - the frequency of norm computation
1987c5ce4427SMatthew G. Knepley 
1988c5ce4427SMatthew G. Knepley   Level: developer
1989c5ce4427SMatthew G. Knepley 
1990db781477SPatrick Sanan .seealso: `SNESGetNormSchedule()`, `SNESComputeFunction()`, `VecNorm()`, `SNESSetFunction()`, `SNESSetInitialFunction()`, `SNESNormSchedule`
1991c5ce4427SMatthew G. Knepley @*/
1992c5ce4427SMatthew G. Knepley PetscErrorCode SNESSetFunctionNorm(SNES snes, PetscReal norm)
1993c5ce4427SMatthew G. Knepley {
1994c5ce4427SMatthew G. Knepley   PetscFunctionBegin;
1995c5ce4427SMatthew G. Knepley   PetscValidHeaderSpecific(snes,SNES_CLASSID,1);
1996c5ce4427SMatthew G. Knepley   snes->norm = norm;
1997c5ce4427SMatthew G. Knepley   PetscFunctionReturn(0);
1998c5ce4427SMatthew G. Knepley }
1999c5ce4427SMatthew G. Knepley 
2000c5ce4427SMatthew G. Knepley /*@
2001c5ce4427SMatthew G. Knepley   SNESGetFunctionNorm - Gets the last computed norm of the residual
2002c5ce4427SMatthew G. Knepley 
2003c5ce4427SMatthew G. Knepley   Not Collective
2004c5ce4427SMatthew G. Knepley 
2005c5ce4427SMatthew G. Knepley   Input Parameter:
2006c5ce4427SMatthew G. Knepley . snes - the SNES context
2007c5ce4427SMatthew G. Knepley 
2008c5ce4427SMatthew G. Knepley   Output Parameter:
2009c5ce4427SMatthew G. Knepley . norm - the last computed residual norm
2010c5ce4427SMatthew G. Knepley 
2011c5ce4427SMatthew G. Knepley   Level: developer
2012c5ce4427SMatthew G. Knepley 
2013db781477SPatrick Sanan .seealso: `SNESSetNormSchedule()`, `SNESComputeFunction()`, `VecNorm()`, `SNESSetFunction()`, `SNESSetInitialFunction()`, `SNESNormSchedule`
2014c5ce4427SMatthew G. Knepley @*/
2015c5ce4427SMatthew G. Knepley PetscErrorCode SNESGetFunctionNorm(SNES snes, PetscReal *norm)
2016c5ce4427SMatthew G. Knepley {
2017c5ce4427SMatthew G. Knepley   PetscFunctionBegin;
2018c5ce4427SMatthew G. Knepley   PetscValidHeaderSpecific(snes,SNES_CLASSID,1);
2019dadcf809SJacob Faibussowitsch   PetscValidRealPointer(norm, 2);
2020c5ce4427SMatthew G. Knepley   *norm = snes->norm;
2021c5ce4427SMatthew G. Knepley   PetscFunctionReturn(0);
2022c5ce4427SMatthew G. Knepley }
2023c5ce4427SMatthew G. Knepley 
2024c1e67a49SFande Kong /*@
2025c1e67a49SFande Kong   SNESGetUpdateNorm - Gets the last computed norm of the Newton update
2026c1e67a49SFande Kong 
2027c1e67a49SFande Kong   Not Collective
2028c1e67a49SFande Kong 
2029c1e67a49SFande Kong   Input Parameter:
2030c1e67a49SFande Kong . snes - the SNES context
2031c1e67a49SFande Kong 
2032c1e67a49SFande Kong   Output Parameter:
2033c1e67a49SFande Kong . ynorm - the last computed update norm
2034c1e67a49SFande Kong 
2035c1e67a49SFande Kong   Level: developer
2036c1e67a49SFande Kong 
2037db781477SPatrick Sanan .seealso: `SNESSetNormSchedule()`, `SNESComputeFunction()`, `SNESGetFunctionNorm()`
2038c1e67a49SFande Kong @*/
2039c1e67a49SFande Kong PetscErrorCode SNESGetUpdateNorm(SNES snes, PetscReal *ynorm)
2040c1e67a49SFande Kong {
2041c1e67a49SFande Kong   PetscFunctionBegin;
2042c1e67a49SFande Kong   PetscValidHeaderSpecific(snes,SNES_CLASSID,1);
2043dadcf809SJacob Faibussowitsch   PetscValidRealPointer(ynorm, 2);
2044c1e67a49SFande Kong   *ynorm = snes->ynorm;
2045c1e67a49SFande Kong   PetscFunctionReturn(0);
2046c1e67a49SFande Kong }
2047c1e67a49SFande Kong 
2048c1e67a49SFande Kong /*@
20494591eaf2SFande Kong   SNESGetSolutionNorm - Gets the last computed norm of the solution
2050c1e67a49SFande Kong 
2051c1e67a49SFande Kong   Not Collective
2052c1e67a49SFande Kong 
2053c1e67a49SFande Kong   Input Parameter:
2054c1e67a49SFande Kong . snes - the SNES context
2055c1e67a49SFande Kong 
2056c1e67a49SFande Kong   Output Parameter:
2057c1e67a49SFande Kong . xnorm - the last computed solution norm
2058c1e67a49SFande Kong 
2059c1e67a49SFande Kong   Level: developer
2060c1e67a49SFande Kong 
2061db781477SPatrick Sanan .seealso: `SNESSetNormSchedule()`, `SNESComputeFunction()`, `SNESGetFunctionNorm()`, `SNESGetUpdateNorm()`
2062c1e67a49SFande Kong @*/
2063c1e67a49SFande Kong PetscErrorCode SNESGetSolutionNorm(SNES snes, PetscReal *xnorm)
2064c1e67a49SFande Kong {
2065c1e67a49SFande Kong   PetscFunctionBegin;
2066c1e67a49SFande Kong   PetscValidHeaderSpecific(snes,SNES_CLASSID,1);
2067dadcf809SJacob Faibussowitsch   PetscValidRealPointer(xnorm, 2);
2068c1e67a49SFande Kong   *xnorm = snes->xnorm;
2069c1e67a49SFande Kong   PetscFunctionReturn(0);
2070c1e67a49SFande Kong }
2071c1e67a49SFande Kong 
207247073ea2SPeter Brune /*@C
2073a5b23f4aSJose E. Roman    SNESSetFunctionType - Sets the SNESNormSchedule used in convergence and monitoring
207447073ea2SPeter Brune    of the SNES method.
207547073ea2SPeter Brune 
207647073ea2SPeter Brune    Logically Collective on SNES
207747073ea2SPeter Brune 
207847073ea2SPeter Brune    Input Parameters:
207947073ea2SPeter Brune +  snes - the SNES context
208047073ea2SPeter Brune -  normschedule - the frequency of norm computation
208147073ea2SPeter Brune 
208247073ea2SPeter Brune    Notes:
208347073ea2SPeter Brune    Only certain SNES methods support certain SNESNormSchedules.  Most require evaluation
208447073ea2SPeter Brune    of the nonlinear function and the taking of its norm at every iteration to
208547073ea2SPeter Brune    even ensure convergence at all.  However, methods such as custom Gauss-Seidel methods
2086a5b23f4aSJose E. Roman    (SNESNGS) and the like do not require the norm of the function to be computed, and therefore
208747073ea2SPeter Brune    may either be monitored for convergence or not.  As these are often used as nonlinear
208847073ea2SPeter Brune    preconditioners, monitoring the norm of their error is not a useful enterprise within
208947073ea2SPeter Brune    their solution.
209047073ea2SPeter Brune 
209147073ea2SPeter Brune    Level: developer
209247073ea2SPeter Brune 
2093db781477SPatrick Sanan .seealso: `SNESGetNormSchedule()`, `SNESComputeFunction()`, `VecNorm()`, `SNESSetFunction()`, `SNESSetInitialFunction()`, `SNESNormSchedule`
209447073ea2SPeter Brune @*/
209547073ea2SPeter Brune PetscErrorCode  SNESSetFunctionType(SNES snes, SNESFunctionType type)
209647073ea2SPeter Brune {
209747073ea2SPeter Brune   PetscFunctionBegin;
209847073ea2SPeter Brune   PetscValidHeaderSpecific(snes,SNES_CLASSID,1);
209947073ea2SPeter Brune   snes->functype = type;
210047073ea2SPeter Brune   PetscFunctionReturn(0);
210147073ea2SPeter Brune }
210247073ea2SPeter Brune 
210347073ea2SPeter Brune /*@C
2104a5b23f4aSJose E. Roman    SNESGetFunctionType - Gets the SNESNormSchedule used in convergence and monitoring
210547073ea2SPeter Brune    of the SNES method.
210647073ea2SPeter Brune 
210747073ea2SPeter Brune    Logically Collective on SNES
210847073ea2SPeter Brune 
210947073ea2SPeter Brune    Input Parameters:
211047073ea2SPeter Brune +  snes - the SNES context
211147073ea2SPeter Brune -  normschedule - the type of the norm used
211247073ea2SPeter Brune 
211347073ea2SPeter Brune    Level: advanced
211447073ea2SPeter Brune 
2115db781477SPatrick Sanan .seealso: `SNESSetNormSchedule()`, `SNESComputeFunction()`, `VecNorm()`, `SNESSetFunction()`, `SNESSetInitialFunction()`, `SNESNormSchedule`
211647073ea2SPeter Brune @*/
211747073ea2SPeter Brune PetscErrorCode  SNESGetFunctionType(SNES snes, SNESFunctionType *type)
211847073ea2SPeter Brune {
211947073ea2SPeter Brune   PetscFunctionBegin;
212047073ea2SPeter Brune   PetscValidHeaderSpecific(snes,SNES_CLASSID,1);
212147073ea2SPeter Brune   *type = snes->functype;
2122534ebe21SPeter Brune   PetscFunctionReturn(0);
2123534ebe21SPeter Brune }
2124534ebe21SPeter Brune 
2125bf388a1fSBarry Smith /*MC
2126be95d8f1SBarry Smith     SNESNGSFunction - function used to convey a Gauss-Seidel sweep on the nonlinear function
2127bf388a1fSBarry Smith 
2128bf388a1fSBarry Smith      Synopsis:
2129aaa7dc30SBarry Smith      #include <petscsnes.h>
2130be95d8f1SBarry Smith $    SNESNGSFunction(SNES snes,Vec x,Vec b,void *ctx);
2131bf388a1fSBarry Smith 
21321843f636SBarry Smith      Collective on snes
21331843f636SBarry Smith 
21341843f636SBarry Smith      Input Parameters:
2135bf388a1fSBarry Smith +  X   - solution vector
2136bf388a1fSBarry Smith .  B   - RHS vector
2137bf388a1fSBarry Smith -  ctx - optional user-defined Gauss-Seidel context
2138bf388a1fSBarry Smith 
21391843f636SBarry Smith      Output Parameter:
21401843f636SBarry Smith .  X   - solution vector
21411843f636SBarry Smith 
2142878cb397SSatish Balay    Level: intermediate
2143878cb397SSatish Balay 
2144db781477SPatrick Sanan .seealso: `SNESSetNGS()`, `SNESGetNGS()`
2145bf388a1fSBarry Smith M*/
2146bf388a1fSBarry Smith 
2147c79ef259SPeter Brune /*@C
2148be95d8f1SBarry Smith    SNESSetNGS - Sets the user nonlinear Gauss-Seidel routine for
2149c79ef259SPeter Brune    use with composed nonlinear solvers.
2150c79ef259SPeter Brune 
2151c79ef259SPeter Brune    Input Parameters:
2152c79ef259SPeter Brune +  snes   - the SNES context
2153be95d8f1SBarry Smith .  f - function evaluation routine to apply Gauss-Seidel see SNESNGSFunction
2154c79ef259SPeter Brune -  ctx    - [optional] user-defined context for private data for the
21550298fd71SBarry Smith             smoother evaluation routine (may be NULL)
2156c79ef259SPeter Brune 
2157c79ef259SPeter Brune    Notes:
2158be95d8f1SBarry Smith    The NGS routines are used by the composed nonlinear solver to generate
2159c79ef259SPeter Brune     a problem appropriate update to the solution, particularly FAS.
2160c79ef259SPeter Brune 
2161d28543b3SPeter Brune    Level: intermediate
2162c79ef259SPeter Brune 
2163db781477SPatrick Sanan .seealso: `SNESGetFunction()`, `SNESComputeNGS()`
2164c79ef259SPeter Brune @*/
2165be95d8f1SBarry Smith PetscErrorCode SNESSetNGS(SNES snes,PetscErrorCode (*f)(SNES,Vec,Vec,void*),void *ctx)
21666cab3a1bSJed Brown {
21676cab3a1bSJed Brown   DM             dm;
21686cab3a1bSJed Brown 
2169646217ecSPeter Brune   PetscFunctionBegin;
21706cab3a1bSJed Brown   PetscValidHeaderSpecific(snes,SNES_CLASSID,1);
21719566063dSJacob Faibussowitsch   PetscCall(SNESGetDM(snes,&dm));
21729566063dSJacob Faibussowitsch   PetscCall(DMSNESSetNGS(dm,f,ctx));
2173646217ecSPeter Brune   PetscFunctionReturn(0);
2174646217ecSPeter Brune }
2175646217ecSPeter Brune 
2176bbc1464cSBarry Smith /*
2177bbc1464cSBarry Smith      This is used for -snes_mf_operator; it uses a duplicate of snes->jacobian_pre because snes->jacobian_pre cannot be
2178bbc1464cSBarry Smith    changed during the KSPSolve()
2179bbc1464cSBarry Smith */
2180bbc1464cSBarry Smith PetscErrorCode SNESPicardComputeMFFunction(SNES snes,Vec x,Vec f,void *ctx)
2181bbc1464cSBarry Smith {
2182bbc1464cSBarry Smith   DM             dm;
2183bbc1464cSBarry Smith   DMSNES         sdm;
2184bbc1464cSBarry Smith 
2185bbc1464cSBarry Smith   PetscFunctionBegin;
21869566063dSJacob Faibussowitsch   PetscCall(SNESGetDM(snes,&dm));
21879566063dSJacob Faibussowitsch   PetscCall(DMGetDMSNES(dm,&sdm));
21885f80ce2aSJacob Faibussowitsch   PetscCheck(sdm->ops->computepjacobian,PETSC_COMM_SELF,PETSC_ERR_ARG_WRONGSTATE, "Must call SNESSetPicard() to provide Picard Jacobian.");
2189bbc1464cSBarry Smith   /*  A(x)*x - b(x) */
2190bbc1464cSBarry Smith   if (sdm->ops->computepfunction) {
2191bbc1464cSBarry Smith     PetscStackPush("SNES Picard user function");
21929566063dSJacob Faibussowitsch     PetscCall((*sdm->ops->computepfunction)(snes,x,f,sdm->pctx));
2193bbc1464cSBarry Smith     PetscStackPop;
21949566063dSJacob Faibussowitsch     PetscCall(VecScale(f,-1.0));
2195bbc1464cSBarry Smith     if (!snes->picard) {
21960df40c35SBarry Smith       /* Cannot share nonzero pattern because of the possible use of SNESComputeJacobianDefault() */
21979566063dSJacob Faibussowitsch       PetscCall(MatDuplicate(snes->jacobian_pre,MAT_DO_NOT_COPY_VALUES,&snes->picard));
2198bbc1464cSBarry Smith     }
2199bbc1464cSBarry Smith     PetscStackPush("SNES Picard user Jacobian");
22009566063dSJacob Faibussowitsch     PetscCall((*sdm->ops->computepjacobian)(snes,x,snes->picard,snes->picard,sdm->pctx));
2201bbc1464cSBarry Smith     PetscStackPop;
22029566063dSJacob Faibussowitsch     PetscCall(MatMultAdd(snes->picard,x,f,f));
2203bbc1464cSBarry Smith   } else {
2204bbc1464cSBarry Smith     PetscStackPush("SNES Picard user Jacobian");
22059566063dSJacob Faibussowitsch     PetscCall((*sdm->ops->computepjacobian)(snes,x,snes->picard,snes->picard,sdm->pctx));
2206bbc1464cSBarry Smith     PetscStackPop;
22079566063dSJacob Faibussowitsch     PetscCall(MatMult(snes->picard,x,f));
2208bbc1464cSBarry Smith   }
2209bbc1464cSBarry Smith   PetscFunctionReturn(0);
2210bbc1464cSBarry Smith }
2211bbc1464cSBarry Smith 
221225acbd8eSLisandro Dalcin PetscErrorCode SNESPicardComputeFunction(SNES snes,Vec x,Vec f,void *ctx)
22138b0a5094SBarry Smith {
2214e03ab78fSPeter Brune   DM             dm;
2215942e3340SBarry Smith   DMSNES         sdm;
22166cab3a1bSJed Brown 
22178b0a5094SBarry Smith   PetscFunctionBegin;
22189566063dSJacob Faibussowitsch   PetscCall(SNESGetDM(snes,&dm));
22199566063dSJacob Faibussowitsch   PetscCall(DMGetDMSNES(dm,&sdm));
22205f80ce2aSJacob Faibussowitsch   PetscCheck(sdm->ops->computepjacobian,PETSC_COMM_SELF,PETSC_ERR_ARG_WRONGSTATE, "Must call SNESSetPicard() to provide Picard Jacobian.");
22218b0a5094SBarry Smith   /*  A(x)*x - b(x) */
2222bbc1464cSBarry Smith   if (sdm->ops->computepfunction) {
222325acbd8eSLisandro Dalcin     PetscStackPush("SNES Picard user function");
22249566063dSJacob Faibussowitsch     PetscCall((*sdm->ops->computepfunction)(snes,x,f,sdm->pctx));
222525acbd8eSLisandro Dalcin     PetscStackPop;
22269566063dSJacob Faibussowitsch     PetscCall(VecScale(f,-1.0));
222725acbd8eSLisandro Dalcin     PetscStackPush("SNES Picard user Jacobian");
22289566063dSJacob Faibussowitsch     PetscCall((*sdm->ops->computepjacobian)(snes,x,snes->jacobian,snes->jacobian_pre,sdm->pctx));
222925acbd8eSLisandro Dalcin     PetscStackPop;
22309566063dSJacob Faibussowitsch     PetscCall(MatMultAdd(snes->jacobian_pre,x,f,f));
2231bbc1464cSBarry Smith   } else {
2232bbc1464cSBarry Smith     PetscStackPush("SNES Picard user Jacobian");
22339566063dSJacob Faibussowitsch     PetscCall((*sdm->ops->computepjacobian)(snes,x,snes->jacobian,snes->jacobian_pre,sdm->pctx));
2234bbc1464cSBarry Smith     PetscStackPop;
22359566063dSJacob Faibussowitsch     PetscCall(MatMult(snes->jacobian_pre,x,f));
2236bbc1464cSBarry Smith   }
22378b0a5094SBarry Smith   PetscFunctionReturn(0);
22388b0a5094SBarry Smith }
22398b0a5094SBarry Smith 
224025acbd8eSLisandro Dalcin PetscErrorCode SNESPicardComputeJacobian(SNES snes,Vec x1,Mat J,Mat B,void *ctx)
22418b0a5094SBarry Smith {
22428b0a5094SBarry Smith   PetscFunctionBegin;
2243e03ab78fSPeter Brune   /* the jacobian matrix should be pre-filled in SNESPicardComputeFunction */
2244bbc1464cSBarry Smith   /* must assembly if matrix-free to get the last SNES solution */
22459566063dSJacob Faibussowitsch   PetscCall(MatAssemblyBegin(J,MAT_FINAL_ASSEMBLY));
22469566063dSJacob Faibussowitsch   PetscCall(MatAssemblyEnd(J,MAT_FINAL_ASSEMBLY));
22478b0a5094SBarry Smith   PetscFunctionReturn(0);
22488b0a5094SBarry Smith }
22498b0a5094SBarry Smith 
22508b0a5094SBarry Smith /*@C
2251bbc1464cSBarry Smith    SNESSetPicard - Use SNES to solve the system A(x) x = bp(x) + b via a Picard type iteration (Picard linearization)
22528b0a5094SBarry Smith 
22538b0a5094SBarry Smith    Logically Collective on SNES
22548b0a5094SBarry Smith 
22558b0a5094SBarry Smith    Input Parameters:
22568b0a5094SBarry Smith +  snes - the SNES context
22576b7fb656SBarry Smith .  r - vector to store function values, may be NULL
22586b7fb656SBarry Smith .  bp - function evaluation routine, may be NULL
22596b7fb656SBarry Smith .  Amat - matrix with which A(x) x - bp(x) - b is to be computed
2260e5d3d808SBarry Smith .  Pmat - matrix from which preconditioner is computed (usually the same as Amat)
22616b7fb656SBarry Smith .  J  - function to compute matrix values, see SNESJacobianFunction() for details on its calling sequence
22626b7fb656SBarry Smith -  ctx - [optional] user-defined context for private data for the function evaluation routine (may be NULL)
22638b0a5094SBarry Smith 
22648b0a5094SBarry Smith    Notes:
22656b7fb656SBarry Smith     It is often better to provide the nonlinear function F() and some approximation to its Jacobian directly and use
2266f450aa47SBarry 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.
2267f450aa47SBarry Smith 
22688b0a5094SBarry Smith     One can call SNESSetPicard() or SNESSetFunction() (and possibly SNESSetJacobian()) but cannot call both
22698b0a5094SBarry Smith 
22706b7fb656SBarry Smith $     Solves the equation A(x) x = bp(x) - b via the defect correction algorithm A(x^{n}) (x^{n+1} - x^{n}) = bp(x^{n}) + b - A(x^{n})x^{n}
22716b7fb656SBarry Smith $     Note that when an exact solver is used this corresponds to the "classic" Picard A(x^{n}) x^{n+1} = bp(x^{n}) + b iteration.
22728b0a5094SBarry Smith 
22738b0a5094SBarry Smith      Run with -snes_mf_operator to solve the system with Newton's method using A(x^{n}) to construct the preconditioner.
22748b0a5094SBarry Smith 
22750d04baf8SBarry Smith    We implement the defect correction form of the Picard iteration because it converges much more generally when inexact linear solvers are used then
22766b7fb656SBarry Smith    the direct Picard iteration A(x^n) x^{n+1} = bp(x^n) + b
22778b0a5094SBarry Smith 
22788b0a5094SBarry 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
22798b0a5094SBarry 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
22808b0a5094SBarry Smith    different please contact us at petsc-dev@mcs.anl.gov and we'll have an entirely new argument :-).
22818b0a5094SBarry Smith 
22826b7fb656SBarry Smith    When used with -snes_mf_operator this will run matrix-free Newton's method where the matrix-vector product is of the true Jacobian of A(x)x - bp(x) -b.
22836b7fb656SBarry Smith 
22846b7fb656SBarry Smith    When used with -snes_fd this will compute the true Jacobian (very slowly one column at at time) and thus represent Newton's method.
22856b7fb656SBarry Smith 
22866b7fb656SBarry Smith    When used with -snes_fd_coloring this will compute the Jacobian via coloring and thus represent a faster implementation of Newton's method. But the
22876b7fb656SBarry Smith    the nonzero structure of the Jacobian is, in general larger than that of the Picard matrix A so you must provide in A the needed nonzero structure for the correct
22886b7fb656SBarry Smith    coloring. When using DMDA this may mean creating the matrix A with DMCreateMatrix() using a wider stencil than strictly needed for A or with a DMDA_STENCIL_BOX.
22896b7fb656SBarry Smith    See the commment in src/snes/tutorials/ex15.c.
2290bbc1464cSBarry Smith 
2291f450aa47SBarry Smith    Level: intermediate
22928b0a5094SBarry Smith 
2293db781477SPatrick Sanan .seealso: `SNESGetFunction()`, `SNESSetFunction()`, `SNESComputeFunction()`, `SNESSetJacobian()`, `SNESGetPicard()`, `SNESLineSearchPreCheckPicard()`, `SNESJacobianFunction`
22948b0a5094SBarry Smith @*/
2295bbc1464cSBarry Smith PetscErrorCode  SNESSetPicard(SNES snes,Vec r,PetscErrorCode (*bp)(SNES,Vec,Vec,void*),Mat Amat, Mat Pmat, PetscErrorCode (*J)(SNES,Vec,Mat,Mat,void*),void *ctx)
22968b0a5094SBarry Smith {
2297e03ab78fSPeter Brune   DM             dm;
2298e03ab78fSPeter Brune 
22998b0a5094SBarry Smith   PetscFunctionBegin;
23008b0a5094SBarry Smith   PetscValidHeaderSpecific(snes,SNES_CLASSID,1);
23019566063dSJacob Faibussowitsch   PetscCall(SNESGetDM(snes, &dm));
23029566063dSJacob Faibussowitsch   PetscCall(DMSNESSetPicard(dm,bp,J,ctx));
23039566063dSJacob Faibussowitsch   PetscCall(DMSNESSetMFFunction(dm,SNESPicardComputeMFFunction,ctx));
23049566063dSJacob Faibussowitsch   PetscCall(SNESSetFunction(snes,r,SNESPicardComputeFunction,ctx));
23059566063dSJacob Faibussowitsch   PetscCall(SNESSetJacobian(snes,Amat,Pmat,SNESPicardComputeJacobian,ctx));
23068b0a5094SBarry Smith   PetscFunctionReturn(0);
23078b0a5094SBarry Smith }
23088b0a5094SBarry Smith 
23097971a8bfSPeter Brune /*@C
23107971a8bfSPeter Brune    SNESGetPicard - Returns the context for the Picard iteration
23117971a8bfSPeter Brune 
23127971a8bfSPeter Brune    Not Collective, but Vec is parallel if SNES is parallel. Collective if Vec is requested, but has not been created yet.
23137971a8bfSPeter Brune 
23147971a8bfSPeter Brune    Input Parameter:
23157971a8bfSPeter Brune .  snes - the SNES context
23167971a8bfSPeter Brune 
2317d8d19677SJose E. Roman    Output Parameters:
23180298fd71SBarry Smith +  r - the function (or NULL)
2319f8b49ee9SBarry Smith .  f - the function (or NULL); see SNESFunction for calling sequence details
2320e4357dc4SBarry Smith .  Amat - the matrix used to defined the operation A(x) x - b(x) (or NULL)
2321e4357dc4SBarry Smith .  Pmat  - the matrix from which the preconditioner will be constructed (or NULL)
2322f8b49ee9SBarry Smith .  J - the function for matrix evaluation (or NULL); see SNESJacobianFunction for calling sequence details
23230298fd71SBarry Smith -  ctx - the function context (or NULL)
23247971a8bfSPeter Brune 
23257971a8bfSPeter Brune    Level: advanced
23267971a8bfSPeter Brune 
2327db781477SPatrick Sanan .seealso: `SNESSetPicard()`, `SNESGetFunction()`, `SNESGetJacobian()`, `SNESGetDM()`, `SNESFunction`, `SNESJacobianFunction`
23287971a8bfSPeter Brune @*/
2329d1e9a80fSBarry 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)
23307971a8bfSPeter Brune {
23317971a8bfSPeter Brune   DM             dm;
23327971a8bfSPeter Brune 
23337971a8bfSPeter Brune   PetscFunctionBegin;
23347971a8bfSPeter Brune   PetscValidHeaderSpecific(snes,SNES_CLASSID,1);
23359566063dSJacob Faibussowitsch   PetscCall(SNESGetFunction(snes,r,NULL,NULL));
23369566063dSJacob Faibussowitsch   PetscCall(SNESGetJacobian(snes,Amat,Pmat,NULL,NULL));
23379566063dSJacob Faibussowitsch   PetscCall(SNESGetDM(snes,&dm));
23389566063dSJacob Faibussowitsch   PetscCall(DMSNESGetPicard(dm,f,J,ctx));
23397971a8bfSPeter Brune   PetscFunctionReturn(0);
23407971a8bfSPeter Brune }
23417971a8bfSPeter Brune 
2342d25893d9SBarry Smith /*@C
2343d25893d9SBarry Smith    SNESSetComputeInitialGuess - Sets a routine used to compute an initial guess for the problem
2344d25893d9SBarry Smith 
2345d25893d9SBarry Smith    Logically Collective on SNES
2346d25893d9SBarry Smith 
2347d25893d9SBarry Smith    Input Parameters:
2348d25893d9SBarry Smith +  snes - the SNES context
2349d25893d9SBarry Smith .  func - function evaluation routine
2350d25893d9SBarry Smith -  ctx - [optional] user-defined context for private data for the
23510298fd71SBarry Smith          function evaluation routine (may be NULL)
2352d25893d9SBarry Smith 
2353d25893d9SBarry Smith    Calling sequence of func:
2354d25893d9SBarry Smith $    func (SNES snes,Vec x,void *ctx);
2355d25893d9SBarry Smith 
2356d25893d9SBarry Smith .  f - function vector
2357d25893d9SBarry Smith -  ctx - optional user-defined function context
2358d25893d9SBarry Smith 
2359d25893d9SBarry Smith    Level: intermediate
2360d25893d9SBarry Smith 
2361db781477SPatrick Sanan .seealso: `SNESGetFunction()`, `SNESComputeFunction()`, `SNESSetJacobian()`
2362d25893d9SBarry Smith @*/
2363d25893d9SBarry Smith PetscErrorCode  SNESSetComputeInitialGuess(SNES snes,PetscErrorCode (*func)(SNES,Vec,void*),void *ctx)
2364d25893d9SBarry Smith {
2365d25893d9SBarry Smith   PetscFunctionBegin;
2366d25893d9SBarry Smith   PetscValidHeaderSpecific(snes,SNES_CLASSID,1);
2367d25893d9SBarry Smith   if (func) snes->ops->computeinitialguess = func;
2368d25893d9SBarry Smith   if (ctx)  snes->initialguessP            = ctx;
2369d25893d9SBarry Smith   PetscFunctionReturn(0);
2370d25893d9SBarry Smith }
2371d25893d9SBarry Smith 
23723ab0aad5SBarry Smith /* --------------------------------------------------------------- */
23731096aae1SMatthew Knepley /*@C
23741096aae1SMatthew Knepley    SNESGetRhs - Gets the vector for solving F(x) = rhs. If rhs is not set
23751096aae1SMatthew Knepley    it assumes a zero right hand side.
23761096aae1SMatthew Knepley 
23773f9fe445SBarry Smith    Logically Collective on SNES
23781096aae1SMatthew Knepley 
23791096aae1SMatthew Knepley    Input Parameter:
23801096aae1SMatthew Knepley .  snes - the SNES context
23811096aae1SMatthew Knepley 
23821096aae1SMatthew Knepley    Output Parameter:
23830298fd71SBarry Smith .  rhs - the right hand side vector or NULL if the right hand side vector is null
23841096aae1SMatthew Knepley 
23851096aae1SMatthew Knepley    Level: intermediate
23861096aae1SMatthew Knepley 
2387db781477SPatrick Sanan .seealso: `SNESGetSolution()`, `SNESGetFunction()`, `SNESComputeFunction()`, `SNESSetJacobian()`, `SNESSetFunction()`
23881096aae1SMatthew Knepley @*/
23897087cfbeSBarry Smith PetscErrorCode  SNESGetRhs(SNES snes,Vec *rhs)
23901096aae1SMatthew Knepley {
23911096aae1SMatthew Knepley   PetscFunctionBegin;
23920700a824SBarry Smith   PetscValidHeaderSpecific(snes,SNES_CLASSID,1);
23931096aae1SMatthew Knepley   PetscValidPointer(rhs,2);
239485385478SLisandro Dalcin   *rhs = snes->vec_rhs;
23951096aae1SMatthew Knepley   PetscFunctionReturn(0);
23961096aae1SMatthew Knepley }
23971096aae1SMatthew Knepley 
23989b94acceSBarry Smith /*@
2399bf388a1fSBarry Smith    SNESComputeFunction - Calls the function that has been set with SNESSetFunction().
24009b94acceSBarry Smith 
2401c7afd0dbSLois Curfman McInnes    Collective on SNES
2402c7afd0dbSLois Curfman McInnes 
24039b94acceSBarry Smith    Input Parameters:
2404c7afd0dbSLois Curfman McInnes +  snes - the SNES context
2405c7afd0dbSLois Curfman McInnes -  x - input vector
24069b94acceSBarry Smith 
24079b94acceSBarry Smith    Output Parameter:
24083638b69dSLois Curfman McInnes .  y - function vector, as set by SNESSetFunction()
24099b94acceSBarry Smith 
24101bffabb2SLois Curfman McInnes    Notes:
241136851e7fSLois Curfman McInnes    SNESComputeFunction() is typically used within nonlinear solvers
2412bbc1464cSBarry Smith    implementations, so users would not generally call this routine themselves.
241336851e7fSLois Curfman McInnes 
241436851e7fSLois Curfman McInnes    Level: developer
241536851e7fSLois Curfman McInnes 
2416db781477SPatrick Sanan .seealso: `SNESSetFunction()`, `SNESGetFunction()`, `SNESComputeMFFunction()`
24179b94acceSBarry Smith @*/
24187087cfbeSBarry Smith PetscErrorCode  SNESComputeFunction(SNES snes,Vec x,Vec y)
24199b94acceSBarry Smith {
24206cab3a1bSJed Brown   DM             dm;
2421942e3340SBarry Smith   DMSNES         sdm;
24229b94acceSBarry Smith 
24233a40ed3dSBarry Smith   PetscFunctionBegin;
24240700a824SBarry Smith   PetscValidHeaderSpecific(snes,SNES_CLASSID,1);
24250700a824SBarry Smith   PetscValidHeaderSpecific(x,VEC_CLASSID,2);
24260700a824SBarry Smith   PetscValidHeaderSpecific(y,VEC_CLASSID,3);
2427c9780b6fSBarry Smith   PetscCheckSameComm(snes,1,x,2);
2428c9780b6fSBarry Smith   PetscCheckSameComm(snes,1,y,3);
24299566063dSJacob Faibussowitsch   PetscCall(VecValidValues(x,2,PETSC_TRUE));
2430184914b5SBarry Smith 
24319566063dSJacob Faibussowitsch   PetscCall(SNESGetDM(snes,&dm));
24329566063dSJacob Faibussowitsch   PetscCall(DMGetDMSNES(dm,&sdm));
243332f3f7c2SPeter Brune   if (sdm->ops->computefunction) {
243494db00ebSBarry Smith     if (sdm->ops->computefunction != SNESObjectiveComputeFunctionDefaultFD) {
24359566063dSJacob Faibussowitsch       PetscCall(PetscLogEventBegin(SNES_FunctionEval,snes,x,y,0));
243694db00ebSBarry Smith     }
24379566063dSJacob Faibussowitsch     PetscCall(VecLockReadPush(x));
2438d64ed03dSBarry Smith     PetscStackPush("SNES user function");
24398ddeebeaSSteve Benbow     /* ensure domainerror is false prior to computefunction evaluation (may not have been reset) */
24408ddeebeaSSteve Benbow     snes->domainerror = PETSC_FALSE;
24419566063dSJacob Faibussowitsch     PetscCall((*sdm->ops->computefunction)(snes,x,y,sdm->functionctx));
2442d64ed03dSBarry Smith     PetscStackPop;
24439566063dSJacob Faibussowitsch     PetscCall(VecLockReadPop(x));
244494db00ebSBarry Smith     if (sdm->ops->computefunction != SNESObjectiveComputeFunctionDefaultFD) {
24459566063dSJacob Faibussowitsch       PetscCall(PetscLogEventEnd(SNES_FunctionEval,snes,x,y,0));
244694db00ebSBarry Smith     }
2447c90fad12SPeter Brune   } else if (snes->vec_rhs) {
24489566063dSJacob Faibussowitsch     PetscCall(MatMult(snes->jacobian, x, y));
2449644e2e5bSBarry Smith   } else SETERRQ(PETSC_COMM_SELF,PETSC_ERR_ARG_WRONGSTATE, "Must call SNESSetFunction() or SNESSetDM() before SNESComputeFunction(), likely called from SNESSolve().");
245085385478SLisandro Dalcin   if (snes->vec_rhs) {
24519566063dSJacob Faibussowitsch     PetscCall(VecAXPY(y,-1.0,snes->vec_rhs));
24523ab0aad5SBarry Smith   }
2453ae3c334cSLois Curfman McInnes   snes->nfuncs++;
2454422a814eSBarry Smith   /*
2455422a814eSBarry Smith      domainerror might not be set on all processes; so we tag vector locally with Inf and the next inner product or norm will
2456422a814eSBarry Smith      propagate the value to all processes
2457422a814eSBarry Smith   */
2458422a814eSBarry Smith   if (snes->domainerror) {
24599566063dSJacob Faibussowitsch     PetscCall(VecSetInf(y));
2460422a814eSBarry Smith   }
24613a40ed3dSBarry Smith   PetscFunctionReturn(0);
24629b94acceSBarry Smith }
24639b94acceSBarry Smith 
2464c79ef259SPeter Brune /*@
2465bbc1464cSBarry Smith    SNESComputeMFFunction - Calls the function that has been set with SNESSetMFFunction().
2466bbc1464cSBarry Smith 
2467bbc1464cSBarry Smith    Collective on SNES
2468bbc1464cSBarry Smith 
2469bbc1464cSBarry Smith    Input Parameters:
2470bbc1464cSBarry Smith +  snes - the SNES context
2471bbc1464cSBarry Smith -  x - input vector
2472bbc1464cSBarry Smith 
2473bbc1464cSBarry Smith    Output Parameter:
2474bbc1464cSBarry Smith .  y - function vector, as set by SNESSetMFFunction()
2475bbc1464cSBarry Smith 
2476bbc1464cSBarry Smith    Notes:
2477bbc1464cSBarry Smith        SNESComputeMFFunction() is used within the matrix vector products called by the matrix created with MatCreateSNESMF()
2478bbc1464cSBarry Smith    so users would not generally call this routine themselves.
2479bbc1464cSBarry Smith 
2480bbc1464cSBarry Smith        Since this function is intended for use with finite differencing it does not subtract the right hand side vector provided with SNESSolve()
2481bbc1464cSBarry Smith     while SNESComputeFunction() does. As such, this routine cannot be used with  MatMFFDSetBase() with a provided F function value even if it applies the
2482bbc1464cSBarry Smith     same function as SNESComputeFunction() if a SNESSolve() right hand side vector is use because the two functions difference would include this right hand side function.
2483bbc1464cSBarry Smith 
2484bbc1464cSBarry Smith    Level: developer
2485bbc1464cSBarry Smith 
2486db781477SPatrick Sanan .seealso: `SNESSetFunction()`, `SNESGetFunction()`, `SNESComputeFunction()`, `MatCreateSNESMF`
2487bbc1464cSBarry Smith @*/
2488bbc1464cSBarry Smith PetscErrorCode  SNESComputeMFFunction(SNES snes,Vec x,Vec y)
2489bbc1464cSBarry Smith {
2490bbc1464cSBarry Smith   DM             dm;
2491bbc1464cSBarry Smith   DMSNES         sdm;
2492bbc1464cSBarry Smith 
2493bbc1464cSBarry Smith   PetscFunctionBegin;
2494bbc1464cSBarry Smith   PetscValidHeaderSpecific(snes,SNES_CLASSID,1);
2495bbc1464cSBarry Smith   PetscValidHeaderSpecific(x,VEC_CLASSID,2);
2496bbc1464cSBarry Smith   PetscValidHeaderSpecific(y,VEC_CLASSID,3);
2497bbc1464cSBarry Smith   PetscCheckSameComm(snes,1,x,2);
2498bbc1464cSBarry Smith   PetscCheckSameComm(snes,1,y,3);
24999566063dSJacob Faibussowitsch   PetscCall(VecValidValues(x,2,PETSC_TRUE));
2500bbc1464cSBarry Smith 
25019566063dSJacob Faibussowitsch   PetscCall(SNESGetDM(snes,&dm));
25029566063dSJacob Faibussowitsch   PetscCall(DMGetDMSNES(dm,&sdm));
25039566063dSJacob Faibussowitsch   PetscCall(PetscLogEventBegin(SNES_FunctionEval,snes,x,y,0));
25049566063dSJacob Faibussowitsch   PetscCall(VecLockReadPush(x));
2505bbc1464cSBarry Smith   PetscStackPush("SNES user function");
2506bbc1464cSBarry Smith   /* ensure domainerror is false prior to computefunction evaluation (may not have been reset) */
2507bbc1464cSBarry Smith   snes->domainerror = PETSC_FALSE;
25089566063dSJacob Faibussowitsch   PetscCall((*sdm->ops->computemffunction)(snes,x,y,sdm->mffunctionctx));
2509bbc1464cSBarry Smith   PetscStackPop;
25109566063dSJacob Faibussowitsch   PetscCall(VecLockReadPop(x));
25119566063dSJacob Faibussowitsch   PetscCall(PetscLogEventEnd(SNES_FunctionEval,snes,x,y,0));
2512bbc1464cSBarry Smith   snes->nfuncs++;
2513bbc1464cSBarry Smith   /*
2514bbc1464cSBarry Smith      domainerror might not be set on all processes; so we tag vector locally with Inf and the next inner product or norm will
2515bbc1464cSBarry Smith      propagate the value to all processes
2516bbc1464cSBarry Smith   */
2517bbc1464cSBarry Smith   if (snes->domainerror) {
25189566063dSJacob Faibussowitsch     PetscCall(VecSetInf(y));
2519bbc1464cSBarry Smith   }
2520bbc1464cSBarry Smith   PetscFunctionReturn(0);
2521bbc1464cSBarry Smith }
2522bbc1464cSBarry Smith 
2523bbc1464cSBarry Smith /*@
2524be95d8f1SBarry Smith    SNESComputeNGS - Calls the Gauss-Seidel function that has been set with  SNESSetNGS().
2525c79ef259SPeter Brune 
2526c79ef259SPeter Brune    Collective on SNES
2527c79ef259SPeter Brune 
2528c79ef259SPeter Brune    Input Parameters:
2529c79ef259SPeter Brune +  snes - the SNES context
2530c79ef259SPeter Brune .  x - input vector
2531c79ef259SPeter Brune -  b - rhs vector
2532c79ef259SPeter Brune 
2533c79ef259SPeter Brune    Output Parameter:
2534c79ef259SPeter Brune .  x - new solution vector
2535c79ef259SPeter Brune 
2536c79ef259SPeter Brune    Notes:
2537be95d8f1SBarry Smith    SNESComputeNGS() is typically used within composed nonlinear solver
2538c79ef259SPeter Brune    implementations, so most users would not generally call this routine
2539c79ef259SPeter Brune    themselves.
2540c79ef259SPeter Brune 
2541c79ef259SPeter Brune    Level: developer
2542c79ef259SPeter Brune 
2543db781477SPatrick Sanan .seealso: `SNESSetNGS()`, `SNESComputeFunction()`
2544c79ef259SPeter Brune @*/
2545be95d8f1SBarry Smith PetscErrorCode  SNESComputeNGS(SNES snes,Vec b,Vec x)
2546646217ecSPeter Brune {
25476cab3a1bSJed Brown   DM             dm;
2548942e3340SBarry Smith   DMSNES         sdm;
2549646217ecSPeter Brune 
2550646217ecSPeter Brune   PetscFunctionBegin;
2551646217ecSPeter Brune   PetscValidHeaderSpecific(snes,SNES_CLASSID,1);
2552064a246eSJacob Faibussowitsch   PetscValidHeaderSpecific(x,VEC_CLASSID,3);
2553064a246eSJacob Faibussowitsch   if (b) PetscValidHeaderSpecific(b,VEC_CLASSID,2);
2554064a246eSJacob Faibussowitsch   PetscCheckSameComm(snes,1,x,3);
2555064a246eSJacob Faibussowitsch   if (b) PetscCheckSameComm(snes,1,b,2);
25569566063dSJacob Faibussowitsch   if (b) PetscCall(VecValidValues(b,2,PETSC_TRUE));
25579566063dSJacob Faibussowitsch   PetscCall(PetscLogEventBegin(SNES_NGSEval,snes,x,b,0));
25589566063dSJacob Faibussowitsch   PetscCall(SNESGetDM(snes,&dm));
25599566063dSJacob Faibussowitsch   PetscCall(DMGetDMSNES(dm,&sdm));
256022c6f798SBarry Smith   if (sdm->ops->computegs) {
25619566063dSJacob Faibussowitsch     if (b) PetscCall(VecLockReadPush(b));
2562be95d8f1SBarry Smith     PetscStackPush("SNES user NGS");
25639566063dSJacob Faibussowitsch     PetscCall((*sdm->ops->computegs)(snes,x,b,sdm->gsctx));
2564646217ecSPeter Brune     PetscStackPop;
25659566063dSJacob Faibussowitsch     if (b) PetscCall(VecLockReadPop(b));
2566be95d8f1SBarry Smith   } else SETERRQ(PETSC_COMM_SELF,PETSC_ERR_ARG_WRONGSTATE, "Must call SNESSetNGS() before SNESComputeNGS(), likely called from SNESSolve().");
25679566063dSJacob Faibussowitsch   PetscCall(PetscLogEventEnd(SNES_NGSEval,snes,x,b,0));
2568646217ecSPeter Brune   PetscFunctionReturn(0);
2569646217ecSPeter Brune }
2570646217ecSPeter Brune 
2571e885f1abSBarry Smith PetscErrorCode SNESTestJacobian(SNES snes)
2572e885f1abSBarry Smith {
257312837594SBarry Smith   Mat               A,B,C,D,jacobian;
2574e885f1abSBarry Smith   Vec               x = snes->vec_sol,f = snes->vec_func;
2575e885f1abSBarry Smith   PetscReal         nrm,gnorm;
257681e7118cSBarry Smith   PetscReal         threshold = 1.e-5;
25770e276705SLisandro Dalcin   MatType           mattype;
2578e885f1abSBarry Smith   PetscInt          m,n,M,N;
2579e885f1abSBarry Smith   void              *functx;
25802cd624f9SStefano Zampini   PetscBool         complete_print = PETSC_FALSE,threshold_print = PETSC_FALSE,test = PETSC_FALSE,flg,istranspose;
25813325ff46SBarry Smith   PetscViewer       viewer,mviewer;
2582e885f1abSBarry Smith   MPI_Comm          comm;
2583e885f1abSBarry Smith   PetscInt          tabs;
258412837594SBarry Smith   static PetscBool  directionsprinted = PETSC_FALSE;
25853325ff46SBarry Smith   PetscViewerFormat format;
2586e885f1abSBarry Smith 
2587e885f1abSBarry Smith   PetscFunctionBegin;
2588d0609cedSBarry Smith   PetscObjectOptionsBegin((PetscObject)snes);
25899566063dSJacob Faibussowitsch   PetscCall(PetscOptionsName("-snes_test_jacobian","Compare hand-coded and finite difference Jacobians","None",&test));
25909566063dSJacob Faibussowitsch   PetscCall(PetscOptionsReal("-snes_test_jacobian", "Threshold for element difference between hand-coded and finite difference being meaningful", "None", threshold, &threshold,NULL));
25919566063dSJacob Faibussowitsch   PetscCall(PetscOptionsViewer("-snes_test_jacobian_view","View difference between hand-coded and finite difference Jacobians element entries","None",&mviewer,&format,&complete_print));
259218d89885SKarl Rupp   if (!complete_print) {
25939566063dSJacob Faibussowitsch     PetscCall(PetscOptionsDeprecated("-snes_test_jacobian_display","-snes_test_jacobian_view","3.13",NULL));
25949566063dSJacob Faibussowitsch     PetscCall(PetscOptionsViewer("-snes_test_jacobian_display","Display difference between hand-coded and finite difference Jacobians","None",&mviewer,&format,&complete_print));
259518d89885SKarl Rupp   }
259618d89885SKarl Rupp   /* for compatibility with PETSc 3.9 and older. */
25979566063dSJacob Faibussowitsch   PetscCall(PetscOptionsDeprecated("-snes_test_jacobian_display_threshold","-snes_test_jacobian","3.13","-snes_test_jacobian accepts an optional threshold (since v3.10)"));
25989566063dSJacob Faibussowitsch   PetscCall(PetscOptionsReal("-snes_test_jacobian_display_threshold", "Display difference between hand-coded and finite difference Jacobians which exceed input threshold", "None", threshold, &threshold, &threshold_print));
2599d0609cedSBarry Smith   PetscOptionsEnd();
2600e885f1abSBarry Smith   if (!test) PetscFunctionReturn(0);
2601e885f1abSBarry Smith 
26029566063dSJacob Faibussowitsch   PetscCall(PetscObjectGetComm((PetscObject)snes,&comm));
26039566063dSJacob Faibussowitsch   PetscCall(PetscViewerASCIIGetStdout(comm,&viewer));
26049566063dSJacob Faibussowitsch   PetscCall(PetscViewerASCIIGetTab(viewer, &tabs));
26059566063dSJacob Faibussowitsch   PetscCall(PetscViewerASCIISetTab(viewer, ((PetscObject)snes)->tablevel));
26069566063dSJacob Faibussowitsch   PetscCall(PetscViewerASCIIPrintf(viewer,"  ---------- Testing Jacobian -------------\n"));
260712837594SBarry Smith   if (!complete_print && !directionsprinted) {
26089566063dSJacob Faibussowitsch     PetscCall(PetscViewerASCIIPrintf(viewer,"  Run with -snes_test_jacobian_view and optionally -snes_test_jacobian <threshold> to show difference\n"));
26099566063dSJacob Faibussowitsch     PetscCall(PetscViewerASCIIPrintf(viewer,"    of hand-coded and finite difference Jacobian entries greater than <threshold>.\n"));
261012837594SBarry Smith   }
261112837594SBarry Smith   if (!directionsprinted) {
26129566063dSJacob Faibussowitsch     PetscCall(PetscViewerASCIIPrintf(viewer,"  Testing hand-coded Jacobian, if (for double precision runs) ||J - Jfd||_F/||J||_F is\n"));
26139566063dSJacob Faibussowitsch     PetscCall(PetscViewerASCIIPrintf(viewer,"    O(1.e-8), the hand-coded Jacobian is probably correct.\n"));
261412837594SBarry Smith     directionsprinted = PETSC_TRUE;
2615e885f1abSBarry Smith   }
26163325ff46SBarry Smith   if (complete_print) {
26179566063dSJacob Faibussowitsch     PetscCall(PetscViewerPushFormat(mviewer,format));
2618e885f1abSBarry Smith   }
2619e885f1abSBarry Smith 
26209566063dSJacob Faibussowitsch   PetscCall(PetscObjectTypeCompare((PetscObject)snes->jacobian,MATMFFD,&flg));
262112837594SBarry Smith   if (!flg) jacobian = snes->jacobian;
262212837594SBarry Smith   else jacobian = snes->jacobian_pre;
262312837594SBarry Smith 
2624a82339d0SMatthew G. Knepley   if (!x) {
26259566063dSJacob Faibussowitsch     PetscCall(MatCreateVecs(jacobian, &x, NULL));
2626a82339d0SMatthew G. Knepley   } else {
26279566063dSJacob Faibussowitsch     PetscCall(PetscObjectReference((PetscObject) x));
2628a82339d0SMatthew G. Knepley   }
2629a82339d0SMatthew G. Knepley   if (!f) {
26309566063dSJacob Faibussowitsch     PetscCall(VecDuplicate(x, &f));
2631a82339d0SMatthew G. Knepley   } else {
26329566063dSJacob Faibussowitsch     PetscCall(PetscObjectReference((PetscObject) f));
2633a82339d0SMatthew G. Knepley   }
2634a82339d0SMatthew G. Knepley   /* evaluate the function at this point because SNESComputeJacobianDefault() assumes that the function has been evaluated and put into snes->vec_func */
26359566063dSJacob Faibussowitsch   PetscCall(SNESComputeFunction(snes,x,f));
26369566063dSJacob Faibussowitsch   PetscCall(VecDestroy(&f));
26379566063dSJacob Faibussowitsch   PetscCall(PetscObjectTypeCompare((PetscObject)snes,SNESKSPTRANSPOSEONLY,&istranspose));
263812837594SBarry Smith   while (jacobian) {
26392cd624f9SStefano Zampini     Mat JT = NULL, Jsave = NULL;
26402cd624f9SStefano Zampini 
26412cd624f9SStefano Zampini     if (istranspose) {
26429566063dSJacob Faibussowitsch       PetscCall(MatCreateTranspose(jacobian,&JT));
26432cd624f9SStefano Zampini       Jsave = jacobian;
26442cd624f9SStefano Zampini       jacobian = JT;
26452cd624f9SStefano Zampini     }
26469566063dSJacob Faibussowitsch     PetscCall(PetscObjectBaseTypeCompareAny((PetscObject)jacobian,&flg,MATSEQAIJ,MATMPIAIJ,MATSEQDENSE,MATMPIDENSE,MATSEQBAIJ,MATMPIBAIJ,MATSEQSBAIJ,MATMPISBAIJ,""));
264712837594SBarry Smith     if (flg) {
264812837594SBarry Smith       A    = jacobian;
26499566063dSJacob Faibussowitsch       PetscCall(PetscObjectReference((PetscObject)A));
265012837594SBarry Smith     } else {
26519566063dSJacob Faibussowitsch       PetscCall(MatComputeOperator(jacobian,MATAIJ,&A));
265212837594SBarry Smith     }
2653e885f1abSBarry Smith 
26549566063dSJacob Faibussowitsch     PetscCall(MatGetType(A,&mattype));
26559566063dSJacob Faibussowitsch     PetscCall(MatGetSize(A,&M,&N));
26569566063dSJacob Faibussowitsch     PetscCall(MatGetLocalSize(A,&m,&n));
26579566063dSJacob Faibussowitsch     PetscCall(MatCreate(PetscObjectComm((PetscObject)A),&B));
26589566063dSJacob Faibussowitsch     PetscCall(MatSetType(B,mattype));
26599566063dSJacob Faibussowitsch     PetscCall(MatSetSizes(B,m,n,M,N));
26609566063dSJacob Faibussowitsch     PetscCall(MatSetBlockSizesFromMats(B,A,A));
26619566063dSJacob Faibussowitsch     PetscCall(MatSetUp(B));
26629566063dSJacob Faibussowitsch     PetscCall(MatSetOption(B,MAT_NEW_NONZERO_ALLOCATION_ERR,PETSC_FALSE));
2663e885f1abSBarry Smith 
26649566063dSJacob Faibussowitsch     PetscCall(SNESGetFunction(snes,NULL,NULL,&functx));
26659566063dSJacob Faibussowitsch     PetscCall(SNESComputeJacobianDefault(snes,x,B,B,functx));
266612837594SBarry Smith 
26679566063dSJacob Faibussowitsch     PetscCall(MatDuplicate(B,MAT_COPY_VALUES,&D));
26689566063dSJacob Faibussowitsch     PetscCall(MatAYPX(D,-1.0,A,DIFFERENT_NONZERO_PATTERN));
26699566063dSJacob Faibussowitsch     PetscCall(MatNorm(D,NORM_FROBENIUS,&nrm));
26709566063dSJacob Faibussowitsch     PetscCall(MatNorm(A,NORM_FROBENIUS,&gnorm));
26719566063dSJacob Faibussowitsch     PetscCall(MatDestroy(&D));
267212837594SBarry Smith     if (!gnorm) gnorm = 1; /* just in case */
26739566063dSJacob Faibussowitsch     PetscCall(PetscViewerASCIIPrintf(viewer,"  ||J - Jfd||_F/||J||_F = %g, ||J - Jfd||_F = %g\n",(double)(nrm/gnorm),(double)nrm));
267412837594SBarry Smith 
2675e885f1abSBarry Smith     if (complete_print) {
26769566063dSJacob Faibussowitsch       PetscCall(PetscViewerASCIIPrintf(viewer,"  Hand-coded Jacobian ----------\n"));
26779566063dSJacob Faibussowitsch       PetscCall(MatView(A,mviewer));
26789566063dSJacob Faibussowitsch       PetscCall(PetscViewerASCIIPrintf(viewer,"  Finite difference Jacobian ----------\n"));
26799566063dSJacob Faibussowitsch       PetscCall(MatView(B,mviewer));
2680e885f1abSBarry Smith     }
2681e885f1abSBarry Smith 
2682df10fb39SFande Kong     if (threshold_print || complete_print) {
2683e885f1abSBarry Smith       PetscInt          Istart, Iend, *ccols, bncols, cncols, j, row;
2684e885f1abSBarry Smith       PetscScalar       *cvals;
2685e885f1abSBarry Smith       const PetscInt    *bcols;
2686e885f1abSBarry Smith       const PetscScalar *bvals;
2687e885f1abSBarry Smith 
26889566063dSJacob Faibussowitsch       PetscCall(MatCreate(PetscObjectComm((PetscObject)A),&C));
26899566063dSJacob Faibussowitsch       PetscCall(MatSetType(C,mattype));
26909566063dSJacob Faibussowitsch       PetscCall(MatSetSizes(C,m,n,M,N));
26919566063dSJacob Faibussowitsch       PetscCall(MatSetBlockSizesFromMats(C,A,A));
26929566063dSJacob Faibussowitsch       PetscCall(MatSetUp(C));
26939566063dSJacob Faibussowitsch       PetscCall(MatSetOption(C,MAT_NEW_NONZERO_ALLOCATION_ERR,PETSC_FALSE));
26940e276705SLisandro Dalcin 
26959566063dSJacob Faibussowitsch       PetscCall(MatAYPX(B,-1.0,A,DIFFERENT_NONZERO_PATTERN));
26969566063dSJacob Faibussowitsch       PetscCall(MatGetOwnershipRange(B,&Istart,&Iend));
2697e885f1abSBarry Smith 
2698e885f1abSBarry Smith       for (row = Istart; row < Iend; row++) {
26999566063dSJacob Faibussowitsch         PetscCall(MatGetRow(B,row,&bncols,&bcols,&bvals));
27009566063dSJacob Faibussowitsch         PetscCall(PetscMalloc2(bncols,&ccols,bncols,&cvals));
2701e885f1abSBarry Smith         for (j = 0, cncols = 0; j < bncols; j++) {
270223a52b1dSBarry Smith           if (PetscAbsScalar(bvals[j]) > threshold) {
2703e885f1abSBarry Smith             ccols[cncols] = bcols[j];
2704e885f1abSBarry Smith             cvals[cncols] = bvals[j];
2705e885f1abSBarry Smith             cncols += 1;
2706e885f1abSBarry Smith           }
2707e885f1abSBarry Smith         }
2708e885f1abSBarry Smith         if (cncols) {
27099566063dSJacob Faibussowitsch           PetscCall(MatSetValues(C,1,&row,cncols,ccols,cvals,INSERT_VALUES));
2710e885f1abSBarry Smith         }
27119566063dSJacob Faibussowitsch         PetscCall(MatRestoreRow(B,row,&bncols,&bcols,&bvals));
27129566063dSJacob Faibussowitsch         PetscCall(PetscFree2(ccols,cvals));
2713e885f1abSBarry Smith       }
27149566063dSJacob Faibussowitsch       PetscCall(MatAssemblyBegin(C,MAT_FINAL_ASSEMBLY));
27159566063dSJacob Faibussowitsch       PetscCall(MatAssemblyEnd(C,MAT_FINAL_ASSEMBLY));
27169566063dSJacob Faibussowitsch       PetscCall(PetscViewerASCIIPrintf(viewer,"  Hand-coded minus finite-difference Jacobian with tolerance %g ----------\n",(double)threshold));
27179566063dSJacob Faibussowitsch       PetscCall(MatView(C,complete_print ? mviewer : viewer));
27189566063dSJacob Faibussowitsch       PetscCall(MatDestroy(&C));
2719e885f1abSBarry Smith     }
27209566063dSJacob Faibussowitsch     PetscCall(MatDestroy(&A));
27219566063dSJacob Faibussowitsch     PetscCall(MatDestroy(&B));
27229566063dSJacob Faibussowitsch     PetscCall(MatDestroy(&JT));
27232cd624f9SStefano Zampini     if (Jsave) jacobian = Jsave;
272412837594SBarry Smith     if (jacobian != snes->jacobian_pre) {
272512837594SBarry Smith       jacobian = snes->jacobian_pre;
27269566063dSJacob Faibussowitsch       PetscCall(PetscViewerASCIIPrintf(viewer,"  ---------- Testing Jacobian for preconditioner -------------\n"));
272712837594SBarry Smith     }
272812837594SBarry Smith     else jacobian = NULL;
272912837594SBarry Smith   }
27309566063dSJacob Faibussowitsch   PetscCall(VecDestroy(&x));
27313325ff46SBarry Smith   if (complete_print) {
27329566063dSJacob Faibussowitsch     PetscCall(PetscViewerPopFormat(mviewer));
27333325ff46SBarry Smith   }
27349566063dSJacob Faibussowitsch   if (mviewer) PetscCall(PetscViewerDestroy(&mviewer));
27359566063dSJacob Faibussowitsch   PetscCall(PetscViewerASCIISetTab(viewer,tabs));
2736e885f1abSBarry Smith   PetscFunctionReturn(0);
2737e885f1abSBarry Smith }
2738e885f1abSBarry Smith 
273962fef451SLois Curfman McInnes /*@
2740bf388a1fSBarry Smith    SNESComputeJacobian - Computes the Jacobian matrix that has been set with SNESSetJacobian().
274162fef451SLois Curfman McInnes 
2742d083f849SBarry Smith    Collective on SNES
2743c7afd0dbSLois Curfman McInnes 
274462fef451SLois Curfman McInnes    Input Parameters:
2745c7afd0dbSLois Curfman McInnes +  snes - the SNES context
2746c7afd0dbSLois Curfman McInnes -  x - input vector
274762fef451SLois Curfman McInnes 
274862fef451SLois Curfman McInnes    Output Parameters:
2749c7afd0dbSLois Curfman McInnes +  A - Jacobian matrix
2750d1e9a80fSBarry Smith -  B - optional preconditioning matrix
2751fee21e36SBarry Smith 
2752e35cf81dSBarry Smith   Options Database Keys:
275367b8a455SSatish Balay +    -snes_lag_preconditioner <lag> - how often to rebuild preconditioner
275467b8a455SSatish Balay .    -snes_lag_jacobian <lag> - how often to rebuild Jacobian
2755455a5933SJed Brown .    -snes_test_jacobian <optional threshold> - compare the user provided Jacobian with one compute via finite differences to check for errors.  If a threshold is given, display only those entries whose difference is greater than the threshold.
2756455a5933SJed Brown .    -snes_test_jacobian_view - 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
2757693365a8SJed Brown .    -snes_compare_explicit - Compare the computed Jacobian to the finite difference Jacobian and output the differences
2758693365a8SJed Brown .    -snes_compare_explicit_draw  - Compare the computed Jacobian to the finite difference Jacobian and draw the result
2759693365a8SJed Brown .    -snes_compare_explicit_contour  - Compare the computed Jacobian to the finite difference Jacobian and draw a contour plot with the result
27604c30e9fbSJed Brown .    -snes_compare_operator  - Make the comparison options above use the operator instead of the preconditioning matrix
276194d6a431SBarry Smith .    -snes_compare_coloring - Compute the finite difference Jacobian using coloring and display norms of difference
2762a5b23f4aSJose E. Roman .    -snes_compare_coloring_display - Compute the finite difference Jacobian using coloring and display verbose differences
2763c01495d3SJed Brown .    -snes_compare_coloring_threshold - Display only those matrix entries that differ by more than a given threshold
2764c01495d3SJed Brown .    -snes_compare_coloring_threshold_atol - Absolute tolerance for difference in matrix entries to be displayed by -snes_compare_coloring_threshold
2765c01495d3SJed Brown .    -snes_compare_coloring_threshold_rtol - Relative tolerance for difference in matrix entries to be displayed by -snes_compare_coloring_threshold
2766a5b23f4aSJose E. Roman .    -snes_compare_coloring_draw - Compute the finite difference Jacobian using coloring and draw differences
2767a5b23f4aSJose E. Roman -    -snes_compare_coloring_draw_contour - Compute the finite difference Jacobian using coloring and show contours of matrices and differences
2768c01495d3SJed Brown 
276962fef451SLois Curfman McInnes    Notes:
277062fef451SLois Curfman McInnes    Most users should not need to explicitly call this routine, as it
277162fef451SLois Curfman McInnes    is used internally within the nonlinear solvers.
277262fef451SLois Curfman McInnes 
277395452b02SPatrick Sanan    Developer Notes:
277495452b02SPatrick Sanan     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
2775e885f1abSBarry Smith       for with the SNESType of test that has been removed.
2776e885f1abSBarry Smith 
277736851e7fSLois Curfman McInnes    Level: developer
277836851e7fSLois Curfman McInnes 
2779db781477SPatrick Sanan .seealso: `SNESSetJacobian()`, `KSPSetOperators()`, `MatStructure`, `SNESSetLagPreconditioner()`, `SNESSetLagJacobian()`
278062fef451SLois Curfman McInnes @*/
2781d1e9a80fSBarry Smith PetscErrorCode  SNESComputeJacobian(SNES snes,Vec X,Mat A,Mat B)
27829b94acceSBarry Smith {
2783ace3abfcSBarry Smith   PetscBool      flag;
27846cab3a1bSJed Brown   DM             dm;
2785942e3340SBarry Smith   DMSNES         sdm;
2786e0e3a89bSBarry Smith   KSP            ksp;
27873a40ed3dSBarry Smith 
27883a40ed3dSBarry Smith   PetscFunctionBegin;
27890700a824SBarry Smith   PetscValidHeaderSpecific(snes,SNES_CLASSID,1);
27900700a824SBarry Smith   PetscValidHeaderSpecific(X,VEC_CLASSID,2);
2791c9780b6fSBarry Smith   PetscCheckSameComm(snes,1,X,2);
27929566063dSJacob Faibussowitsch   PetscCall(VecValidValues(X,2,PETSC_TRUE));
27939566063dSJacob Faibussowitsch   PetscCall(SNESGetDM(snes,&dm));
27949566063dSJacob Faibussowitsch   PetscCall(DMGetDMSNES(dm,&sdm));
27953232da50SPeter Brune 
27965f80ce2aSJacob Faibussowitsch   PetscCheck(sdm->ops->computejacobian,PetscObjectComm((PetscObject)snes),PETSC_ERR_USER,"Must call SNESSetJacobian(), DMSNESSetJacobian(), DMDASNESSetJacobianLocal(), etc");
2797ebd3b9afSBarry Smith 
2798ebd3b9afSBarry Smith   /* make sure that MatAssemblyBegin/End() is called on A matrix if it is matrix free */
2799ebd3b9afSBarry Smith 
2800fe3ffe1eSBarry Smith   if (snes->lagjacobian == -2) {
2801fe3ffe1eSBarry Smith     snes->lagjacobian = -1;
2802f5af7f23SKarl Rupp 
28039566063dSJacob Faibussowitsch     PetscCall(PetscInfo(snes,"Recomputing Jacobian/preconditioner because lag is -2 (means compute Jacobian, but then never again) \n"));
2804fe3ffe1eSBarry Smith   } else if (snes->lagjacobian == -1) {
28059566063dSJacob Faibussowitsch     PetscCall(PetscInfo(snes,"Reusing Jacobian/preconditioner because lag is -1\n"));
28069566063dSJacob Faibussowitsch     PetscCall(PetscObjectTypeCompare((PetscObject)A,MATMFFD,&flag));
2807ebd3b9afSBarry Smith     if (flag) {
28089566063dSJacob Faibussowitsch       PetscCall(MatAssemblyBegin(A,MAT_FINAL_ASSEMBLY));
28099566063dSJacob Faibussowitsch       PetscCall(MatAssemblyEnd(A,MAT_FINAL_ASSEMBLY));
2810ebd3b9afSBarry Smith     }
2811e35cf81dSBarry Smith     PetscFunctionReturn(0);
281237ec4e1aSPeter Brune   } else if (snes->lagjacobian > 1 && (snes->iter + snes->jac_iter) % snes->lagjacobian) {
281363a3b9bcSJacob Faibussowitsch     PetscCall(PetscInfo(snes,"Reusing Jacobian/preconditioner because lag is %" PetscInt_FMT " and SNES iteration is %" PetscInt_FMT "\n",snes->lagjacobian,snes->iter));
28149566063dSJacob Faibussowitsch     PetscCall(PetscObjectTypeCompare((PetscObject)A,MATMFFD,&flag));
2815ebd3b9afSBarry Smith     if (flag) {
28169566063dSJacob Faibussowitsch       PetscCall(MatAssemblyBegin(A,MAT_FINAL_ASSEMBLY));
28179566063dSJacob Faibussowitsch       PetscCall(MatAssemblyEnd(A,MAT_FINAL_ASSEMBLY));
2818ebd3b9afSBarry Smith     }
2819e35cf81dSBarry Smith     PetscFunctionReturn(0);
2820e35cf81dSBarry Smith   }
2821efd4aadfSBarry Smith   if (snes->npc && snes->npcside == PC_LEFT) {
28229566063dSJacob Faibussowitsch     PetscCall(MatAssemblyBegin(A,MAT_FINAL_ASSEMBLY));
28239566063dSJacob Faibussowitsch     PetscCall(MatAssemblyEnd(A,MAT_FINAL_ASSEMBLY));
2824d728fb7dSPeter Brune     PetscFunctionReturn(0);
2825d728fb7dSPeter Brune   }
2826e35cf81dSBarry Smith 
28279566063dSJacob Faibussowitsch   PetscCall(PetscLogEventBegin(SNES_JacobianEval,snes,X,A,B));
28289566063dSJacob Faibussowitsch   PetscCall(VecLockReadPush(X));
2829d64ed03dSBarry Smith   PetscStackPush("SNES user Jacobian function");
28309566063dSJacob Faibussowitsch   PetscCall((*sdm->ops->computejacobian)(snes,X,A,B,sdm->jacobianctx));
2831d64ed03dSBarry Smith   PetscStackPop;
28329566063dSJacob Faibussowitsch   PetscCall(VecLockReadPop(X));
28339566063dSJacob Faibussowitsch   PetscCall(PetscLogEventEnd(SNES_JacobianEval,snes,X,A,B));
283428d58a37SPierre Jolivet 
283528d58a37SPierre Jolivet   /* attach latest linearization point to the preconditioning matrix */
28369566063dSJacob Faibussowitsch   PetscCall(PetscObjectCompose((PetscObject)B,"__SNES_latest_X",(PetscObject)X));
2837a8054027SBarry Smith 
2838e0e3a89bSBarry Smith   /* the next line ensures that snes->ksp exists */
28399566063dSJacob Faibussowitsch   PetscCall(SNESGetKSP(snes,&ksp));
28403b4f5425SBarry Smith   if (snes->lagpreconditioner == -2) {
28419566063dSJacob Faibussowitsch     PetscCall(PetscInfo(snes,"Rebuilding preconditioner exactly once since lag is -2\n"));
28429566063dSJacob Faibussowitsch     PetscCall(KSPSetReusePreconditioner(snes->ksp,PETSC_FALSE));
28433b4f5425SBarry Smith     snes->lagpreconditioner = -1;
28443b4f5425SBarry Smith   } else if (snes->lagpreconditioner == -1) {
28459566063dSJacob Faibussowitsch     PetscCall(PetscInfo(snes,"Reusing preconditioner because lag is -1\n"));
28469566063dSJacob Faibussowitsch     PetscCall(KSPSetReusePreconditioner(snes->ksp,PETSC_TRUE));
284737ec4e1aSPeter Brune   } else if (snes->lagpreconditioner > 1 && (snes->iter + snes->pre_iter) % snes->lagpreconditioner) {
284863a3b9bcSJacob Faibussowitsch     PetscCall(PetscInfo(snes,"Reusing preconditioner because lag is %" PetscInt_FMT " and SNES iteration is %" PetscInt_FMT "\n",snes->lagpreconditioner,snes->iter));
28499566063dSJacob Faibussowitsch     PetscCall(KSPSetReusePreconditioner(snes->ksp,PETSC_TRUE));
2850d1e9a80fSBarry Smith   } else {
28519566063dSJacob Faibussowitsch     PetscCall(PetscInfo(snes,"Rebuilding preconditioner\n"));
28529566063dSJacob Faibussowitsch     PetscCall(KSPSetReusePreconditioner(snes->ksp,PETSC_FALSE));
2853a8054027SBarry Smith   }
2854a8054027SBarry Smith 
28559566063dSJacob Faibussowitsch   PetscCall(SNESTestJacobian(snes));
28566d84be18SBarry Smith   /* make sure user returned a correct Jacobian and preconditioner */
285794ab13aaSBarry Smith   /* PetscValidHeaderSpecific(A,MAT_CLASSID,3);
285894ab13aaSBarry Smith     PetscValidHeaderSpecific(B,MAT_CLASSID,4);   */
2859693365a8SJed Brown   {
2860693365a8SJed Brown     PetscBool flag = PETSC_FALSE,flag_draw = PETSC_FALSE,flag_contour = PETSC_FALSE,flag_operator = PETSC_FALSE;
28619566063dSJacob Faibussowitsch     PetscCall(PetscOptionsGetViewer(PetscObjectComm((PetscObject)snes),((PetscObject) snes)->options,((PetscObject)snes)->prefix,"-snes_compare_explicit",NULL,NULL,&flag));
28629566063dSJacob Faibussowitsch     PetscCall(PetscOptionsGetViewer(PetscObjectComm((PetscObject)snes),((PetscObject) snes)->options,((PetscObject)snes)->prefix,"-snes_compare_explicit_draw",NULL,NULL,&flag_draw));
28639566063dSJacob Faibussowitsch     PetscCall(PetscOptionsGetViewer(PetscObjectComm((PetscObject)snes),((PetscObject) snes)->options,((PetscObject)snes)->prefix,"-snes_compare_explicit_draw_contour",NULL,NULL,&flag_contour));
28649566063dSJacob Faibussowitsch     PetscCall(PetscOptionsGetViewer(PetscObjectComm((PetscObject)snes),((PetscObject) snes)->options,((PetscObject)snes)->prefix,"-snes_compare_operator",NULL,NULL,&flag_operator));
2865693365a8SJed Brown     if (flag || flag_draw || flag_contour) {
28660298fd71SBarry Smith       Mat          Bexp_mine = NULL,Bexp,FDexp;
2867693365a8SJed Brown       PetscViewer  vdraw,vstdout;
28686b3a5b13SJed Brown       PetscBool    flg;
2869693365a8SJed Brown       if (flag_operator) {
28709566063dSJacob Faibussowitsch         PetscCall(MatComputeOperator(A,MATAIJ,&Bexp_mine));
2871693365a8SJed Brown         Bexp = Bexp_mine;
2872693365a8SJed Brown       } else {
2873693365a8SJed Brown         /* See if the preconditioning matrix can be viewed and added directly */
28749566063dSJacob Faibussowitsch         PetscCall(PetscObjectBaseTypeCompareAny((PetscObject)B,&flg,MATSEQAIJ,MATMPIAIJ,MATSEQDENSE,MATMPIDENSE,MATSEQBAIJ,MATMPIBAIJ,MATSEQSBAIJ,MATMPIBAIJ,""));
287594ab13aaSBarry Smith         if (flg) Bexp = B;
2876693365a8SJed Brown         else {
2877693365a8SJed Brown           /* If the "preconditioning" matrix is itself MATSHELL or some other type without direct support */
28789566063dSJacob Faibussowitsch           PetscCall(MatComputeOperator(B,MATAIJ,&Bexp_mine));
2879693365a8SJed Brown           Bexp = Bexp_mine;
2880693365a8SJed Brown         }
2881693365a8SJed Brown       }
28829566063dSJacob Faibussowitsch       PetscCall(MatConvert(Bexp,MATSAME,MAT_INITIAL_MATRIX,&FDexp));
28839566063dSJacob Faibussowitsch       PetscCall(SNESComputeJacobianDefault(snes,X,FDexp,FDexp,NULL));
28849566063dSJacob Faibussowitsch       PetscCall(PetscViewerASCIIGetStdout(PetscObjectComm((PetscObject)snes),&vstdout));
2885693365a8SJed Brown       if (flag_draw || flag_contour) {
28869566063dSJacob Faibussowitsch         PetscCall(PetscViewerDrawOpen(PetscObjectComm((PetscObject)snes),NULL,"Explicit Jacobians",PETSC_DECIDE,PETSC_DECIDE,300,300,&vdraw));
28879566063dSJacob Faibussowitsch         if (flag_contour) PetscCall(PetscViewerPushFormat(vdraw,PETSC_VIEWER_DRAW_CONTOUR));
28880298fd71SBarry Smith       } else vdraw = NULL;
28899566063dSJacob Faibussowitsch       PetscCall(PetscViewerASCIIPrintf(vstdout,"Explicit %s\n",flag_operator ? "Jacobian" : "preconditioning Jacobian"));
28909566063dSJacob Faibussowitsch       if (flag) PetscCall(MatView(Bexp,vstdout));
28919566063dSJacob Faibussowitsch       if (vdraw) PetscCall(MatView(Bexp,vdraw));
28929566063dSJacob Faibussowitsch       PetscCall(PetscViewerASCIIPrintf(vstdout,"Finite difference Jacobian\n"));
28939566063dSJacob Faibussowitsch       if (flag) PetscCall(MatView(FDexp,vstdout));
28949566063dSJacob Faibussowitsch       if (vdraw) PetscCall(MatView(FDexp,vdraw));
28959566063dSJacob Faibussowitsch       PetscCall(MatAYPX(FDexp,-1.0,Bexp,SAME_NONZERO_PATTERN));
28969566063dSJacob Faibussowitsch       PetscCall(PetscViewerASCIIPrintf(vstdout,"User-provided matrix minus finite difference Jacobian\n"));
28979566063dSJacob Faibussowitsch       if (flag) PetscCall(MatView(FDexp,vstdout));
2898693365a8SJed Brown       if (vdraw) {              /* Always use contour for the difference */
28999566063dSJacob Faibussowitsch         PetscCall(PetscViewerPushFormat(vdraw,PETSC_VIEWER_DRAW_CONTOUR));
29009566063dSJacob Faibussowitsch         PetscCall(MatView(FDexp,vdraw));
29019566063dSJacob Faibussowitsch         PetscCall(PetscViewerPopFormat(vdraw));
2902693365a8SJed Brown       }
29039566063dSJacob Faibussowitsch       if (flag_contour) PetscCall(PetscViewerPopFormat(vdraw));
29049566063dSJacob Faibussowitsch       PetscCall(PetscViewerDestroy(&vdraw));
29059566063dSJacob Faibussowitsch       PetscCall(MatDestroy(&Bexp_mine));
29069566063dSJacob Faibussowitsch       PetscCall(MatDestroy(&FDexp));
2907693365a8SJed Brown     }
2908693365a8SJed Brown   }
29094c30e9fbSJed Brown   {
29106719d8e4SJed Brown     PetscBool flag = PETSC_FALSE,flag_display = PETSC_FALSE,flag_draw = PETSC_FALSE,flag_contour = PETSC_FALSE,flag_threshold = PETSC_FALSE;
29116719d8e4SJed Brown     PetscReal threshold_atol = PETSC_SQRT_MACHINE_EPSILON,threshold_rtol = 10*PETSC_SQRT_MACHINE_EPSILON;
29129566063dSJacob Faibussowitsch     PetscCall(PetscOptionsGetViewer(PetscObjectComm((PetscObject)snes),((PetscObject)snes)->options,((PetscObject)snes)->prefix,"-snes_compare_coloring",NULL,NULL,&flag));
29139566063dSJacob Faibussowitsch     PetscCall(PetscOptionsGetViewer(PetscObjectComm((PetscObject)snes),((PetscObject)snes)->options,((PetscObject)snes)->prefix,"-snes_compare_coloring_display",NULL,NULL,&flag_display));
29149566063dSJacob Faibussowitsch     PetscCall(PetscOptionsGetViewer(PetscObjectComm((PetscObject)snes),((PetscObject)snes)->options,((PetscObject)snes)->prefix,"-snes_compare_coloring_draw",NULL,NULL,&flag_draw));
29159566063dSJacob Faibussowitsch     PetscCall(PetscOptionsGetViewer(PetscObjectComm((PetscObject)snes),((PetscObject)snes)->options,((PetscObject)snes)->prefix,"-snes_compare_coloring_draw_contour",NULL,NULL,&flag_contour));
29169566063dSJacob Faibussowitsch     PetscCall(PetscOptionsGetViewer(PetscObjectComm((PetscObject)snes),((PetscObject)snes)->options,((PetscObject)snes)->prefix,"-snes_compare_coloring_threshold",NULL,NULL,&flag_threshold));
291727b0f280SBarry Smith     if (flag_threshold) {
29189566063dSJacob Faibussowitsch       PetscCall(PetscOptionsGetReal(((PetscObject)snes)->options,((PetscObject)snes)->prefix,"-snes_compare_coloring_threshold_rtol",&threshold_rtol,NULL));
29199566063dSJacob Faibussowitsch       PetscCall(PetscOptionsGetReal(((PetscObject)snes)->options,((PetscObject)snes)->prefix,"-snes_compare_coloring_threshold_atol",&threshold_atol,NULL));
292027b0f280SBarry Smith     }
29216719d8e4SJed Brown     if (flag || flag_display || flag_draw || flag_contour || flag_threshold) {
29224c30e9fbSJed Brown       Mat            Bfd;
29234c30e9fbSJed Brown       PetscViewer    vdraw,vstdout;
2924335efc43SPeter Brune       MatColoring    coloring;
29254c30e9fbSJed Brown       ISColoring     iscoloring;
29264c30e9fbSJed Brown       MatFDColoring  matfdcoloring;
29274c30e9fbSJed Brown       PetscErrorCode (*func)(SNES,Vec,Vec,void*);
29284c30e9fbSJed Brown       void           *funcctx;
29296719d8e4SJed Brown       PetscReal      norm1,norm2,normmax;
29304c30e9fbSJed Brown 
29319566063dSJacob Faibussowitsch       PetscCall(MatDuplicate(B,MAT_DO_NOT_COPY_VALUES,&Bfd));
29329566063dSJacob Faibussowitsch       PetscCall(MatColoringCreate(Bfd,&coloring));
29339566063dSJacob Faibussowitsch       PetscCall(MatColoringSetType(coloring,MATCOLORINGSL));
29349566063dSJacob Faibussowitsch       PetscCall(MatColoringSetFromOptions(coloring));
29359566063dSJacob Faibussowitsch       PetscCall(MatColoringApply(coloring,&iscoloring));
29369566063dSJacob Faibussowitsch       PetscCall(MatColoringDestroy(&coloring));
29379566063dSJacob Faibussowitsch       PetscCall(MatFDColoringCreate(Bfd,iscoloring,&matfdcoloring));
29389566063dSJacob Faibussowitsch       PetscCall(MatFDColoringSetFromOptions(matfdcoloring));
29399566063dSJacob Faibussowitsch       PetscCall(MatFDColoringSetUp(Bfd,iscoloring,matfdcoloring));
29409566063dSJacob Faibussowitsch       PetscCall(ISColoringDestroy(&iscoloring));
29414c30e9fbSJed Brown 
29424c30e9fbSJed Brown       /* This method of getting the function is currently unreliable since it doesn't work for DM local functions. */
29439566063dSJacob Faibussowitsch       PetscCall(SNESGetFunction(snes,NULL,&func,&funcctx));
29449566063dSJacob Faibussowitsch       PetscCall(MatFDColoringSetFunction(matfdcoloring,(PetscErrorCode (*)(void))func,funcctx));
29459566063dSJacob Faibussowitsch       PetscCall(PetscObjectSetOptionsPrefix((PetscObject)matfdcoloring,((PetscObject)snes)->prefix));
29469566063dSJacob Faibussowitsch       PetscCall(PetscObjectAppendOptionsPrefix((PetscObject)matfdcoloring,"coloring_"));
29479566063dSJacob Faibussowitsch       PetscCall(MatFDColoringSetFromOptions(matfdcoloring));
29489566063dSJacob Faibussowitsch       PetscCall(MatFDColoringApply(Bfd,matfdcoloring,X,snes));
29499566063dSJacob Faibussowitsch       PetscCall(MatFDColoringDestroy(&matfdcoloring));
29504c30e9fbSJed Brown 
29519566063dSJacob Faibussowitsch       PetscCall(PetscViewerASCIIGetStdout(PetscObjectComm((PetscObject)snes),&vstdout));
29524c30e9fbSJed Brown       if (flag_draw || flag_contour) {
29539566063dSJacob Faibussowitsch         PetscCall(PetscViewerDrawOpen(PetscObjectComm((PetscObject)snes),NULL,"Colored Jacobians",PETSC_DECIDE,PETSC_DECIDE,300,300,&vdraw));
29549566063dSJacob Faibussowitsch         if (flag_contour) PetscCall(PetscViewerPushFormat(vdraw,PETSC_VIEWER_DRAW_CONTOUR));
29550298fd71SBarry Smith       } else vdraw = NULL;
29569566063dSJacob Faibussowitsch       PetscCall(PetscViewerASCIIPrintf(vstdout,"Explicit preconditioning Jacobian\n"));
29579566063dSJacob Faibussowitsch       if (flag_display) PetscCall(MatView(B,vstdout));
29589566063dSJacob Faibussowitsch       if (vdraw) PetscCall(MatView(B,vdraw));
29599566063dSJacob Faibussowitsch       PetscCall(PetscViewerASCIIPrintf(vstdout,"Colored Finite difference Jacobian\n"));
29609566063dSJacob Faibussowitsch       if (flag_display) PetscCall(MatView(Bfd,vstdout));
29619566063dSJacob Faibussowitsch       if (vdraw) PetscCall(MatView(Bfd,vdraw));
29629566063dSJacob Faibussowitsch       PetscCall(MatAYPX(Bfd,-1.0,B,SAME_NONZERO_PATTERN));
29639566063dSJacob Faibussowitsch       PetscCall(MatNorm(Bfd,NORM_1,&norm1));
29649566063dSJacob Faibussowitsch       PetscCall(MatNorm(Bfd,NORM_FROBENIUS,&norm2));
29659566063dSJacob Faibussowitsch       PetscCall(MatNorm(Bfd,NORM_MAX,&normmax));
29669566063dSJacob Faibussowitsch       PetscCall(PetscViewerASCIIPrintf(vstdout,"User-provided matrix minus finite difference Jacobian, norm1=%g normFrob=%g normmax=%g\n",(double)norm1,(double)norm2,(double)normmax));
29679566063dSJacob Faibussowitsch       if (flag_display) PetscCall(MatView(Bfd,vstdout));
29684c30e9fbSJed Brown       if (vdraw) {              /* Always use contour for the difference */
29699566063dSJacob Faibussowitsch         PetscCall(PetscViewerPushFormat(vdraw,PETSC_VIEWER_DRAW_CONTOUR));
29709566063dSJacob Faibussowitsch         PetscCall(MatView(Bfd,vdraw));
29719566063dSJacob Faibussowitsch         PetscCall(PetscViewerPopFormat(vdraw));
29724c30e9fbSJed Brown       }
29739566063dSJacob Faibussowitsch       if (flag_contour) PetscCall(PetscViewerPopFormat(vdraw));
29746719d8e4SJed Brown 
29756719d8e4SJed Brown       if (flag_threshold) {
29766719d8e4SJed Brown         PetscInt bs,rstart,rend,i;
29779566063dSJacob Faibussowitsch         PetscCall(MatGetBlockSize(B,&bs));
29789566063dSJacob Faibussowitsch         PetscCall(MatGetOwnershipRange(B,&rstart,&rend));
29796719d8e4SJed Brown         for (i=rstart; i<rend; i++) {
29806719d8e4SJed Brown           const PetscScalar *ba,*ca;
29816719d8e4SJed Brown           const PetscInt    *bj,*cj;
29826719d8e4SJed Brown           PetscInt          bn,cn,j,maxentrycol = -1,maxdiffcol = -1,maxrdiffcol = -1;
29836719d8e4SJed Brown           PetscReal         maxentry = 0,maxdiff = 0,maxrdiff = 0;
29849566063dSJacob Faibussowitsch           PetscCall(MatGetRow(B,i,&bn,&bj,&ba));
29859566063dSJacob Faibussowitsch           PetscCall(MatGetRow(Bfd,i,&cn,&cj,&ca));
29865f80ce2aSJacob Faibussowitsch           PetscCheck(bn == cn,((PetscObject)A)->comm,PETSC_ERR_PLIB,"Unexpected different nonzero pattern in -snes_compare_coloring_threshold");
29876719d8e4SJed Brown           for (j=0; j<bn; j++) {
29886719d8e4SJed Brown             PetscReal rdiff = PetscAbsScalar(ca[j]) / (threshold_atol + threshold_rtol*PetscAbsScalar(ba[j]));
29896719d8e4SJed Brown             if (PetscAbsScalar(ba[j]) > PetscAbs(maxentry)) {
29906719d8e4SJed Brown               maxentrycol = bj[j];
29916719d8e4SJed Brown               maxentry    = PetscRealPart(ba[j]);
29926719d8e4SJed Brown             }
29936719d8e4SJed Brown             if (PetscAbsScalar(ca[j]) > PetscAbs(maxdiff)) {
29946719d8e4SJed Brown               maxdiffcol = bj[j];
29956719d8e4SJed Brown               maxdiff    = PetscRealPart(ca[j]);
29966719d8e4SJed Brown             }
29976719d8e4SJed Brown             if (rdiff > maxrdiff) {
29986719d8e4SJed Brown               maxrdiffcol = bj[j];
29996719d8e4SJed Brown               maxrdiff    = rdiff;
30006719d8e4SJed Brown             }
30016719d8e4SJed Brown           }
30026719d8e4SJed Brown           if (maxrdiff > 1) {
300363a3b9bcSJacob Faibussowitsch             PetscCall(PetscViewerASCIIPrintf(vstdout,"row %" PetscInt_FMT " (maxentry=%g at %" PetscInt_FMT ", maxdiff=%g at %" PetscInt_FMT ", maxrdiff=%g at %" PetscInt_FMT "):",i,(double)maxentry,maxentrycol,(double)maxdiff,maxdiffcol,(double)maxrdiff,maxrdiffcol));
30046719d8e4SJed Brown             for (j=0; j<bn; j++) {
30056719d8e4SJed Brown               PetscReal rdiff;
30066719d8e4SJed Brown               rdiff = PetscAbsScalar(ca[j]) / (threshold_atol + threshold_rtol*PetscAbsScalar(ba[j]));
30076719d8e4SJed Brown               if (rdiff > 1) {
300863a3b9bcSJacob Faibussowitsch                 PetscCall(PetscViewerASCIIPrintf(vstdout," (%" PetscInt_FMT ",%g:%g)",bj[j],(double)PetscRealPart(ba[j]),(double)PetscRealPart(ca[j])));
30096719d8e4SJed Brown               }
30106719d8e4SJed Brown             }
301163a3b9bcSJacob Faibussowitsch             PetscCall(PetscViewerASCIIPrintf(vstdout,"\n"));
30126719d8e4SJed Brown           }
30139566063dSJacob Faibussowitsch           PetscCall(MatRestoreRow(B,i,&bn,&bj,&ba));
30149566063dSJacob Faibussowitsch           PetscCall(MatRestoreRow(Bfd,i,&cn,&cj,&ca));
30156719d8e4SJed Brown         }
30166719d8e4SJed Brown       }
30179566063dSJacob Faibussowitsch       PetscCall(PetscViewerDestroy(&vdraw));
30189566063dSJacob Faibussowitsch       PetscCall(MatDestroy(&Bfd));
30194c30e9fbSJed Brown     }
30204c30e9fbSJed Brown   }
30213a40ed3dSBarry Smith   PetscFunctionReturn(0);
30229b94acceSBarry Smith }
30239b94acceSBarry Smith 
3024bf388a1fSBarry Smith /*MC
3025411c0326SBarry Smith     SNESJacobianFunction - Function used to convey the nonlinear Jacobian of the function to be solved by SNES
3026bf388a1fSBarry Smith 
3027bf388a1fSBarry Smith      Synopsis:
3028411c0326SBarry Smith      #include "petscsnes.h"
3029411c0326SBarry Smith      PetscErrorCode SNESJacobianFunction(SNES snes,Vec x,Mat Amat,Mat Pmat,void *ctx);
3030bf388a1fSBarry Smith 
30311843f636SBarry Smith      Collective on snes
30321843f636SBarry Smith 
30331843f636SBarry Smith     Input Parameters:
30341843f636SBarry Smith +  x - input vector, the Jacobian is to be computed at this value
3035bf388a1fSBarry Smith -  ctx - [optional] user-defined Jacobian context
3036bf388a1fSBarry Smith 
30371843f636SBarry Smith     Output Parameters:
30381843f636SBarry Smith +  Amat - the matrix that defines the (approximate) Jacobian
30391843f636SBarry Smith -  Pmat - the matrix to be used in constructing the preconditioner, usually the same as Amat.
30401843f636SBarry Smith 
3041878cb397SSatish Balay    Level: intermediate
3042878cb397SSatish Balay 
3043db781477SPatrick Sanan .seealso: `SNESSetFunction()`, `SNESGetFunction()`, `SNESSetJacobian()`, `SNESGetJacobian()`
3044bf388a1fSBarry Smith M*/
3045bf388a1fSBarry Smith 
30469b94acceSBarry Smith /*@C
30479b94acceSBarry Smith    SNESSetJacobian - Sets the function to compute Jacobian as well as the
3048044dda88SLois Curfman McInnes    location to store the matrix.
30499b94acceSBarry Smith 
3050d083f849SBarry Smith    Logically Collective on SNES
3051c7afd0dbSLois Curfman McInnes 
30529b94acceSBarry Smith    Input Parameters:
3053c7afd0dbSLois Curfman McInnes +  snes - the SNES context
3054e5d3d808SBarry Smith .  Amat - the matrix that defines the (approximate) Jacobian
3055e5d3d808SBarry Smith .  Pmat - the matrix to be used in constructing the preconditioner, usually the same as Amat.
3056411c0326SBarry Smith .  J - Jacobian evaluation routine (if NULL then SNES retains any previously set value), see SNESJacobianFunction for details
3057c7afd0dbSLois Curfman McInnes -  ctx - [optional] user-defined context for private data for the
30580298fd71SBarry Smith          Jacobian evaluation routine (may be NULL) (if NULL then SNES retains any previously set value)
30599b94acceSBarry Smith 
30609b94acceSBarry Smith    Notes:
3061e5d3d808SBarry Smith    If the Amat matrix and Pmat matrix are different you must call MatAssemblyBegin/End() on
306216913363SBarry Smith    each matrix.
306316913363SBarry Smith 
3064895c21f2SBarry Smith    If you know the operator Amat has a null space you can use MatSetNullSpace() and MatSetTransposeNullSpace() to supply the null
3065895c21f2SBarry Smith    space to Amat and the KSP solvers will automatically use that null space as needed during the solution process.
3066895c21f2SBarry Smith 
30678d359177SBarry Smith    If using SNESComputeJacobianDefaultColor() to assemble a Jacobian, the ctx argument
3068a8a26c1eSJed Brown    must be a MatFDColoring.
3069a8a26c1eSJed Brown 
3070c3cc8fd1SJed Brown    Other defect-correction schemes can be used by computing a different matrix in place of the Jacobian.  One common
3071c3cc8fd1SJed Brown    example is to use the "Picard linearization" which only differentiates through the highest order parts of each term.
3072c3cc8fd1SJed Brown 
307336851e7fSLois Curfman McInnes    Level: beginner
307436851e7fSLois Curfman McInnes 
3075db781477SPatrick Sanan .seealso: `KSPSetOperators()`, `SNESSetFunction()`, `MatMFFDComputeJacobian()`, `SNESComputeJacobianDefaultColor()`, `MatStructure`, `J`,
3076db781477SPatrick Sanan           `SNESSetPicard()`, `SNESJacobianFunction`
30779b94acceSBarry Smith @*/
3078d1e9a80fSBarry Smith PetscErrorCode  SNESSetJacobian(SNES snes,Mat Amat,Mat Pmat,PetscErrorCode (*J)(SNES,Vec,Mat,Mat,void*),void *ctx)
30799b94acceSBarry Smith {
30806cab3a1bSJed Brown   DM             dm;
30813a7fca6bSBarry Smith 
30823a40ed3dSBarry Smith   PetscFunctionBegin;
30830700a824SBarry Smith   PetscValidHeaderSpecific(snes,SNES_CLASSID,1);
3084e5d3d808SBarry Smith   if (Amat) PetscValidHeaderSpecific(Amat,MAT_CLASSID,2);
3085e5d3d808SBarry Smith   if (Pmat) PetscValidHeaderSpecific(Pmat,MAT_CLASSID,3);
3086e5d3d808SBarry Smith   if (Amat) PetscCheckSameComm(snes,1,Amat,2);
3087e5d3d808SBarry Smith   if (Pmat) PetscCheckSameComm(snes,1,Pmat,3);
30889566063dSJacob Faibussowitsch   PetscCall(SNESGetDM(snes,&dm));
30899566063dSJacob Faibussowitsch   PetscCall(DMSNESSetJacobian(dm,J,ctx));
3090e5d3d808SBarry Smith   if (Amat) {
30919566063dSJacob Faibussowitsch     PetscCall(PetscObjectReference((PetscObject)Amat));
30929566063dSJacob Faibussowitsch     PetscCall(MatDestroy(&snes->jacobian));
3093f5af7f23SKarl Rupp 
3094e5d3d808SBarry Smith     snes->jacobian = Amat;
30953a7fca6bSBarry Smith   }
3096e5d3d808SBarry Smith   if (Pmat) {
30979566063dSJacob Faibussowitsch     PetscCall(PetscObjectReference((PetscObject)Pmat));
30989566063dSJacob Faibussowitsch     PetscCall(MatDestroy(&snes->jacobian_pre));
3099f5af7f23SKarl Rupp 
3100e5d3d808SBarry Smith     snes->jacobian_pre = Pmat;
31013a7fca6bSBarry Smith   }
31023a40ed3dSBarry Smith   PetscFunctionReturn(0);
31039b94acceSBarry Smith }
310462fef451SLois Curfman McInnes 
3105c2aafc4cSSatish Balay /*@C
3106b4fd4287SBarry Smith    SNESGetJacobian - Returns the Jacobian matrix and optionally the user
3107b4fd4287SBarry Smith    provided context for evaluating the Jacobian.
3108b4fd4287SBarry Smith 
3109c7afd0dbSLois Curfman McInnes    Not Collective, but Mat object will be parallel if SNES object is
3110c7afd0dbSLois Curfman McInnes 
3111b4fd4287SBarry Smith    Input Parameter:
3112b4fd4287SBarry Smith .  snes - the nonlinear solver context
3113b4fd4287SBarry Smith 
3114b4fd4287SBarry Smith    Output Parameters:
3115e5d3d808SBarry Smith +  Amat - location to stash (approximate) Jacobian matrix (or NULL)
3116e5d3d808SBarry Smith .  Pmat - location to stash matrix used to compute the preconditioner (or NULL)
3117411c0326SBarry Smith .  J - location to put Jacobian function (or NULL), see SNESJacobianFunction for details on its calling sequence
31180298fd71SBarry Smith -  ctx - location to stash Jacobian ctx (or NULL)
3119fee21e36SBarry Smith 
312036851e7fSLois Curfman McInnes    Level: advanced
312136851e7fSLois Curfman McInnes 
3122db781477SPatrick Sanan .seealso: `SNESSetJacobian()`, `SNESComputeJacobian()`, `SNESJacobianFunction`, `SNESGetFunction()`
3123b4fd4287SBarry Smith @*/
3124d1e9a80fSBarry Smith PetscErrorCode SNESGetJacobian(SNES snes,Mat *Amat,Mat *Pmat,PetscErrorCode (**J)(SNES,Vec,Mat,Mat,void*),void **ctx)
3125b4fd4287SBarry Smith {
31266cab3a1bSJed Brown   DM             dm;
3127942e3340SBarry Smith   DMSNES         sdm;
31286cab3a1bSJed Brown 
31293a40ed3dSBarry Smith   PetscFunctionBegin;
31300700a824SBarry Smith   PetscValidHeaderSpecific(snes,SNES_CLASSID,1);
3131e5d3d808SBarry Smith   if (Amat) *Amat = snes->jacobian;
3132e5d3d808SBarry Smith   if (Pmat) *Pmat = snes->jacobian_pre;
31339566063dSJacob Faibussowitsch   PetscCall(SNESGetDM(snes,&dm));
31349566063dSJacob Faibussowitsch   PetscCall(DMGetDMSNES(dm,&sdm));
3135f8b49ee9SBarry Smith   if (J) *J = sdm->ops->computejacobian;
31366cab3a1bSJed Brown   if (ctx) *ctx = sdm->jacobianctx;
31373a40ed3dSBarry Smith   PetscFunctionReturn(0);
3138b4fd4287SBarry Smith }
3139b4fd4287SBarry Smith 
314058b371f3SBarry Smith static PetscErrorCode SNESSetDefaultComputeJacobian(SNES snes)
314158b371f3SBarry Smith {
314258b371f3SBarry Smith   DM             dm;
314358b371f3SBarry Smith   DMSNES         sdm;
314458b371f3SBarry Smith 
314558b371f3SBarry Smith   PetscFunctionBegin;
31469566063dSJacob Faibussowitsch   PetscCall(SNESGetDM(snes,&dm));
31479566063dSJacob Faibussowitsch   PetscCall(DMGetDMSNES(dm,&sdm));
314858b371f3SBarry Smith   if (!sdm->ops->computejacobian && snes->jacobian_pre) {
314958b371f3SBarry Smith     DM        dm;
315058b371f3SBarry Smith     PetscBool isdense,ismf;
315158b371f3SBarry Smith 
31529566063dSJacob Faibussowitsch     PetscCall(SNESGetDM(snes,&dm));
31539566063dSJacob Faibussowitsch     PetscCall(PetscObjectTypeCompareAny((PetscObject)snes->jacobian_pre,&isdense,MATSEQDENSE,MATMPIDENSE,MATDENSE,NULL));
31549566063dSJacob Faibussowitsch     PetscCall(PetscObjectTypeCompareAny((PetscObject)snes->jacobian_pre,&ismf,MATMFFD,MATSHELL,NULL));
315558b371f3SBarry Smith     if (isdense) {
31569566063dSJacob Faibussowitsch       PetscCall(DMSNESSetJacobian(dm,SNESComputeJacobianDefault,NULL));
315758b371f3SBarry Smith     } else if (!ismf) {
31589566063dSJacob Faibussowitsch       PetscCall(DMSNESSetJacobian(dm,SNESComputeJacobianDefaultColor,NULL));
315958b371f3SBarry Smith     }
316058b371f3SBarry Smith   }
316158b371f3SBarry Smith   PetscFunctionReturn(0);
316258b371f3SBarry Smith }
316358b371f3SBarry Smith 
31649b94acceSBarry Smith /*@
31659b94acceSBarry Smith    SNESSetUp - Sets up the internal data structures for the later use
3166272ac6f2SLois Curfman McInnes    of a nonlinear solver.
31679b94acceSBarry Smith 
3168fee21e36SBarry Smith    Collective on SNES
3169fee21e36SBarry Smith 
3170c7afd0dbSLois Curfman McInnes    Input Parameters:
317170e92668SMatthew Knepley .  snes - the SNES context
3172c7afd0dbSLois Curfman McInnes 
3173272ac6f2SLois Curfman McInnes    Notes:
3174272ac6f2SLois Curfman McInnes    For basic use of the SNES solvers the user need not explicitly call
3175272ac6f2SLois Curfman McInnes    SNESSetUp(), since these actions will automatically occur during
3176272ac6f2SLois Curfman McInnes    the call to SNESSolve().  However, if one wishes to control this
3177272ac6f2SLois Curfman McInnes    phase separately, SNESSetUp() should be called after SNESCreate()
3178272ac6f2SLois Curfman McInnes    and optional routines of the form SNESSetXXX(), but before SNESSolve().
3179272ac6f2SLois Curfman McInnes 
318036851e7fSLois Curfman McInnes    Level: advanced
318136851e7fSLois Curfman McInnes 
3182db781477SPatrick Sanan .seealso: `SNESCreate()`, `SNESSolve()`, `SNESDestroy()`
31839b94acceSBarry Smith @*/
31847087cfbeSBarry Smith PetscErrorCode  SNESSetUp(SNES snes)
31859b94acceSBarry Smith {
31866cab3a1bSJed Brown   DM             dm;
3187942e3340SBarry Smith   DMSNES         sdm;
3188c35f09e5SBarry Smith   SNESLineSearch linesearch, pclinesearch;
31896e2a1849SPeter Brune   void           *lsprectx,*lspostctx;
31906b2b7091SBarry Smith   PetscErrorCode (*precheck)(SNESLineSearch,Vec,Vec,PetscBool*,void*);
31916b2b7091SBarry Smith   PetscErrorCode (*postcheck)(SNESLineSearch,Vec,Vec,Vec,PetscBool*,PetscBool*,void*);
31926e2a1849SPeter Brune   PetscErrorCode (*func)(SNES,Vec,Vec,void*);
31936e2a1849SPeter Brune   Vec            f,fpc;
31946e2a1849SPeter Brune   void           *funcctx;
3195d1e9a80fSBarry Smith   PetscErrorCode (*jac)(SNES,Vec,Mat,Mat,void*);
31961eb13d49SPeter Brune   void           *jacctx,*appctx;
319732b97717SPeter Brune   Mat            j,jpre;
31983a40ed3dSBarry Smith 
31993a40ed3dSBarry Smith   PetscFunctionBegin;
32000700a824SBarry Smith   PetscValidHeaderSpecific(snes,SNES_CLASSID,1);
32014dc4c822SBarry Smith   if (snes->setupcalled) PetscFunctionReturn(0);
32029566063dSJacob Faibussowitsch   PetscCall(PetscLogEventBegin(SNES_Setup,snes,0,0,0));
32039b94acceSBarry Smith 
32047adad957SLisandro Dalcin   if (!((PetscObject)snes)->type_name) {
32059566063dSJacob Faibussowitsch     PetscCall(SNESSetType(snes,SNESNEWTONLS));
320685385478SLisandro Dalcin   }
320785385478SLisandro Dalcin 
32089566063dSJacob Faibussowitsch   PetscCall(SNESGetFunction(snes,&snes->vec_func,NULL,NULL));
320958c9b817SLisandro Dalcin 
32109566063dSJacob Faibussowitsch   PetscCall(SNESGetDM(snes,&dm));
32119566063dSJacob Faibussowitsch   PetscCall(DMGetDMSNES(dm,&sdm));
32125f80ce2aSJacob Faibussowitsch   PetscCheck(sdm->ops->computefunction,PetscObjectComm((PetscObject)dm),PETSC_ERR_ARG_WRONGSTATE,"Function never provided to SNES object");
32139566063dSJacob Faibussowitsch   PetscCall(SNESSetDefaultComputeJacobian(snes));
321458b371f3SBarry Smith 
32156cab3a1bSJed Brown   if (!snes->vec_func) {
32169566063dSJacob Faibussowitsch     PetscCall(DMCreateGlobalVector(dm,&snes->vec_func));
3217214df951SJed Brown   }
3218efd51863SBarry Smith 
321922d28d08SBarry Smith   if (!snes->ksp) {
32209566063dSJacob Faibussowitsch     PetscCall(SNESGetKSP(snes, &snes->ksp));
322122d28d08SBarry Smith   }
3222b710008aSBarry Smith 
3223d8d34be6SBarry Smith   if (snes->linesearch) {
32249566063dSJacob Faibussowitsch     PetscCall(SNESGetLineSearch(snes, &snes->linesearch));
32259566063dSJacob Faibussowitsch     PetscCall(SNESLineSearchSetFunction(snes->linesearch,SNESComputeFunction));
3226d8d34be6SBarry Smith   }
32279e764e56SPeter Brune 
3228b552625fSStefano Zampini   if (snes->npc && snes->npcside == PC_LEFT) {
3229172a4300SPeter Brune     snes->mf          = PETSC_TRUE;
3230172a4300SPeter Brune     snes->mf_operator = PETSC_FALSE;
3231172a4300SPeter Brune   }
3232d8f46077SPeter Brune 
3233efd4aadfSBarry Smith   if (snes->npc) {
32346e2a1849SPeter Brune     /* copy the DM over */
32359566063dSJacob Faibussowitsch     PetscCall(SNESGetDM(snes,&dm));
32369566063dSJacob Faibussowitsch     PetscCall(SNESSetDM(snes->npc,dm));
32376e2a1849SPeter Brune 
32389566063dSJacob Faibussowitsch     PetscCall(SNESGetFunction(snes,&f,&func,&funcctx));
32399566063dSJacob Faibussowitsch     PetscCall(VecDuplicate(f,&fpc));
32409566063dSJacob Faibussowitsch     PetscCall(SNESSetFunction(snes->npc,fpc,func,funcctx));
32419566063dSJacob Faibussowitsch     PetscCall(SNESGetJacobian(snes,&j,&jpre,&jac,&jacctx));
32429566063dSJacob Faibussowitsch     PetscCall(SNESSetJacobian(snes->npc,j,jpre,jac,jacctx));
32439566063dSJacob Faibussowitsch     PetscCall(SNESGetApplicationContext(snes,&appctx));
32449566063dSJacob Faibussowitsch     PetscCall(SNESSetApplicationContext(snes->npc,appctx));
32459566063dSJacob Faibussowitsch     PetscCall(VecDestroy(&fpc));
32466e2a1849SPeter Brune 
32476e2a1849SPeter Brune     /* copy the function pointers over */
32489566063dSJacob Faibussowitsch     PetscCall(PetscObjectCopyFortranFunctionPointers((PetscObject)snes,(PetscObject)snes->npc));
32496e2a1849SPeter Brune 
32506e2a1849SPeter Brune     /* default to 1 iteration */
32519566063dSJacob Faibussowitsch     PetscCall(SNESSetTolerances(snes->npc,0.0,0.0,0.0,1,snes->npc->max_funcs));
3252efd4aadfSBarry Smith     if (snes->npcside == PC_RIGHT) {
32539566063dSJacob Faibussowitsch       PetscCall(SNESSetNormSchedule(snes->npc,SNES_NORM_FINAL_ONLY));
3254a9936a0cSPeter Brune     } else {
32559566063dSJacob Faibussowitsch       PetscCall(SNESSetNormSchedule(snes->npc,SNES_NORM_NONE));
3256a9936a0cSPeter Brune     }
32579566063dSJacob Faibussowitsch     PetscCall(SNESSetFromOptions(snes->npc));
32586e2a1849SPeter Brune 
32596e2a1849SPeter Brune     /* copy the line search context over */
3260d8d34be6SBarry Smith     if (snes->linesearch && snes->npc->linesearch) {
32619566063dSJacob Faibussowitsch       PetscCall(SNESGetLineSearch(snes,&linesearch));
32629566063dSJacob Faibussowitsch       PetscCall(SNESGetLineSearch(snes->npc,&pclinesearch));
32639566063dSJacob Faibussowitsch       PetscCall(SNESLineSearchGetPreCheck(linesearch,&precheck,&lsprectx));
32649566063dSJacob Faibussowitsch       PetscCall(SNESLineSearchGetPostCheck(linesearch,&postcheck,&lspostctx));
32659566063dSJacob Faibussowitsch       PetscCall(SNESLineSearchSetPreCheck(pclinesearch,precheck,lsprectx));
32669566063dSJacob Faibussowitsch       PetscCall(SNESLineSearchSetPostCheck(pclinesearch,postcheck,lspostctx));
32679566063dSJacob Faibussowitsch       PetscCall(PetscObjectCopyFortranFunctionPointers((PetscObject)linesearch, (PetscObject)pclinesearch));
32686e2a1849SPeter Brune     }
3269d8d34be6SBarry Smith   }
327032b97717SPeter Brune   if (snes->mf) {
32719566063dSJacob Faibussowitsch     PetscCall(SNESSetUpMatrixFree_Private(snes, snes->mf_operator, snes->mf_version));
327232b97717SPeter Brune   }
327332b97717SPeter Brune   if (snes->ops->usercompute && !snes->user) {
32749566063dSJacob Faibussowitsch     PetscCall((*snes->ops->usercompute)(snes,(void**)&snes->user));
327532b97717SPeter Brune   }
32766e2a1849SPeter Brune 
327737ec4e1aSPeter Brune   snes->jac_iter = 0;
327837ec4e1aSPeter Brune   snes->pre_iter = 0;
327937ec4e1aSPeter Brune 
3280410397dcSLisandro Dalcin   if (snes->ops->setup) {
32819566063dSJacob Faibussowitsch     PetscCall((*snes->ops->setup)(snes));
3282410397dcSLisandro Dalcin   }
328358c9b817SLisandro Dalcin 
32849566063dSJacob Faibussowitsch   PetscCall(SNESSetDefaultComputeJacobian(snes));
328558b371f3SBarry Smith 
3286b552625fSStefano Zampini   if (snes->npc && snes->npcside == PC_LEFT) {
32876c67d002SPeter Brune     if (snes->functype == SNES_FUNCTION_PRECONDITIONED) {
3288d8d34be6SBarry Smith       if (snes->linesearch) {
32899566063dSJacob Faibussowitsch         PetscCall(SNESGetLineSearch(snes,&linesearch));
32909566063dSJacob Faibussowitsch         PetscCall(SNESLineSearchSetFunction(linesearch,SNESComputeFunctionDefaultNPC));
32916c67d002SPeter Brune       }
32926c67d002SPeter Brune     }
3293d8d34be6SBarry Smith   }
32949566063dSJacob Faibussowitsch   PetscCall(PetscLogEventEnd(SNES_Setup,snes,0,0,0));
32957aaed0d8SBarry Smith   snes->setupcalled = PETSC_TRUE;
32963a40ed3dSBarry Smith   PetscFunctionReturn(0);
32979b94acceSBarry Smith }
32989b94acceSBarry Smith 
329937596af1SLisandro Dalcin /*@
330037596af1SLisandro Dalcin    SNESReset - Resets a SNES context to the snessetupcalled = 0 state and removes any allocated Vecs and Mats
330137596af1SLisandro Dalcin 
330237596af1SLisandro Dalcin    Collective on SNES
330337596af1SLisandro Dalcin 
330437596af1SLisandro Dalcin    Input Parameter:
330537596af1SLisandro Dalcin .  snes - iterative context obtained from SNESCreate()
330637596af1SLisandro Dalcin 
3307d25893d9SBarry Smith    Level: intermediate
3308d25893d9SBarry Smith 
330995452b02SPatrick Sanan    Notes:
331095452b02SPatrick Sanan     Also calls the application context destroy routine set with SNESSetComputeApplicationContext()
331137596af1SLisandro Dalcin 
3312db781477SPatrick Sanan .seealso: `SNESCreate()`, `SNESSetUp()`, `SNESSolve()`
331337596af1SLisandro Dalcin @*/
331437596af1SLisandro Dalcin PetscErrorCode  SNESReset(SNES snes)
331537596af1SLisandro Dalcin {
331637596af1SLisandro Dalcin   PetscFunctionBegin;
331737596af1SLisandro Dalcin   PetscValidHeaderSpecific(snes,SNES_CLASSID,1);
3318d25893d9SBarry Smith   if (snes->ops->userdestroy && snes->user) {
33199566063dSJacob Faibussowitsch     PetscCall((*snes->ops->userdestroy)((void**)&snes->user));
33200298fd71SBarry Smith     snes->user = NULL;
3321d25893d9SBarry Smith   }
3322efd4aadfSBarry Smith   if (snes->npc) {
33239566063dSJacob Faibussowitsch     PetscCall(SNESReset(snes->npc));
33248a23116dSBarry Smith   }
33258a23116dSBarry Smith 
332637596af1SLisandro Dalcin   if (snes->ops->reset) {
33279566063dSJacob Faibussowitsch     PetscCall((*snes->ops->reset)(snes));
332837596af1SLisandro Dalcin   }
33299e764e56SPeter Brune   if (snes->ksp) {
33309566063dSJacob Faibussowitsch     PetscCall(KSPReset(snes->ksp));
33319e764e56SPeter Brune   }
33329e764e56SPeter Brune 
33339e764e56SPeter Brune   if (snes->linesearch) {
33349566063dSJacob Faibussowitsch     PetscCall(SNESLineSearchReset(snes->linesearch));
33359e764e56SPeter Brune   }
33369e764e56SPeter Brune 
33379566063dSJacob Faibussowitsch   PetscCall(VecDestroy(&snes->vec_rhs));
33389566063dSJacob Faibussowitsch   PetscCall(VecDestroy(&snes->vec_sol));
33399566063dSJacob Faibussowitsch   PetscCall(VecDestroy(&snes->vec_sol_update));
33409566063dSJacob Faibussowitsch   PetscCall(VecDestroy(&snes->vec_func));
33419566063dSJacob Faibussowitsch   PetscCall(MatDestroy(&snes->jacobian));
33429566063dSJacob Faibussowitsch   PetscCall(MatDestroy(&snes->jacobian_pre));
33439566063dSJacob Faibussowitsch   PetscCall(MatDestroy(&snes->picard));
33449566063dSJacob Faibussowitsch   PetscCall(VecDestroyVecs(snes->nwork,&snes->work));
33459566063dSJacob Faibussowitsch   PetscCall(VecDestroyVecs(snes->nvwork,&snes->vwork));
3346f5af7f23SKarl Rupp 
334740fdac6aSLawrence Mitchell   snes->alwayscomputesfinalresidual = PETSC_FALSE;
334840fdac6aSLawrence Mitchell 
334937596af1SLisandro Dalcin   snes->nwork       = snes->nvwork = 0;
335037596af1SLisandro Dalcin   snes->setupcalled = PETSC_FALSE;
335137596af1SLisandro Dalcin   PetscFunctionReturn(0);
335237596af1SLisandro Dalcin }
335337596af1SLisandro Dalcin 
335452baeb72SSatish Balay /*@
3355c4421ceaSFande Kong    SNESConvergedReasonViewCancel - Clears all the reasonview functions for a SNES object.
3356c4421ceaSFande Kong 
3357c4421ceaSFande Kong    Collective on SNES
3358c4421ceaSFande Kong 
3359c4421ceaSFande Kong    Input Parameter:
3360c4421ceaSFande Kong .  snes - iterative context obtained from SNESCreate()
3361c4421ceaSFande Kong 
3362c4421ceaSFande Kong    Level: intermediate
3363c4421ceaSFande Kong 
3364db781477SPatrick Sanan .seealso: `SNESCreate()`, `SNESDestroy()`, `SNESReset()`
3365c4421ceaSFande Kong @*/
3366c4421ceaSFande Kong PetscErrorCode  SNESConvergedReasonViewCancel(SNES snes)
3367c4421ceaSFande Kong {
3368c4421ceaSFande Kong   PetscInt       i;
3369c4421ceaSFande Kong 
3370c4421ceaSFande Kong   PetscFunctionBegin;
3371c4421ceaSFande Kong   PetscValidHeaderSpecific(snes,SNES_CLASSID,1);
3372c4421ceaSFande Kong   for (i=0; i<snes->numberreasonviews; i++) {
3373c4421ceaSFande Kong     if (snes->reasonviewdestroy[i]) {
33749566063dSJacob Faibussowitsch       PetscCall((*snes->reasonviewdestroy[i])(&snes->reasonviewcontext[i]));
3375c4421ceaSFande Kong     }
3376c4421ceaSFande Kong   }
3377c4421ceaSFande Kong   snes->numberreasonviews = 0;
3378c4421ceaSFande Kong   PetscFunctionReturn(0);
3379c4421ceaSFande Kong }
3380c4421ceaSFande Kong 
33811fb7b255SJunchao Zhang /*@C
33829b94acceSBarry Smith    SNESDestroy - Destroys the nonlinear solver context that was created
33839b94acceSBarry Smith    with SNESCreate().
33849b94acceSBarry Smith 
3385c7afd0dbSLois Curfman McInnes    Collective on SNES
3386c7afd0dbSLois Curfman McInnes 
33879b94acceSBarry Smith    Input Parameter:
33889b94acceSBarry Smith .  snes - the SNES context
33899b94acceSBarry Smith 
339036851e7fSLois Curfman McInnes    Level: beginner
339136851e7fSLois Curfman McInnes 
3392db781477SPatrick Sanan .seealso: `SNESCreate()`, `SNESSolve()`
33939b94acceSBarry Smith @*/
33946bf464f9SBarry Smith PetscErrorCode  SNESDestroy(SNES *snes)
33959b94acceSBarry Smith {
33963a40ed3dSBarry Smith   PetscFunctionBegin;
33976bf464f9SBarry Smith   if (!*snes) PetscFunctionReturn(0);
33986bf464f9SBarry Smith   PetscValidHeaderSpecific((*snes),SNES_CLASSID,1);
33999e5d0892SLisandro Dalcin   if (--((PetscObject)(*snes))->refct > 0) {*snes = NULL; PetscFunctionReturn(0);}
3400d4bb536fSBarry Smith 
34019566063dSJacob Faibussowitsch   PetscCall(SNESReset((*snes)));
34029566063dSJacob Faibussowitsch   PetscCall(SNESDestroy(&(*snes)->npc));
34036b8b9a38SLisandro Dalcin 
3404e04113cfSBarry Smith   /* if memory was published with SAWs then destroy it */
34059566063dSJacob Faibussowitsch   PetscCall(PetscObjectSAWsViewOff((PetscObject)*snes));
34069566063dSJacob Faibussowitsch   if ((*snes)->ops->destroy) PetscCall((*((*snes))->ops->destroy)((*snes)));
34076d4c513bSLisandro Dalcin 
34089566063dSJacob Faibussowitsch   if ((*snes)->dm) PetscCall(DMCoarsenHookRemove((*snes)->dm,DMCoarsenHook_SNESVecSol,DMRestrictHook_SNESVecSol,*snes));
34099566063dSJacob Faibussowitsch   PetscCall(DMDestroy(&(*snes)->dm));
34109566063dSJacob Faibussowitsch   PetscCall(KSPDestroy(&(*snes)->ksp));
34119566063dSJacob Faibussowitsch   PetscCall(SNESLineSearchDestroy(&(*snes)->linesearch));
34126b8b9a38SLisandro Dalcin 
34139566063dSJacob Faibussowitsch   PetscCall(PetscFree((*snes)->kspconvctx));
34146bf464f9SBarry Smith   if ((*snes)->ops->convergeddestroy) {
34159566063dSJacob Faibussowitsch     PetscCall((*(*snes)->ops->convergeddestroy)((*snes)->cnvP));
34166b8b9a38SLisandro Dalcin   }
3417071fcb05SBarry Smith   if ((*snes)->conv_hist_alloc) {
34189566063dSJacob Faibussowitsch     PetscCall(PetscFree2((*snes)->conv_hist,(*snes)->conv_hist_its));
341958c9b817SLisandro Dalcin   }
34209566063dSJacob Faibussowitsch   PetscCall(SNESMonitorCancel((*snes)));
34219566063dSJacob Faibussowitsch   PetscCall(SNESConvergedReasonViewCancel((*snes)));
34229566063dSJacob Faibussowitsch   PetscCall(PetscHeaderDestroy(snes));
34233a40ed3dSBarry Smith   PetscFunctionReturn(0);
34249b94acceSBarry Smith }
34259b94acceSBarry Smith 
34269b94acceSBarry Smith /* ----------- Routines to set solver parameters ---------- */
34279b94acceSBarry Smith 
3428a8054027SBarry Smith /*@
3429a8054027SBarry Smith    SNESSetLagPreconditioner - Determines when the preconditioner is rebuilt in the nonlinear solve.
3430a8054027SBarry Smith 
34313f9fe445SBarry Smith    Logically Collective on SNES
3432a8054027SBarry Smith 
3433a8054027SBarry Smith    Input Parameters:
3434a8054027SBarry Smith +  snes - the SNES context
3435d8e291bfSBarry Smith -  lag - 1 means rebuild every time the Jacobian is computed within a single nonlinear solve, 2 means every second time
34363b4f5425SBarry Smith          the Jacobian is built etc. -2 indicates rebuild preconditioner at next chance but then never rebuild after that
3437a8054027SBarry Smith 
3438a8054027SBarry Smith    Options Database Keys:
34393d5a8a6aSBarry Smith +    -snes_lag_jacobian_persists <true,false> - sets the persistence
34403d5a8a6aSBarry Smith .    -snes_lag_jacobian <-2,1,2,...> - sets the lag
34413d5a8a6aSBarry Smith .    -snes_lag_preconditioner_persists <true,false> - sets the persistence
34423d5a8a6aSBarry Smith -    -snes_lag_preconditioner <-2,1,2,...> - sets the lag
3443a8054027SBarry Smith 
3444a8054027SBarry Smith    Notes:
3445a8054027SBarry Smith    The default is 1
34463d5a8a6aSBarry Smith    The preconditioner is ALWAYS built in the first iteration of a nonlinear solve unless lag is -1 or SNESSetLagPreconditionerPersists() was called
3447d8e291bfSBarry Smith 
3448d8e291bfSBarry Smith    SNESSetLagPreconditionerPersists() allows using the same uniform lagging (for example every second solve) across multiple solves.
3449a8054027SBarry Smith 
3450a8054027SBarry Smith    Level: intermediate
3451a8054027SBarry Smith 
3452db781477SPatrick Sanan .seealso: `SNESSetTrustRegionTolerance()`, `SNESGetLagPreconditioner()`, `SNESSetLagJacobian()`, `SNESGetLagJacobian()`, `SNESSetLagPreconditionerPersists()`,
3453db781477SPatrick Sanan           `SNESSetLagJacobianPersists()`
3454a8054027SBarry Smith 
3455a8054027SBarry Smith @*/
34567087cfbeSBarry Smith PetscErrorCode  SNESSetLagPreconditioner(SNES snes,PetscInt lag)
3457a8054027SBarry Smith {
3458a8054027SBarry Smith   PetscFunctionBegin;
34590700a824SBarry Smith   PetscValidHeaderSpecific(snes,SNES_CLASSID,1);
34605f80ce2aSJacob Faibussowitsch   PetscCheck(lag >= -2,PETSC_COMM_SELF,PETSC_ERR_ARG_OUTOFRANGE,"Lag must be -2, -1, 1 or greater");
34615f80ce2aSJacob Faibussowitsch   PetscCheck(lag,PETSC_COMM_SELF,PETSC_ERR_ARG_OUTOFRANGE,"Lag cannot be 0");
3462c5eb9154SBarry Smith   PetscValidLogicalCollectiveInt(snes,lag,2);
3463a8054027SBarry Smith   snes->lagpreconditioner = lag;
3464a8054027SBarry Smith   PetscFunctionReturn(0);
3465a8054027SBarry Smith }
3466a8054027SBarry Smith 
3467efd51863SBarry Smith /*@
3468efd51863SBarry Smith    SNESSetGridSequence - sets the number of steps of grid sequencing that SNES does
3469efd51863SBarry Smith 
3470efd51863SBarry Smith    Logically Collective on SNES
3471efd51863SBarry Smith 
3472efd51863SBarry Smith    Input Parameters:
3473efd51863SBarry Smith +  snes - the SNES context
3474efd51863SBarry Smith -  steps - the number of refinements to do, defaults to 0
3475efd51863SBarry Smith 
3476efd51863SBarry Smith    Options Database Keys:
347767b8a455SSatish Balay .    -snes_grid_sequence <steps> - Use grid sequencing to generate initial guess
3478efd51863SBarry Smith 
3479efd51863SBarry Smith    Level: intermediate
3480efd51863SBarry Smith 
3481c0df2a02SJed Brown    Notes:
3482c0df2a02SJed Brown    Use SNESGetSolution() to extract the fine grid solution after grid sequencing.
3483c0df2a02SJed Brown 
3484db781477SPatrick Sanan .seealso: `SNESSetTrustRegionTolerance()`, `SNESGetLagPreconditioner()`, `SNESSetLagJacobian()`, `SNESGetLagJacobian()`, `SNESGetGridSequence()`
3485efd51863SBarry Smith 
3486efd51863SBarry Smith @*/
3487efd51863SBarry Smith PetscErrorCode  SNESSetGridSequence(SNES snes,PetscInt steps)
3488efd51863SBarry Smith {
3489efd51863SBarry Smith   PetscFunctionBegin;
3490efd51863SBarry Smith   PetscValidHeaderSpecific(snes,SNES_CLASSID,1);
3491efd51863SBarry Smith   PetscValidLogicalCollectiveInt(snes,steps,2);
3492efd51863SBarry Smith   snes->gridsequence = steps;
3493efd51863SBarry Smith   PetscFunctionReturn(0);
3494efd51863SBarry Smith }
3495efd51863SBarry Smith 
3496fa19ca70SBarry Smith /*@
3497fa19ca70SBarry Smith    SNESGetGridSequence - gets the number of steps of grid sequencing that SNES does
3498fa19ca70SBarry Smith 
3499fa19ca70SBarry Smith    Logically Collective on SNES
3500fa19ca70SBarry Smith 
3501fa19ca70SBarry Smith    Input Parameter:
3502fa19ca70SBarry Smith .  snes - the SNES context
3503fa19ca70SBarry Smith 
3504fa19ca70SBarry Smith    Output Parameter:
3505fa19ca70SBarry Smith .  steps - the number of refinements to do, defaults to 0
3506fa19ca70SBarry Smith 
3507fa19ca70SBarry Smith    Options Database Keys:
350867b8a455SSatish Balay .    -snes_grid_sequence <steps> - set number of refinements
3509fa19ca70SBarry Smith 
3510fa19ca70SBarry Smith    Level: intermediate
3511fa19ca70SBarry Smith 
3512fa19ca70SBarry Smith    Notes:
3513fa19ca70SBarry Smith    Use SNESGetSolution() to extract the fine grid solution after grid sequencing.
3514fa19ca70SBarry Smith 
3515db781477SPatrick Sanan .seealso: `SNESSetTrustRegionTolerance()`, `SNESGetLagPreconditioner()`, `SNESSetLagJacobian()`, `SNESGetLagJacobian()`, `SNESSetGridSequence()`
3516fa19ca70SBarry Smith 
3517fa19ca70SBarry Smith @*/
3518fa19ca70SBarry Smith PetscErrorCode  SNESGetGridSequence(SNES snes,PetscInt *steps)
3519fa19ca70SBarry Smith {
3520fa19ca70SBarry Smith   PetscFunctionBegin;
3521fa19ca70SBarry Smith   PetscValidHeaderSpecific(snes,SNES_CLASSID,1);
3522fa19ca70SBarry Smith   *steps = snes->gridsequence;
3523fa19ca70SBarry Smith   PetscFunctionReturn(0);
3524fa19ca70SBarry Smith }
3525fa19ca70SBarry Smith 
3526a8054027SBarry Smith /*@
3527a8054027SBarry Smith    SNESGetLagPreconditioner - Indicates how often the preconditioner is rebuilt
3528a8054027SBarry Smith 
35293f9fe445SBarry Smith    Not Collective
3530a8054027SBarry Smith 
3531a8054027SBarry Smith    Input Parameter:
3532a8054027SBarry Smith .  snes - the SNES context
3533a8054027SBarry Smith 
3534a8054027SBarry Smith    Output Parameter:
3535a8054027SBarry 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
35363b4f5425SBarry Smith          the Jacobian is built etc. -2 indicates rebuild preconditioner at next chance but then never rebuild after that
3537a8054027SBarry Smith 
3538a8054027SBarry Smith    Options Database Keys:
35393d5a8a6aSBarry Smith +    -snes_lag_jacobian_persists <true,false> - sets the persistence
35403d5a8a6aSBarry Smith .    -snes_lag_jacobian <-2,1,2,...> - sets the lag
35413d5a8a6aSBarry Smith .    -snes_lag_preconditioner_persists <true,false> - sets the persistence
35423d5a8a6aSBarry Smith -    -snes_lag_preconditioner <-2,1,2,...> - sets the lag
3543a8054027SBarry Smith 
3544a8054027SBarry Smith    Notes:
3545a8054027SBarry Smith    The default is 1
3546a8054027SBarry Smith    The preconditioner is ALWAYS built in the first iteration of a nonlinear solve unless lag is -1
3547a8054027SBarry Smith 
3548a8054027SBarry Smith    Level: intermediate
3549a8054027SBarry Smith 
3550db781477SPatrick Sanan .seealso: `SNESSetTrustRegionTolerance()`, `SNESSetLagPreconditioner()`, `SNESSetLagJacobianPersists()`, `SNESSetLagPreconditionerPersists()`
3551a8054027SBarry Smith 
3552a8054027SBarry Smith @*/
35537087cfbeSBarry Smith PetscErrorCode  SNESGetLagPreconditioner(SNES snes,PetscInt *lag)
3554a8054027SBarry Smith {
3555a8054027SBarry Smith   PetscFunctionBegin;
35560700a824SBarry Smith   PetscValidHeaderSpecific(snes,SNES_CLASSID,1);
3557a8054027SBarry Smith   *lag = snes->lagpreconditioner;
3558a8054027SBarry Smith   PetscFunctionReturn(0);
3559a8054027SBarry Smith }
3560a8054027SBarry Smith 
3561e35cf81dSBarry Smith /*@
3562e35cf81dSBarry Smith    SNESSetLagJacobian - Determines when the Jacobian is rebuilt in the nonlinear solve. See SNESSetLagPreconditioner() for determining how
3563e35cf81dSBarry Smith      often the preconditioner is rebuilt.
3564e35cf81dSBarry Smith 
35653f9fe445SBarry Smith    Logically Collective on SNES
3566e35cf81dSBarry Smith 
3567e35cf81dSBarry Smith    Input Parameters:
3568e35cf81dSBarry Smith +  snes - the SNES context
3569e35cf81dSBarry 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
3570fe3ffe1eSBarry Smith          the Jacobian is built etc. -2 means rebuild at next chance but then never again
3571e35cf81dSBarry Smith 
3572e35cf81dSBarry Smith    Options Database Keys:
35733d5a8a6aSBarry Smith +    -snes_lag_jacobian_persists <true,false> - sets the persistence
35743d5a8a6aSBarry Smith .    -snes_lag_jacobian <-2,1,2,...> - sets the lag
35753d5a8a6aSBarry Smith .    -snes_lag_preconditioner_persists <true,false> - sets the persistence
35763d5a8a6aSBarry Smith -    -snes_lag_preconditioner <-2,1,2,...> - sets the lag.
3577e35cf81dSBarry Smith 
3578e35cf81dSBarry Smith    Notes:
3579e35cf81dSBarry Smith    The default is 1
3580e35cf81dSBarry Smith    The Jacobian is ALWAYS built in the first iteration of a nonlinear solve unless lag is -1
3581fe3ffe1eSBarry 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
3582fe3ffe1eSBarry Smith    at the next Newton step but never again (unless it is reset to another value)
3583e35cf81dSBarry Smith 
3584e35cf81dSBarry Smith    Level: intermediate
3585e35cf81dSBarry Smith 
3586db781477SPatrick Sanan .seealso: `SNESSetTrustRegionTolerance()`, `SNESGetLagPreconditioner()`, `SNESSetLagPreconditioner()`, `SNESGetLagJacobianPersists()`, `SNESSetLagPreconditionerPersists()`
3587e35cf81dSBarry Smith 
3588e35cf81dSBarry Smith @*/
35897087cfbeSBarry Smith PetscErrorCode  SNESSetLagJacobian(SNES snes,PetscInt lag)
3590e35cf81dSBarry Smith {
3591e35cf81dSBarry Smith   PetscFunctionBegin;
35920700a824SBarry Smith   PetscValidHeaderSpecific(snes,SNES_CLASSID,1);
35935f80ce2aSJacob Faibussowitsch   PetscCheck(lag >= -2,PETSC_COMM_SELF,PETSC_ERR_ARG_OUTOFRANGE,"Lag must be -2, -1, 1 or greater");
35945f80ce2aSJacob Faibussowitsch   PetscCheck(lag,PETSC_COMM_SELF,PETSC_ERR_ARG_OUTOFRANGE,"Lag cannot be 0");
3595c5eb9154SBarry Smith   PetscValidLogicalCollectiveInt(snes,lag,2);
3596e35cf81dSBarry Smith   snes->lagjacobian = lag;
3597e35cf81dSBarry Smith   PetscFunctionReturn(0);
3598e35cf81dSBarry Smith }
3599e35cf81dSBarry Smith 
3600e35cf81dSBarry Smith /*@
3601e35cf81dSBarry Smith    SNESGetLagJacobian - Indicates how often the Jacobian is rebuilt. See SNESGetLagPreconditioner() to determine when the preconditioner is rebuilt
3602e35cf81dSBarry Smith 
36033f9fe445SBarry Smith    Not Collective
3604e35cf81dSBarry Smith 
3605e35cf81dSBarry Smith    Input Parameter:
3606e35cf81dSBarry Smith .  snes - the SNES context
3607e35cf81dSBarry Smith 
3608e35cf81dSBarry Smith    Output Parameter:
3609e35cf81dSBarry 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
3610e35cf81dSBarry Smith          the Jacobian is built etc.
3611e35cf81dSBarry Smith 
3612e35cf81dSBarry Smith    Notes:
3613e35cf81dSBarry Smith    The default is 1
36143d5a8a6aSBarry Smith    The jacobian is ALWAYS built in the first iteration of a nonlinear solve unless lag is -1 or SNESSetLagJacobianPersists() was called.
3615e35cf81dSBarry Smith 
3616e35cf81dSBarry Smith    Level: intermediate
3617e35cf81dSBarry Smith 
3618db781477SPatrick Sanan .seealso: `SNESSetTrustRegionTolerance()`, `SNESSetLagJacobian()`, `SNESSetLagPreconditioner()`, `SNESGetLagPreconditioner()`, `SNESSetLagJacobianPersists()`, `SNESSetLagPreconditionerPersists()`
3619e35cf81dSBarry Smith 
3620e35cf81dSBarry Smith @*/
36217087cfbeSBarry Smith PetscErrorCode  SNESGetLagJacobian(SNES snes,PetscInt *lag)
3622e35cf81dSBarry Smith {
3623e35cf81dSBarry Smith   PetscFunctionBegin;
36240700a824SBarry Smith   PetscValidHeaderSpecific(snes,SNES_CLASSID,1);
3625e35cf81dSBarry Smith   *lag = snes->lagjacobian;
3626e35cf81dSBarry Smith   PetscFunctionReturn(0);
3627e35cf81dSBarry Smith }
3628e35cf81dSBarry Smith 
362937ec4e1aSPeter Brune /*@
363037ec4e1aSPeter Brune    SNESSetLagJacobianPersists - Set whether or not the Jacobian lagging persists through multiple solves
363137ec4e1aSPeter Brune 
363237ec4e1aSPeter Brune    Logically collective on SNES
363337ec4e1aSPeter Brune 
3634d8d19677SJose E. Roman    Input Parameters:
363537ec4e1aSPeter Brune +  snes - the SNES context
36369d7e2deaSPeter Brune -   flg - jacobian lagging persists if true
363737ec4e1aSPeter Brune 
363837ec4e1aSPeter Brune    Options Database Keys:
36393d5a8a6aSBarry Smith +    -snes_lag_jacobian_persists <true,false> - sets the persistence
36403d5a8a6aSBarry Smith .    -snes_lag_jacobian <-2,1,2,...> - sets the lag
36413d5a8a6aSBarry Smith .    -snes_lag_preconditioner_persists <true,false> - sets the persistence
36423d5a8a6aSBarry Smith -    -snes_lag_preconditioner <-2,1,2,...> - sets the lag
36433d5a8a6aSBarry Smith 
364495452b02SPatrick Sanan    Notes:
364595452b02SPatrick Sanan     This is useful both for nonlinear preconditioning, where it's appropriate to have the Jacobian be stale by
364637ec4e1aSPeter Brune    several solves, and for implicit time-stepping, where Jacobian lagging in the inner nonlinear solve over several
364737ec4e1aSPeter Brune    timesteps may present huge efficiency gains.
364837ec4e1aSPeter Brune 
364937ec4e1aSPeter Brune    Level: developer
365037ec4e1aSPeter Brune 
3651db781477SPatrick Sanan .seealso: `SNESSetLagPreconditionerPersists()`, `SNESSetLagJacobian()`, `SNESGetLagJacobian()`, `SNESGetNPC()`, `SNESSetLagJacobianPersists()`
365237ec4e1aSPeter Brune 
365337ec4e1aSPeter Brune @*/
365437ec4e1aSPeter Brune PetscErrorCode  SNESSetLagJacobianPersists(SNES snes,PetscBool flg)
365537ec4e1aSPeter Brune {
365637ec4e1aSPeter Brune   PetscFunctionBegin;
365737ec4e1aSPeter Brune   PetscValidHeaderSpecific(snes,SNES_CLASSID,1);
365837ec4e1aSPeter Brune   PetscValidLogicalCollectiveBool(snes,flg,2);
365937ec4e1aSPeter Brune   snes->lagjac_persist = flg;
366037ec4e1aSPeter Brune   PetscFunctionReturn(0);
366137ec4e1aSPeter Brune }
366237ec4e1aSPeter Brune 
366337ec4e1aSPeter Brune /*@
3664d8e291bfSBarry Smith    SNESSetLagPreconditionerPersists - Set whether or not the preconditioner lagging persists through multiple nonlinear solves
366537ec4e1aSPeter Brune 
366637ec4e1aSPeter Brune    Logically Collective on SNES
366737ec4e1aSPeter Brune 
3668d8d19677SJose E. Roman    Input Parameters:
366937ec4e1aSPeter Brune +  snes - the SNES context
36709d7e2deaSPeter Brune -   flg - preconditioner lagging persists if true
367137ec4e1aSPeter Brune 
367237ec4e1aSPeter Brune    Options Database Keys:
36733d5a8a6aSBarry Smith +    -snes_lag_jacobian_persists <true,false> - sets the persistence
36743d5a8a6aSBarry Smith .    -snes_lag_jacobian <-2,1,2,...> - sets the lag
36753d5a8a6aSBarry Smith .    -snes_lag_preconditioner_persists <true,false> - sets the persistence
36763d5a8a6aSBarry Smith -    -snes_lag_preconditioner <-2,1,2,...> - sets the lag
367737ec4e1aSPeter Brune 
367895452b02SPatrick Sanan    Notes:
367995452b02SPatrick Sanan     This is useful both for nonlinear preconditioning, where it's appropriate to have the preconditioner be stale
368037ec4e1aSPeter Brune    by several solves, and for implicit time-stepping, where preconditioner lagging in the inner nonlinear solve over
368137ec4e1aSPeter Brune    several timesteps may present huge efficiency gains.
368237ec4e1aSPeter Brune 
368337ec4e1aSPeter Brune    Level: developer
368437ec4e1aSPeter Brune 
3685db781477SPatrick Sanan .seealso: `SNESSetLagJacobianPersists()`, `SNESSetLagJacobian()`, `SNESGetLagJacobian()`, `SNESGetNPC()`, `SNESSetLagPreconditioner()`
368637ec4e1aSPeter Brune 
368737ec4e1aSPeter Brune @*/
368837ec4e1aSPeter Brune PetscErrorCode  SNESSetLagPreconditionerPersists(SNES snes,PetscBool flg)
368937ec4e1aSPeter Brune {
369037ec4e1aSPeter Brune   PetscFunctionBegin;
369137ec4e1aSPeter Brune   PetscValidHeaderSpecific(snes,SNES_CLASSID,1);
369237ec4e1aSPeter Brune   PetscValidLogicalCollectiveBool(snes,flg,2);
369337ec4e1aSPeter Brune   snes->lagpre_persist = flg;
369437ec4e1aSPeter Brune   PetscFunctionReturn(0);
369537ec4e1aSPeter Brune }
369637ec4e1aSPeter Brune 
36979b94acceSBarry Smith /*@
3698be5caee7SBarry Smith    SNESSetForceIteration - force SNESSolve() to take at least one iteration regardless of the initial residual norm
3699be5caee7SBarry Smith 
3700be5caee7SBarry Smith    Logically Collective on SNES
3701be5caee7SBarry Smith 
3702be5caee7SBarry Smith    Input Parameters:
3703be5caee7SBarry Smith +  snes - the SNES context
3704be5caee7SBarry Smith -  force - PETSC_TRUE require at least one iteration
3705be5caee7SBarry Smith 
3706be5caee7SBarry Smith    Options Database Keys:
3707be5caee7SBarry Smith .    -snes_force_iteration <force> - Sets forcing an iteration
3708be5caee7SBarry Smith 
3709be5caee7SBarry Smith    Notes:
3710be5caee7SBarry Smith    This is used sometimes with TS to prevent TS from detecting a false steady state solution
3711be5caee7SBarry Smith 
3712be5caee7SBarry Smith    Level: intermediate
3713be5caee7SBarry Smith 
3714db781477SPatrick Sanan .seealso: `SNESSetTrustRegionTolerance()`, `SNESSetDivergenceTolerance()`
3715be5caee7SBarry Smith @*/
3716be5caee7SBarry Smith PetscErrorCode  SNESSetForceIteration(SNES snes,PetscBool force)
3717be5caee7SBarry Smith {
3718be5caee7SBarry Smith   PetscFunctionBegin;
3719be5caee7SBarry Smith   PetscValidHeaderSpecific(snes,SNES_CLASSID,1);
3720be5caee7SBarry Smith   snes->forceiteration = force;
3721be5caee7SBarry Smith   PetscFunctionReturn(0);
3722be5caee7SBarry Smith }
3723be5caee7SBarry Smith 
372485216dc7SFande Kong /*@
372585216dc7SFande Kong    SNESGetForceIteration - Whether or not to force SNESSolve() take at least one iteration regardless of the initial residual norm
372685216dc7SFande Kong 
372785216dc7SFande Kong    Logically Collective on SNES
372885216dc7SFande Kong 
372985216dc7SFande Kong    Input Parameters:
373085216dc7SFande Kong .  snes - the SNES context
373185216dc7SFande Kong 
373285216dc7SFande Kong    Output Parameter:
373385216dc7SFande Kong .  force - PETSC_TRUE requires at least one iteration.
373485216dc7SFande Kong 
373506dd6b0eSSatish Balay    Level: intermediate
373606dd6b0eSSatish Balay 
3737db781477SPatrick Sanan .seealso: `SNESSetForceIteration()`, `SNESSetTrustRegionTolerance()`, `SNESSetDivergenceTolerance()`
373885216dc7SFande Kong @*/
373985216dc7SFande Kong PetscErrorCode  SNESGetForceIteration(SNES snes,PetscBool *force)
374085216dc7SFande Kong {
374185216dc7SFande Kong   PetscFunctionBegin;
374285216dc7SFande Kong   PetscValidHeaderSpecific(snes,SNES_CLASSID,1);
374385216dc7SFande Kong   *force = snes->forceiteration;
374485216dc7SFande Kong   PetscFunctionReturn(0);
374585216dc7SFande Kong }
3746be5caee7SBarry Smith 
3747be5caee7SBarry Smith /*@
3748d7a720efSLois Curfman McInnes    SNESSetTolerances - Sets various parameters used in convergence tests.
37499b94acceSBarry Smith 
37503f9fe445SBarry Smith    Logically Collective on SNES
3751c7afd0dbSLois Curfman McInnes 
37529b94acceSBarry Smith    Input Parameters:
3753c7afd0dbSLois Curfman McInnes +  snes - the SNES context
375470441072SBarry Smith .  abstol - absolute convergence tolerance
375533174efeSLois Curfman McInnes .  rtol - relative convergence tolerance
37565358d0d4SBarry Smith .  stol -  convergence tolerance in terms of the norm of the change in the solution between steps,  || delta x || < stol*|| x ||
375733174efeSLois Curfman McInnes .  maxit - maximum number of iterations
3758e71169deSBarry Smith -  maxf - maximum number of function evaluations (-1 indicates no limit)
3759fee21e36SBarry Smith 
376033174efeSLois Curfman McInnes    Options Database Keys:
376170441072SBarry Smith +    -snes_atol <abstol> - Sets abstol
3762c7afd0dbSLois Curfman McInnes .    -snes_rtol <rtol> - Sets rtol
3763c7afd0dbSLois Curfman McInnes .    -snes_stol <stol> - Sets stol
3764c7afd0dbSLois Curfman McInnes .    -snes_max_it <maxit> - Sets maxit
3765c7afd0dbSLois Curfman McInnes -    -snes_max_funcs <maxf> - Sets maxf
37669b94acceSBarry Smith 
3767d7a720efSLois Curfman McInnes    Notes:
37689b94acceSBarry Smith    The default maximum number of iterations is 50.
37699b94acceSBarry Smith    The default maximum number of function evaluations is 1000.
37709b94acceSBarry Smith 
377136851e7fSLois Curfman McInnes    Level: intermediate
377236851e7fSLois Curfman McInnes 
3773db781477SPatrick Sanan .seealso: `SNESSetTrustRegionTolerance()`, `SNESSetDivergenceTolerance()`, `SNESSetForceIteration()`
37749b94acceSBarry Smith @*/
37757087cfbeSBarry Smith PetscErrorCode  SNESSetTolerances(SNES snes,PetscReal abstol,PetscReal rtol,PetscReal stol,PetscInt maxit,PetscInt maxf)
37769b94acceSBarry Smith {
37773a40ed3dSBarry Smith   PetscFunctionBegin;
37780700a824SBarry Smith   PetscValidHeaderSpecific(snes,SNES_CLASSID,1);
3779c5eb9154SBarry Smith   PetscValidLogicalCollectiveReal(snes,abstol,2);
3780c5eb9154SBarry Smith   PetscValidLogicalCollectiveReal(snes,rtol,3);
3781c5eb9154SBarry Smith   PetscValidLogicalCollectiveReal(snes,stol,4);
3782c5eb9154SBarry Smith   PetscValidLogicalCollectiveInt(snes,maxit,5);
3783c5eb9154SBarry Smith   PetscValidLogicalCollectiveInt(snes,maxf,6);
3784c5eb9154SBarry Smith 
3785ab54825eSJed Brown   if (abstol != PETSC_DEFAULT) {
37865f80ce2aSJacob Faibussowitsch     PetscCheck(abstol >= 0.0,PetscObjectComm((PetscObject)snes),PETSC_ERR_ARG_OUTOFRANGE,"Absolute tolerance %g must be non-negative",(double)abstol);
3787ab54825eSJed Brown     snes->abstol = abstol;
3788ab54825eSJed Brown   }
3789ab54825eSJed Brown   if (rtol != PETSC_DEFAULT) {
37905f80ce2aSJacob Faibussowitsch     PetscCheck(rtol >= 0.0 && 1.0 > rtol,PetscObjectComm((PetscObject)snes),PETSC_ERR_ARG_OUTOFRANGE,"Relative tolerance %g must be non-negative and less than 1.0",(double)rtol);
3791ab54825eSJed Brown     snes->rtol = rtol;
3792ab54825eSJed Brown   }
3793ab54825eSJed Brown   if (stol != PETSC_DEFAULT) {
37945f80ce2aSJacob Faibussowitsch     PetscCheck(stol >= 0.0,PetscObjectComm((PetscObject)snes),PETSC_ERR_ARG_OUTOFRANGE,"Step tolerance %g must be non-negative",(double)stol);
3795c60f73f4SPeter Brune     snes->stol = stol;
3796ab54825eSJed Brown   }
3797ab54825eSJed Brown   if (maxit != PETSC_DEFAULT) {
379863a3b9bcSJacob Faibussowitsch     PetscCheck(maxit >= 0,PetscObjectComm((PetscObject)snes),PETSC_ERR_ARG_OUTOFRANGE,"Maximum number of iterations %" PetscInt_FMT " must be non-negative",maxit);
3799ab54825eSJed Brown     snes->max_its = maxit;
3800ab54825eSJed Brown   }
3801ab54825eSJed Brown   if (maxf != PETSC_DEFAULT) {
380263a3b9bcSJacob Faibussowitsch     PetscCheck(maxf >= -1,PetscObjectComm((PetscObject)snes),PETSC_ERR_ARG_OUTOFRANGE,"Maximum number of function evaluations %" PetscInt_FMT " must be -1 or nonnegative",maxf);
3803ab54825eSJed Brown     snes->max_funcs = maxf;
3804ab54825eSJed Brown   }
380588976e71SPeter Brune   snes->tolerancesset = PETSC_TRUE;
38063a40ed3dSBarry Smith   PetscFunctionReturn(0);
38079b94acceSBarry Smith }
38089b94acceSBarry Smith 
3809e4d06f11SPatrick Farrell /*@
3810e4d06f11SPatrick Farrell    SNESSetDivergenceTolerance - Sets the divergence tolerance used for the SNES divergence test.
3811e4d06f11SPatrick Farrell 
3812e4d06f11SPatrick Farrell    Logically Collective on SNES
3813e4d06f11SPatrick Farrell 
3814e4d06f11SPatrick Farrell    Input Parameters:
3815e4d06f11SPatrick Farrell +  snes - the SNES context
3816e4d06f11SPatrick Farrell -  divtol - the divergence tolerance. Use -1 to deactivate the test.
3817e4d06f11SPatrick Farrell 
3818e4d06f11SPatrick Farrell    Options Database Keys:
3819a2b725a8SWilliam Gropp .    -snes_divergence_tolerance <divtol> - Sets divtol
3820e4d06f11SPatrick Farrell 
3821e4d06f11SPatrick Farrell    Notes:
3822e4d06f11SPatrick Farrell    The default divergence tolerance is 1e4.
3823e4d06f11SPatrick Farrell 
3824e4d06f11SPatrick Farrell    Level: intermediate
3825e4d06f11SPatrick Farrell 
3826db781477SPatrick Sanan .seealso: `SNESSetTolerances()`, `SNESGetDivergenceTolerance`
3827e4d06f11SPatrick Farrell @*/
3828e4d06f11SPatrick Farrell PetscErrorCode  SNESSetDivergenceTolerance(SNES snes,PetscReal divtol)
3829e4d06f11SPatrick Farrell {
3830e4d06f11SPatrick Farrell   PetscFunctionBegin;
3831e4d06f11SPatrick Farrell   PetscValidHeaderSpecific(snes,SNES_CLASSID,1);
3832e4d06f11SPatrick Farrell   PetscValidLogicalCollectiveReal(snes,divtol,2);
3833e4d06f11SPatrick Farrell 
3834e4d06f11SPatrick Farrell   if (divtol != PETSC_DEFAULT) {
3835e4d06f11SPatrick Farrell     snes->divtol = divtol;
3836e4d06f11SPatrick Farrell   }
3837e4d06f11SPatrick Farrell   else {
3838e4d06f11SPatrick Farrell     snes->divtol = 1.0e4;
3839e4d06f11SPatrick Farrell   }
3840e4d06f11SPatrick Farrell   PetscFunctionReturn(0);
3841e4d06f11SPatrick Farrell }
3842e4d06f11SPatrick Farrell 
38439b94acceSBarry Smith /*@
384433174efeSLois Curfman McInnes    SNESGetTolerances - Gets various parameters used in convergence tests.
384533174efeSLois Curfman McInnes 
3846c7afd0dbSLois Curfman McInnes    Not Collective
3847c7afd0dbSLois Curfman McInnes 
384833174efeSLois Curfman McInnes    Input Parameters:
3849c7afd0dbSLois Curfman McInnes +  snes - the SNES context
385085385478SLisandro Dalcin .  atol - absolute convergence tolerance
385133174efeSLois Curfman McInnes .  rtol - relative convergence tolerance
385233174efeSLois Curfman McInnes .  stol -  convergence tolerance in terms of the norm
385333174efeSLois Curfman McInnes            of the change in the solution between steps
385433174efeSLois Curfman McInnes .  maxit - maximum number of iterations
3855c7afd0dbSLois Curfman McInnes -  maxf - maximum number of function evaluations
3856fee21e36SBarry Smith 
385733174efeSLois Curfman McInnes    Notes:
38580298fd71SBarry Smith    The user can specify NULL for any parameter that is not needed.
385933174efeSLois Curfman McInnes 
386036851e7fSLois Curfman McInnes    Level: intermediate
386136851e7fSLois Curfman McInnes 
3862db781477SPatrick Sanan .seealso: `SNESSetTolerances()`
386333174efeSLois Curfman McInnes @*/
38647087cfbeSBarry Smith PetscErrorCode  SNESGetTolerances(SNES snes,PetscReal *atol,PetscReal *rtol,PetscReal *stol,PetscInt *maxit,PetscInt *maxf)
386533174efeSLois Curfman McInnes {
38663a40ed3dSBarry Smith   PetscFunctionBegin;
38670700a824SBarry Smith   PetscValidHeaderSpecific(snes,SNES_CLASSID,1);
386885385478SLisandro Dalcin   if (atol)  *atol  = snes->abstol;
386933174efeSLois Curfman McInnes   if (rtol)  *rtol  = snes->rtol;
3870c60f73f4SPeter Brune   if (stol)  *stol  = snes->stol;
387133174efeSLois Curfman McInnes   if (maxit) *maxit = snes->max_its;
387233174efeSLois Curfman McInnes   if (maxf)  *maxf  = snes->max_funcs;
38733a40ed3dSBarry Smith   PetscFunctionReturn(0);
387433174efeSLois Curfman McInnes }
387533174efeSLois Curfman McInnes 
3876e4d06f11SPatrick Farrell /*@
3877e4d06f11SPatrick Farrell    SNESGetDivergenceTolerance - Gets divergence tolerance used in divergence test.
3878e4d06f11SPatrick Farrell 
3879e4d06f11SPatrick Farrell    Not Collective
3880e4d06f11SPatrick Farrell 
3881e4d06f11SPatrick Farrell    Input Parameters:
3882e4d06f11SPatrick Farrell +  snes - the SNES context
3883e4d06f11SPatrick Farrell -  divtol - divergence tolerance
3884e4d06f11SPatrick Farrell 
3885e4d06f11SPatrick Farrell    Level: intermediate
3886e4d06f11SPatrick Farrell 
3887db781477SPatrick Sanan .seealso: `SNESSetDivergenceTolerance()`
3888e4d06f11SPatrick Farrell @*/
3889e4d06f11SPatrick Farrell PetscErrorCode  SNESGetDivergenceTolerance(SNES snes,PetscReal *divtol)
3890e4d06f11SPatrick Farrell {
3891e4d06f11SPatrick Farrell   PetscFunctionBegin;
3892e4d06f11SPatrick Farrell   PetscValidHeaderSpecific(snes,SNES_CLASSID,1);
3893e4d06f11SPatrick Farrell   if (divtol) *divtol = snes->divtol;
3894e4d06f11SPatrick Farrell   PetscFunctionReturn(0);
3895e4d06f11SPatrick Farrell }
3896e4d06f11SPatrick Farrell 
389733174efeSLois Curfman McInnes /*@
38989b94acceSBarry Smith    SNESSetTrustRegionTolerance - Sets the trust region parameter tolerance.
38999b94acceSBarry Smith 
39003f9fe445SBarry Smith    Logically Collective on SNES
3901fee21e36SBarry Smith 
3902c7afd0dbSLois Curfman McInnes    Input Parameters:
3903c7afd0dbSLois Curfman McInnes +  snes - the SNES context
3904c7afd0dbSLois Curfman McInnes -  tol - tolerance
3905c7afd0dbSLois Curfman McInnes 
39069b94acceSBarry Smith    Options Database Key:
3907c7afd0dbSLois Curfman McInnes .  -snes_trtol <tol> - Sets tol
39089b94acceSBarry Smith 
390936851e7fSLois Curfman McInnes    Level: intermediate
391036851e7fSLois Curfman McInnes 
3911db781477SPatrick Sanan .seealso: `SNESSetTolerances()`
39129b94acceSBarry Smith @*/
39137087cfbeSBarry Smith PetscErrorCode  SNESSetTrustRegionTolerance(SNES snes,PetscReal tol)
39149b94acceSBarry Smith {
39153a40ed3dSBarry Smith   PetscFunctionBegin;
39160700a824SBarry Smith   PetscValidHeaderSpecific(snes,SNES_CLASSID,1);
3917c5eb9154SBarry Smith   PetscValidLogicalCollectiveReal(snes,tol,2);
39189b94acceSBarry Smith   snes->deltatol = tol;
39193a40ed3dSBarry Smith   PetscFunctionReturn(0);
39209b94acceSBarry Smith }
39219b94acceSBarry Smith 
39226ba87a44SLisandro Dalcin PETSC_INTERN PetscErrorCode  SNESMonitorRange_Private(SNES,PetscInt,PetscReal*);
39236ba87a44SLisandro Dalcin 
39247087cfbeSBarry Smith PetscErrorCode  SNESMonitorLGRange(SNES snes,PetscInt n,PetscReal rnorm,void *monctx)
3925b271bb04SBarry Smith {
3926b271bb04SBarry Smith   PetscDrawLG      lg;
3927b271bb04SBarry Smith   PetscReal        x,y,per;
3928b271bb04SBarry Smith   PetscViewer      v = (PetscViewer)monctx;
3929b271bb04SBarry Smith   static PetscReal prev; /* should be in the context */
3930b271bb04SBarry Smith   PetscDraw        draw;
3931b271bb04SBarry Smith 
3932459f5d12SBarry Smith   PetscFunctionBegin;
39334d4332d5SBarry Smith   PetscValidHeaderSpecific(v,PETSC_VIEWER_CLASSID,4);
39349566063dSJacob Faibussowitsch   PetscCall(PetscViewerDrawGetDrawLG(v,0,&lg));
39359566063dSJacob Faibussowitsch   if (!n) PetscCall(PetscDrawLGReset(lg));
39369566063dSJacob Faibussowitsch   PetscCall(PetscDrawLGGetDraw(lg,&draw));
39379566063dSJacob Faibussowitsch   PetscCall(PetscDrawSetTitle(draw,"Residual norm"));
3938b271bb04SBarry Smith   x    = (PetscReal)n;
393977b4d14cSPeter Brune   if (rnorm > 0.0) y = PetscLog10Real(rnorm);
394094c9c6d3SKarl Rupp   else y = -15.0;
39419566063dSJacob Faibussowitsch   PetscCall(PetscDrawLGAddPoint(lg,&x,&y));
39426934998bSLisandro Dalcin   if (n < 20 || !(n % 5) || snes->reason) {
39439566063dSJacob Faibussowitsch     PetscCall(PetscDrawLGDraw(lg));
39449566063dSJacob Faibussowitsch     PetscCall(PetscDrawLGSave(lg));
3945b271bb04SBarry Smith   }
3946b271bb04SBarry Smith 
39479566063dSJacob Faibussowitsch   PetscCall(PetscViewerDrawGetDrawLG(v,1,&lg));
39489566063dSJacob Faibussowitsch   if (!n) PetscCall(PetscDrawLGReset(lg));
39499566063dSJacob Faibussowitsch   PetscCall(PetscDrawLGGetDraw(lg,&draw));
39509566063dSJacob Faibussowitsch   PetscCall(PetscDrawSetTitle(draw,"% elemts > .2*max elemt"));
39519566063dSJacob Faibussowitsch   PetscCall(SNESMonitorRange_Private(snes,n,&per));
3952b271bb04SBarry Smith   x    = (PetscReal)n;
3953b271bb04SBarry Smith   y    = 100.0*per;
39549566063dSJacob Faibussowitsch   PetscCall(PetscDrawLGAddPoint(lg,&x,&y));
39556934998bSLisandro Dalcin   if (n < 20 || !(n % 5) || snes->reason) {
39569566063dSJacob Faibussowitsch     PetscCall(PetscDrawLGDraw(lg));
39579566063dSJacob Faibussowitsch     PetscCall(PetscDrawLGSave(lg));
3958b271bb04SBarry Smith   }
3959b271bb04SBarry Smith 
39609566063dSJacob Faibussowitsch   PetscCall(PetscViewerDrawGetDrawLG(v,2,&lg));
39619566063dSJacob Faibussowitsch   if (!n) {prev = rnorm;PetscCall(PetscDrawLGReset(lg));}
39629566063dSJacob Faibussowitsch   PetscCall(PetscDrawLGGetDraw(lg,&draw));
39639566063dSJacob Faibussowitsch   PetscCall(PetscDrawSetTitle(draw,"(norm -oldnorm)/oldnorm"));
3964b271bb04SBarry Smith   x    = (PetscReal)n;
3965b271bb04SBarry Smith   y    = (prev - rnorm)/prev;
39669566063dSJacob Faibussowitsch   PetscCall(PetscDrawLGAddPoint(lg,&x,&y));
39676934998bSLisandro Dalcin   if (n < 20 || !(n % 5) || snes->reason) {
39689566063dSJacob Faibussowitsch     PetscCall(PetscDrawLGDraw(lg));
39699566063dSJacob Faibussowitsch     PetscCall(PetscDrawLGSave(lg));
3970b271bb04SBarry Smith   }
3971b271bb04SBarry Smith 
39729566063dSJacob Faibussowitsch   PetscCall(PetscViewerDrawGetDrawLG(v,3,&lg));
39739566063dSJacob Faibussowitsch   if (!n) PetscCall(PetscDrawLGReset(lg));
39749566063dSJacob Faibussowitsch   PetscCall(PetscDrawLGGetDraw(lg,&draw));
39759566063dSJacob Faibussowitsch   PetscCall(PetscDrawSetTitle(draw,"(norm -oldnorm)/oldnorm*(% > .2 max)"));
3976b271bb04SBarry Smith   x    = (PetscReal)n;
3977b271bb04SBarry Smith   y    = (prev - rnorm)/(prev*per);
3978b271bb04SBarry Smith   if (n > 2) { /*skip initial crazy value */
39799566063dSJacob Faibussowitsch     PetscCall(PetscDrawLGAddPoint(lg,&x,&y));
3980b271bb04SBarry Smith   }
39816934998bSLisandro Dalcin   if (n < 20 || !(n % 5) || snes->reason) {
39829566063dSJacob Faibussowitsch     PetscCall(PetscDrawLGDraw(lg));
39839566063dSJacob Faibussowitsch     PetscCall(PetscDrawLGSave(lg));
3984b271bb04SBarry Smith   }
3985b271bb04SBarry Smith   prev = rnorm;
3986b271bb04SBarry Smith   PetscFunctionReturn(0);
3987b271bb04SBarry Smith }
3988b271bb04SBarry Smith 
3989228d79bcSJed Brown /*@
3990228d79bcSJed Brown    SNESMonitor - runs the user provided monitor routines, if they exist
3991228d79bcSJed Brown 
3992228d79bcSJed Brown    Collective on SNES
3993228d79bcSJed Brown 
3994228d79bcSJed Brown    Input Parameters:
3995228d79bcSJed Brown +  snes - nonlinear solver context obtained from SNESCreate()
3996228d79bcSJed Brown .  iter - iteration number
3997228d79bcSJed Brown -  rnorm - relative norm of the residual
3998228d79bcSJed Brown 
3999228d79bcSJed Brown    Notes:
4000228d79bcSJed Brown    This routine is called by the SNES implementations.
4001228d79bcSJed Brown    It does not typically need to be called by the user.
4002228d79bcSJed Brown 
4003228d79bcSJed Brown    Level: developer
4004228d79bcSJed Brown 
4005db781477SPatrick Sanan .seealso: `SNESMonitorSet()`
4006228d79bcSJed Brown @*/
40077a03ce2fSLisandro Dalcin PetscErrorCode  SNESMonitor(SNES snes,PetscInt iter,PetscReal rnorm)
40087a03ce2fSLisandro Dalcin {
40097a03ce2fSLisandro Dalcin   PetscInt       i,n = snes->numbermonitors;
40107a03ce2fSLisandro Dalcin 
40117a03ce2fSLisandro Dalcin   PetscFunctionBegin;
40129566063dSJacob Faibussowitsch   PetscCall(VecLockReadPush(snes->vec_sol));
40137a03ce2fSLisandro Dalcin   for (i=0; i<n; i++) {
40149566063dSJacob Faibussowitsch     PetscCall((*snes->monitor[i])(snes,iter,rnorm,snes->monitorcontext[i]));
40157a03ce2fSLisandro Dalcin   }
40169566063dSJacob Faibussowitsch   PetscCall(VecLockReadPop(snes->vec_sol));
40177a03ce2fSLisandro Dalcin   PetscFunctionReturn(0);
40187a03ce2fSLisandro Dalcin }
40197a03ce2fSLisandro Dalcin 
40209b94acceSBarry Smith /* ------------ Routines to set performance monitoring options ----------- */
40219b94acceSBarry Smith 
4022bf388a1fSBarry Smith /*MC
4023bf388a1fSBarry Smith     SNESMonitorFunction - functional form passed to SNESMonitorSet() to monitor convergence of nonlinear solver
4024bf388a1fSBarry Smith 
4025bf388a1fSBarry Smith      Synopsis:
4026aaa7dc30SBarry Smith      #include <petscsnes.h>
4027bf388a1fSBarry Smith $    PetscErrorCode SNESMonitorFunction(SNES snes,PetscInt its, PetscReal norm,void *mctx)
4028bf388a1fSBarry Smith 
40291843f636SBarry Smith      Collective on snes
40301843f636SBarry Smith 
40311843f636SBarry Smith     Input Parameters:
4032bf388a1fSBarry Smith +    snes - the SNES context
4033bf388a1fSBarry Smith .    its - iteration number
4034bf388a1fSBarry Smith .    norm - 2-norm function value (may be estimated)
4035bf388a1fSBarry Smith -    mctx - [optional] monitoring context
4036bf388a1fSBarry Smith 
4037878cb397SSatish Balay    Level: advanced
4038878cb397SSatish Balay 
4039db781477SPatrick Sanan .seealso: `SNESMonitorSet()`, `SNESMonitorGet()`
4040bf388a1fSBarry Smith M*/
4041bf388a1fSBarry Smith 
40429b94acceSBarry Smith /*@C
4043a6570f20SBarry Smith    SNESMonitorSet - Sets an ADDITIONAL function that is to be used at every
40449b94acceSBarry Smith    iteration of the nonlinear solver to display the iteration's
40459b94acceSBarry Smith    progress.
40469b94acceSBarry Smith 
40473f9fe445SBarry Smith    Logically Collective on SNES
4048fee21e36SBarry Smith 
4049c7afd0dbSLois Curfman McInnes    Input Parameters:
4050c7afd0dbSLois Curfman McInnes +  snes - the SNES context
40516e4dcb14SBarry Smith .  f - the monitor function, see SNESMonitorFunction for the calling sequence
4052b8a78c4aSBarry Smith .  mctx - [optional] user-defined context for private data for the
40530298fd71SBarry Smith           monitor routine (use NULL if no context is desired)
4054b3006f0bSLois Curfman McInnes -  monitordestroy - [optional] routine that frees monitor context
40550298fd71SBarry Smith           (may be NULL)
40569b94acceSBarry Smith 
40579665c990SLois Curfman McInnes    Options Database Keys:
4058a6570f20SBarry Smith +    -snes_monitor        - sets SNESMonitorDefault()
4059798534f6SMatthew G. Knepley .    -snes_monitor draw::draw_lg - sets line graph monitor,
4060cca6129bSJed Brown -    -snes_monitor_cancel - cancels all monitors that have
4061c7afd0dbSLois Curfman McInnes                             been hardwired into a code by
4062a6570f20SBarry Smith                             calls to SNESMonitorSet(), but
4063c7afd0dbSLois Curfman McInnes                             does not cancel those set via
4064c7afd0dbSLois Curfman McInnes                             the options database.
40659665c990SLois Curfman McInnes 
4066639f9d9dSBarry Smith    Notes:
40676bc08f3fSLois Curfman McInnes    Several different monitoring routines may be set by calling
4068a6570f20SBarry Smith    SNESMonitorSet() multiple times; all will be called in the
40696bc08f3fSLois Curfman McInnes    order in which they were set.
4070639f9d9dSBarry Smith 
407195452b02SPatrick Sanan    Fortran Notes:
407295452b02SPatrick Sanan     Only a single monitor function can be set for each SNES object
4073025f1a04SBarry Smith 
407436851e7fSLois Curfman McInnes    Level: intermediate
407536851e7fSLois Curfman McInnes 
4076db781477SPatrick Sanan .seealso: `SNESMonitorDefault()`, `SNESMonitorCancel()`, `SNESMonitorFunction`
40779b94acceSBarry Smith @*/
40786e4dcb14SBarry Smith PetscErrorCode  SNESMonitorSet(SNES snes,PetscErrorCode (*f)(SNES,PetscInt,PetscReal,void*),void *mctx,PetscErrorCode (*monitordestroy)(void**))
40799b94acceSBarry Smith {
4080b90d0a6eSBarry Smith   PetscInt       i;
408178064530SBarry Smith   PetscBool      identical;
4082b90d0a6eSBarry Smith 
40833a40ed3dSBarry Smith   PetscFunctionBegin;
40840700a824SBarry Smith   PetscValidHeaderSpecific(snes,SNES_CLASSID,1);
4085b90d0a6eSBarry Smith   for (i=0; i<snes->numbermonitors;i++) {
40869566063dSJacob Faibussowitsch     PetscCall(PetscMonitorCompare((PetscErrorCode (*)(void))f,mctx,monitordestroy,(PetscErrorCode (*)(void))snes->monitor[i],snes->monitorcontext[i],snes->monitordestroy[i],&identical));
408778064530SBarry Smith     if (identical) PetscFunctionReturn(0);
4088649052a6SBarry Smith   }
40895f80ce2aSJacob Faibussowitsch   PetscCheck(snes->numbermonitors < MAXSNESMONITORS,PETSC_COMM_SELF,PETSC_ERR_ARG_OUTOFRANGE,"Too many monitors set");
40906e4dcb14SBarry Smith   snes->monitor[snes->numbermonitors]          = f;
4091b8a78c4aSBarry Smith   snes->monitordestroy[snes->numbermonitors]   = monitordestroy;
4092639f9d9dSBarry Smith   snes->monitorcontext[snes->numbermonitors++] = (void*)mctx;
40933a40ed3dSBarry Smith   PetscFunctionReturn(0);
40949b94acceSBarry Smith }
40959b94acceSBarry Smith 
4096a278d85bSSatish Balay /*@
4097a6570f20SBarry Smith    SNESMonitorCancel - Clears all the monitor functions for a SNES object.
40985cd90555SBarry Smith 
40993f9fe445SBarry Smith    Logically Collective on SNES
4100c7afd0dbSLois Curfman McInnes 
41015cd90555SBarry Smith    Input Parameters:
41025cd90555SBarry Smith .  snes - the SNES context
41035cd90555SBarry Smith 
41041a480d89SAdministrator    Options Database Key:
4105a6570f20SBarry Smith .  -snes_monitor_cancel - cancels all monitors that have been hardwired
4106a6570f20SBarry Smith     into a code by calls to SNESMonitorSet(), but does not cancel those
4107c7afd0dbSLois Curfman McInnes     set via the options database
41085cd90555SBarry Smith 
41095cd90555SBarry Smith    Notes:
41105cd90555SBarry Smith    There is no way to clear one specific monitor from a SNES object.
41115cd90555SBarry Smith 
411236851e7fSLois Curfman McInnes    Level: intermediate
411336851e7fSLois Curfman McInnes 
4114db781477SPatrick Sanan .seealso: `SNESMonitorDefault()`, `SNESMonitorSet()`
41155cd90555SBarry Smith @*/
41167087cfbeSBarry Smith PetscErrorCode  SNESMonitorCancel(SNES snes)
41175cd90555SBarry Smith {
4118d952e501SBarry Smith   PetscInt       i;
4119d952e501SBarry Smith 
41205cd90555SBarry Smith   PetscFunctionBegin;
41210700a824SBarry Smith   PetscValidHeaderSpecific(snes,SNES_CLASSID,1);
4122d952e501SBarry Smith   for (i=0; i<snes->numbermonitors; i++) {
4123d952e501SBarry Smith     if (snes->monitordestroy[i]) {
41249566063dSJacob Faibussowitsch       PetscCall((*snes->monitordestroy[i])(&snes->monitorcontext[i]));
4125d952e501SBarry Smith     }
4126d952e501SBarry Smith   }
41275cd90555SBarry Smith   snes->numbermonitors = 0;
41285cd90555SBarry Smith   PetscFunctionReturn(0);
41295cd90555SBarry Smith }
41305cd90555SBarry Smith 
4131bf388a1fSBarry Smith /*MC
4132bf388a1fSBarry Smith     SNESConvergenceTestFunction - functional form used for testing of convergence of nonlinear solver
4133bf388a1fSBarry Smith 
4134bf388a1fSBarry Smith      Synopsis:
4135aaa7dc30SBarry Smith      #include <petscsnes.h>
4136bf388a1fSBarry Smith $     PetscErrorCode SNESConvergenceTest(SNES snes,PetscInt it,PetscReal xnorm,PetscReal gnorm,PetscReal f,SNESConvergedReason *reason,void *cctx)
4137bf388a1fSBarry Smith 
41381843f636SBarry Smith      Collective on snes
41391843f636SBarry Smith 
41401843f636SBarry Smith     Input Parameters:
4141bf388a1fSBarry Smith +    snes - the SNES context
4142bf388a1fSBarry Smith .    it - current iteration (0 is the first and is before any Newton step)
4143bf388a1fSBarry Smith .    xnorm - 2-norm of current iterate
4144bf388a1fSBarry Smith .    gnorm - 2-norm of current step
41451843f636SBarry Smith .    f - 2-norm of function
41461843f636SBarry Smith -    cctx - [optional] convergence context
41471843f636SBarry Smith 
41481843f636SBarry Smith     Output Parameter:
41491843f636SBarry Smith .    reason - reason for convergence/divergence, only needs to be set when convergence or divergence is detected
4150bf388a1fSBarry Smith 
4151878cb397SSatish Balay    Level: intermediate
4152bf388a1fSBarry Smith 
4153db781477SPatrick Sanan .seealso: `SNESSetConvergenceTest()`, `SNESGetConvergenceTest()`
4154bf388a1fSBarry Smith M*/
4155bf388a1fSBarry Smith 
41569b94acceSBarry Smith /*@C
41579b94acceSBarry Smith    SNESSetConvergenceTest - Sets the function that is to be used
41589b94acceSBarry Smith    to test for convergence of the nonlinear iterative solution.
41599b94acceSBarry Smith 
41603f9fe445SBarry Smith    Logically Collective on SNES
4161fee21e36SBarry Smith 
4162c7afd0dbSLois Curfman McInnes    Input Parameters:
4163c7afd0dbSLois Curfman McInnes +  snes - the SNES context
4164bf388a1fSBarry Smith .  SNESConvergenceTestFunction - routine to test for convergence
41650298fd71SBarry Smith .  cctx - [optional] context for private data for the convergence routine  (may be NULL)
4166cf90aa19SBarry Smith -  destroy - [optional] destructor for the context (may be NULL; PETSC_NULL_FUNCTION in Fortran)
41679b94acceSBarry Smith 
416836851e7fSLois Curfman McInnes    Level: advanced
416936851e7fSLois Curfman McInnes 
4170db781477SPatrick Sanan .seealso: `SNESConvergedDefault()`, `SNESConvergedSkip()`, `SNESConvergenceTestFunction`
41719b94acceSBarry Smith @*/
4172bf388a1fSBarry Smith PetscErrorCode  SNESSetConvergenceTest(SNES snes,PetscErrorCode (*SNESConvergenceTestFunction)(SNES,PetscInt,PetscReal,PetscReal,PetscReal,SNESConvergedReason*,void*),void *cctx,PetscErrorCode (*destroy)(void*))
41739b94acceSBarry Smith {
41743a40ed3dSBarry Smith   PetscFunctionBegin;
41750700a824SBarry Smith   PetscValidHeaderSpecific(snes,SNES_CLASSID,1);
4176e2a6519dSDmitry Karpeev   if (!SNESConvergenceTestFunction) SNESConvergenceTestFunction = SNESConvergedSkip;
41777f7931b9SBarry Smith   if (snes->ops->convergeddestroy) {
41789566063dSJacob Faibussowitsch     PetscCall((*snes->ops->convergeddestroy)(snes->cnvP));
41797f7931b9SBarry Smith   }
4180bf388a1fSBarry Smith   snes->ops->converged        = SNESConvergenceTestFunction;
41817f7931b9SBarry Smith   snes->ops->convergeddestroy = destroy;
418285385478SLisandro Dalcin   snes->cnvP                  = cctx;
41833a40ed3dSBarry Smith   PetscFunctionReturn(0);
41849b94acceSBarry Smith }
41859b94acceSBarry Smith 
418652baeb72SSatish Balay /*@
4187184914b5SBarry Smith    SNESGetConvergedReason - Gets the reason the SNES iteration was stopped.
4188184914b5SBarry Smith 
4189184914b5SBarry Smith    Not Collective
4190184914b5SBarry Smith 
4191184914b5SBarry Smith    Input Parameter:
4192184914b5SBarry Smith .  snes - the SNES context
4193184914b5SBarry Smith 
4194184914b5SBarry Smith    Output Parameter:
41954d0a8057SBarry Smith .  reason - negative value indicates diverged, positive value converged, see SNESConvergedReason or the
4196184914b5SBarry Smith             manual pages for the individual convergence tests for complete lists
4197184914b5SBarry Smith 
41986a4d7782SBarry Smith    Options Database:
41996a4d7782SBarry Smith .   -snes_converged_reason - prints the reason to standard out
42006a4d7782SBarry Smith 
4201184914b5SBarry Smith    Level: intermediate
4202184914b5SBarry Smith 
420395452b02SPatrick Sanan    Notes:
420495452b02SPatrick Sanan     Should only be called after the call the SNESSolve() is complete, if it is called earlier it returns the value SNES__CONVERGED_ITERATING.
4205184914b5SBarry Smith 
4206db781477SPatrick Sanan .seealso: `SNESSetConvergenceTest()`, `SNESSetConvergedReason()`, `SNESConvergedReason`
4207184914b5SBarry Smith @*/
42087087cfbeSBarry Smith PetscErrorCode SNESGetConvergedReason(SNES snes,SNESConvergedReason *reason)
4209184914b5SBarry Smith {
4210184914b5SBarry Smith   PetscFunctionBegin;
42110700a824SBarry Smith   PetscValidHeaderSpecific(snes,SNES_CLASSID,1);
42124482741eSBarry Smith   PetscValidPointer(reason,2);
4213184914b5SBarry Smith   *reason = snes->reason;
4214184914b5SBarry Smith   PetscFunctionReturn(0);
4215184914b5SBarry Smith }
4216184914b5SBarry Smith 
4217c4421ceaSFande Kong /*@C
4218c4421ceaSFande Kong    SNESGetConvergedReasonString - Return a human readable string for snes converged reason
4219c4421ceaSFande Kong 
4220c4421ceaSFande Kong    Not Collective
4221c4421ceaSFande Kong 
4222c4421ceaSFande Kong    Input Parameter:
4223c4421ceaSFande Kong .  snes - the SNES context
4224c4421ceaSFande Kong 
4225c4421ceaSFande Kong    Output Parameter:
4226c4421ceaSFande Kong .  strreason - a human readable string that describes SNES converged reason
4227c4421ceaSFande Kong 
422899c90e12SSatish Balay    Level: beginner
4229c4421ceaSFande Kong 
4230db781477SPatrick Sanan .seealso: `SNESGetConvergedReason()`
4231c4421ceaSFande Kong @*/
4232c4421ceaSFande Kong PetscErrorCode SNESGetConvergedReasonString(SNES snes, const char** strreason)
4233c4421ceaSFande Kong {
4234c4421ceaSFande Kong   PetscFunctionBegin;
4235c4421ceaSFande Kong   PetscValidHeaderSpecific(snes,SNES_CLASSID,1);
4236dadcf809SJacob Faibussowitsch   PetscValidPointer(strreason,2);
4237c4421ceaSFande Kong   *strreason = SNESConvergedReasons[snes->reason];
4238c4421ceaSFande Kong   PetscFunctionReturn(0);
4239c4421ceaSFande Kong }
4240c4421ceaSFande Kong 
424133866048SMatthew G. Knepley /*@
424233866048SMatthew G. Knepley    SNESSetConvergedReason - Sets the reason the SNES iteration was stopped.
424333866048SMatthew G. Knepley 
424433866048SMatthew G. Knepley    Not Collective
424533866048SMatthew G. Knepley 
424633866048SMatthew G. Knepley    Input Parameters:
424733866048SMatthew G. Knepley +  snes - the SNES context
424833866048SMatthew G. Knepley -  reason - negative value indicates diverged, positive value converged, see SNESConvergedReason or the
424933866048SMatthew G. Knepley             manual pages for the individual convergence tests for complete lists
425033866048SMatthew G. Knepley 
425133866048SMatthew G. Knepley    Level: intermediate
425233866048SMatthew G. Knepley 
4253db781477SPatrick Sanan .seealso: `SNESGetConvergedReason()`, `SNESSetConvergenceTest()`, `SNESConvergedReason`
425433866048SMatthew G. Knepley @*/
425533866048SMatthew G. Knepley PetscErrorCode SNESSetConvergedReason(SNES snes,SNESConvergedReason reason)
425633866048SMatthew G. Knepley {
425733866048SMatthew G. Knepley   PetscFunctionBegin;
425833866048SMatthew G. Knepley   PetscValidHeaderSpecific(snes,SNES_CLASSID,1);
425933866048SMatthew G. Knepley   snes->reason = reason;
426033866048SMatthew G. Knepley   PetscFunctionReturn(0);
426133866048SMatthew G. Knepley }
426233866048SMatthew G. Knepley 
4263c9005455SLois Curfman McInnes /*@
4264c9005455SLois Curfman McInnes    SNESSetConvergenceHistory - Sets the array used to hold the convergence history.
4265c9005455SLois Curfman McInnes 
42663f9fe445SBarry Smith    Logically Collective on SNES
4267fee21e36SBarry Smith 
4268c7afd0dbSLois Curfman McInnes    Input Parameters:
4269c7afd0dbSLois Curfman McInnes +  snes - iterative context obtained from SNESCreate()
42708c7482ecSBarry Smith .  a   - array to hold history, this array will contain the function norms computed at each step
4271cd5578b5SBarry Smith .  its - integer array holds the number of linear iterations for each solve.
4272758f92a0SBarry Smith .  na  - size of a and its
427364731454SLois Curfman McInnes -  reset - PETSC_TRUE indicates each new nonlinear solve resets the history counter to zero,
4274758f92a0SBarry Smith            else it continues storing new values for new nonlinear solves after the old ones
4275c7afd0dbSLois Curfman McInnes 
4276308dcc3eSBarry Smith    Notes:
42770298fd71SBarry Smith    If 'a' and 'its' are NULL then space is allocated for the history. If 'na' PETSC_DECIDE or PETSC_DEFAULT then a
4278308dcc3eSBarry Smith    default array of length 10000 is allocated.
4279308dcc3eSBarry Smith 
4280c9005455SLois Curfman McInnes    This routine is useful, e.g., when running a code for purposes
4281c9005455SLois Curfman McInnes    of accurate performance monitoring, when no I/O should be done
4282c9005455SLois Curfman McInnes    during the section of code that is being timed.
4283c9005455SLois Curfman McInnes 
428436851e7fSLois Curfman McInnes    Level: intermediate
428536851e7fSLois Curfman McInnes 
4286db781477SPatrick Sanan .seealso: `SNESGetConvergenceHistory()`
4287758f92a0SBarry Smith 
4288c9005455SLois Curfman McInnes @*/
42897087cfbeSBarry Smith PetscErrorCode  SNESSetConvergenceHistory(SNES snes,PetscReal a[],PetscInt its[],PetscInt na,PetscBool reset)
4290c9005455SLois Curfman McInnes {
42913a40ed3dSBarry Smith   PetscFunctionBegin;
42920700a824SBarry Smith   PetscValidHeaderSpecific(snes,SNES_CLASSID,1);
4293064a246eSJacob Faibussowitsch   if (a) PetscValidRealPointer(a,2);
4294a562a398SLisandro Dalcin   if (its) PetscValidIntPointer(its,3);
42957a1ec6d4SBarry Smith   if (!a) {
4296308dcc3eSBarry Smith     if (na == PETSC_DECIDE || na == PETSC_DEFAULT) na = 1000;
42979566063dSJacob Faibussowitsch     PetscCall(PetscCalloc2(na,&a,na,&its));
4298071fcb05SBarry Smith     snes->conv_hist_alloc = PETSC_TRUE;
4299308dcc3eSBarry Smith   }
4300c9005455SLois Curfman McInnes   snes->conv_hist       = a;
4301758f92a0SBarry Smith   snes->conv_hist_its   = its;
4302115dd874SBarry Smith   snes->conv_hist_max   = (size_t)na;
4303a12bc48fSLisandro Dalcin   snes->conv_hist_len   = 0;
4304758f92a0SBarry Smith   snes->conv_hist_reset = reset;
4305758f92a0SBarry Smith   PetscFunctionReturn(0);
4306758f92a0SBarry Smith }
4307758f92a0SBarry Smith 
4308308dcc3eSBarry Smith #if defined(PETSC_HAVE_MATLAB_ENGINE)
4309c6db04a5SJed Brown #include <engine.h>   /* MATLAB include file */
4310c6db04a5SJed Brown #include <mex.h>      /* MATLAB include file */
431199e0435eSBarry Smith 
43128cc058d9SJed Brown PETSC_EXTERN mxArray *SNESGetConvergenceHistoryMatlab(SNES snes)
4313308dcc3eSBarry Smith {
4314308dcc3eSBarry Smith   mxArray   *mat;
4315308dcc3eSBarry Smith   PetscInt  i;
4316308dcc3eSBarry Smith   PetscReal *ar;
4317308dcc3eSBarry Smith 
4318308dcc3eSBarry Smith   PetscFunctionBegin;
4319308dcc3eSBarry Smith   mat = mxCreateDoubleMatrix(snes->conv_hist_len,1,mxREAL);
4320308dcc3eSBarry Smith   ar  = (PetscReal*) mxGetData(mat);
4321f5af7f23SKarl Rupp   for (i=0; i<snes->conv_hist_len; i++) ar[i] = snes->conv_hist[i];
4322308dcc3eSBarry Smith   PetscFunctionReturn(mat);
4323308dcc3eSBarry Smith }
4324308dcc3eSBarry Smith #endif
4325308dcc3eSBarry Smith 
43260c4c9dddSBarry Smith /*@C
4327758f92a0SBarry Smith    SNESGetConvergenceHistory - Gets the array used to hold the convergence history.
4328758f92a0SBarry Smith 
43293f9fe445SBarry Smith    Not Collective
4330758f92a0SBarry Smith 
4331758f92a0SBarry Smith    Input Parameter:
4332758f92a0SBarry Smith .  snes - iterative context obtained from SNESCreate()
4333758f92a0SBarry Smith 
4334758f92a0SBarry Smith    Output Parameters:
4335a2b725a8SWilliam Gropp +  a   - array to hold history
4336758f92a0SBarry Smith .  its - integer array holds the number of linear iterations (or
4337758f92a0SBarry Smith          negative if not converged) for each solve.
4338758f92a0SBarry Smith -  na  - size of a and its
4339758f92a0SBarry Smith 
4340758f92a0SBarry Smith    Notes:
4341758f92a0SBarry Smith     The calling sequence for this routine in Fortran is
4342758f92a0SBarry Smith $   call SNESGetConvergenceHistory(SNES snes, integer na, integer ierr)
4343758f92a0SBarry Smith 
4344758f92a0SBarry Smith    This routine is useful, e.g., when running a code for purposes
4345758f92a0SBarry Smith    of accurate performance monitoring, when no I/O should be done
4346758f92a0SBarry Smith    during the section of code that is being timed.
4347758f92a0SBarry Smith 
4348758f92a0SBarry Smith    Level: intermediate
4349758f92a0SBarry Smith 
4350db781477SPatrick Sanan .seealso: `SNESSetConvergenceHistory()`
4351758f92a0SBarry Smith 
4352758f92a0SBarry Smith @*/
43537087cfbeSBarry Smith PetscErrorCode  SNESGetConvergenceHistory(SNES snes,PetscReal *a[],PetscInt *its[],PetscInt *na)
4354758f92a0SBarry Smith {
4355758f92a0SBarry Smith   PetscFunctionBegin;
43560700a824SBarry Smith   PetscValidHeaderSpecific(snes,SNES_CLASSID,1);
4357758f92a0SBarry Smith   if (a)   *a   = snes->conv_hist;
4358758f92a0SBarry Smith   if (its) *its = snes->conv_hist_its;
4359115dd874SBarry Smith   if (na)  *na  = (PetscInt) snes->conv_hist_len;
43603a40ed3dSBarry Smith   PetscFunctionReturn(0);
4361c9005455SLois Curfman McInnes }
4362c9005455SLois Curfman McInnes 
4363ac226902SBarry Smith /*@C
436476b2cf59SMatthew Knepley   SNESSetUpdate - Sets the general-purpose update function called
4365eec8f646SJed Brown   at the beginning of every iteration of the nonlinear solve. Specifically
43667e4bb74cSBarry Smith   it is called just before the Jacobian is "evaluated".
436776b2cf59SMatthew Knepley 
43683f9fe445SBarry Smith   Logically Collective on SNES
436976b2cf59SMatthew Knepley 
437076b2cf59SMatthew Knepley   Input Parameters:
4371a2b725a8SWilliam Gropp + snes - The nonlinear solver context
4372a2b725a8SWilliam Gropp - func - The function
437376b2cf59SMatthew Knepley 
437476b2cf59SMatthew Knepley   Calling sequence of func:
4375a2b725a8SWilliam Gropp $ func (SNES snes, PetscInt step);
437676b2cf59SMatthew Knepley 
437776b2cf59SMatthew Knepley . step - The current step of the iteration
437876b2cf59SMatthew Knepley 
4379fe97e370SBarry Smith   Level: advanced
4380fe97e370SBarry Smith 
43816b7fb656SBarry Smith   Note:
43826b7fb656SBarry Smith      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()
4383fe97e370SBarry Smith      This is not used by most users.
438476b2cf59SMatthew Knepley 
43856b7fb656SBarry Smith      There are a varity of function hooks one many set that are called at different stages of the nonlinear solution process, see the functions listed below.
43866b7fb656SBarry Smith 
4387db781477SPatrick Sanan .seealso `SNESSetJacobian()`, `SNESSolve()`, `SNESLineSearchSetPreCheck()`, `SNESLineSearchSetPostCheck()`, `SNESNewtonTRSetPreCheck()`, `SNESNewtonTRSetPostCheck()`,
4388db781477SPatrick Sanan          `SNESMonitorSet()`, `SNESSetDivergenceTest()`
438976b2cf59SMatthew Knepley @*/
43907087cfbeSBarry Smith PetscErrorCode  SNESSetUpdate(SNES snes, PetscErrorCode (*func)(SNES, PetscInt))
439176b2cf59SMatthew Knepley {
439276b2cf59SMatthew Knepley   PetscFunctionBegin;
43930700a824SBarry Smith   PetscValidHeaderSpecific(snes, SNES_CLASSID,1);
4394e7788613SBarry Smith   snes->ops->update = func;
439576b2cf59SMatthew Knepley   PetscFunctionReturn(0);
439676b2cf59SMatthew Knepley }
439776b2cf59SMatthew Knepley 
43989b94acceSBarry Smith /*
43999b94acceSBarry Smith    SNESScaleStep_Private - Scales a step so that its length is less than the
44009b94acceSBarry Smith    positive parameter delta.
44019b94acceSBarry Smith 
44029b94acceSBarry Smith     Input Parameters:
4403c7afd0dbSLois Curfman McInnes +   snes - the SNES context
44049b94acceSBarry Smith .   y - approximate solution of linear system
44059b94acceSBarry Smith .   fnorm - 2-norm of current function
4406c7afd0dbSLois Curfman McInnes -   delta - trust region size
44079b94acceSBarry Smith 
44089b94acceSBarry Smith     Output Parameters:
4409c7afd0dbSLois Curfman McInnes +   gpnorm - predicted function norm at the new point, assuming local
44109b94acceSBarry Smith     linearization.  The value is zero if the step lies within the trust
44119b94acceSBarry Smith     region, and exceeds zero otherwise.
4412c7afd0dbSLois Curfman McInnes -   ynorm - 2-norm of the step
44139b94acceSBarry Smith 
44149b94acceSBarry Smith     Note:
441504d7464bSBarry Smith     For non-trust region methods such as SNESNEWTONLS, the parameter delta
44169b94acceSBarry Smith     is set to be the maximum allowable step size.
44179b94acceSBarry Smith 
44189b94acceSBarry Smith */
4419dfbe8321SBarry Smith PetscErrorCode SNESScaleStep_Private(SNES snes,Vec y,PetscReal *fnorm,PetscReal *delta,PetscReal *gpnorm,PetscReal *ynorm)
44209b94acceSBarry Smith {
4421064f8208SBarry Smith   PetscReal      nrm;
4422ea709b57SSatish Balay   PetscScalar    cnorm;
44233a40ed3dSBarry Smith 
44243a40ed3dSBarry Smith   PetscFunctionBegin;
44250700a824SBarry Smith   PetscValidHeaderSpecific(snes,SNES_CLASSID,1);
44260700a824SBarry Smith   PetscValidHeaderSpecific(y,VEC_CLASSID,2);
4427c9780b6fSBarry Smith   PetscCheckSameComm(snes,1,y,2);
4428184914b5SBarry Smith 
44299566063dSJacob Faibussowitsch   PetscCall(VecNorm(y,NORM_2,&nrm));
4430064f8208SBarry Smith   if (nrm > *delta) {
4431064f8208SBarry Smith     nrm     = *delta/nrm;
4432064f8208SBarry Smith     *gpnorm = (1.0 - nrm)*(*fnorm);
4433064f8208SBarry Smith     cnorm   = nrm;
44349566063dSJacob Faibussowitsch     PetscCall(VecScale(y,cnorm));
44359b94acceSBarry Smith     *ynorm  = *delta;
44369b94acceSBarry Smith   } else {
44379b94acceSBarry Smith     *gpnorm = 0.0;
4438064f8208SBarry Smith     *ynorm  = nrm;
44399b94acceSBarry Smith   }
44403a40ed3dSBarry Smith   PetscFunctionReturn(0);
44419b94acceSBarry Smith }
44429b94acceSBarry Smith 
444391f3e32bSBarry Smith /*@C
444419a666eeSBarry Smith    SNESConvergedReasonView - Displays the reason a SNES solve converged or diverged to a viewer
44452a359c20SBarry Smith 
44462a359c20SBarry Smith    Collective on SNES
44472a359c20SBarry Smith 
44482a359c20SBarry Smith    Parameter:
44492a359c20SBarry Smith +  snes - iterative context obtained from SNESCreate()
44502a359c20SBarry Smith -  viewer - the viewer to display the reason
44512a359c20SBarry Smith 
44522a359c20SBarry Smith    Options Database Keys:
4453ee300463SSatish Balay +  -snes_converged_reason - print reason for converged or diverged, also prints number of iterations
4454ee300463SSatish Balay -  -snes_converged_reason ::failed - only print reason and number of iterations when diverged
4455eafd5ff0SAlex Lindsay 
445619a666eeSBarry Smith   Notes:
445719a666eeSBarry Smith      To change the format of the output call PetscViewerPushFormat(viewer,format) before this call. Use PETSC_VIEWER_DEFAULT for the default,
445819a666eeSBarry Smith      use PETSC_VIEWER_FAILED to only display a reason if it fails.
44592a359c20SBarry Smith 
44602a359c20SBarry Smith    Level: beginner
44612a359c20SBarry Smith 
4462db781477SPatrick Sanan .seealso: `SNESCreate()`, `SNESSetUp()`, `SNESDestroy()`, `SNESSetTolerances()`, `SNESConvergedDefault()`, `SNESGetConvergedReason()`, `SNESConvergedReasonViewFromOptions()`,
4463db781477SPatrick Sanan           `PetscViewerPushFormat()`, `PetscViewerPopFormat()`
44642a359c20SBarry Smith 
44652a359c20SBarry Smith @*/
446619a666eeSBarry Smith PetscErrorCode  SNESConvergedReasonView(SNES snes,PetscViewer viewer)
44672a359c20SBarry Smith {
446875cca76cSMatthew G. Knepley   PetscViewerFormat format;
44692a359c20SBarry Smith   PetscBool         isAscii;
44702a359c20SBarry Smith 
44712a359c20SBarry Smith   PetscFunctionBegin;
447219a666eeSBarry Smith   if (!viewer) viewer = PETSC_VIEWER_STDOUT_(PetscObjectComm((PetscObject)snes));
44739566063dSJacob Faibussowitsch   PetscCall(PetscObjectTypeCompare((PetscObject)viewer,PETSCVIEWERASCII,&isAscii));
44742a359c20SBarry Smith   if (isAscii) {
44759566063dSJacob Faibussowitsch     PetscCall(PetscViewerGetFormat(viewer, &format));
44769566063dSJacob Faibussowitsch     PetscCall(PetscViewerASCIIAddTab(viewer,((PetscObject)snes)->tablevel));
447775cca76cSMatthew G. Knepley     if (format == PETSC_VIEWER_ASCII_INFO_DETAIL) {
447875cca76cSMatthew G. Knepley       DM              dm;
447975cca76cSMatthew G. Knepley       Vec             u;
448075cca76cSMatthew G. Knepley       PetscDS         prob;
448175cca76cSMatthew G. Knepley       PetscInt        Nf, f;
448295cbbfd3SMatthew G. Knepley       PetscErrorCode (**exactSol)(PetscInt, PetscReal, const PetscReal[], PetscInt, PetscScalar[], void *);
448395cbbfd3SMatthew G. Knepley       void            **exactCtx;
448475cca76cSMatthew G. Knepley       PetscReal       error;
448575cca76cSMatthew G. Knepley 
44869566063dSJacob Faibussowitsch       PetscCall(SNESGetDM(snes, &dm));
44879566063dSJacob Faibussowitsch       PetscCall(SNESGetSolution(snes, &u));
44889566063dSJacob Faibussowitsch       PetscCall(DMGetDS(dm, &prob));
44899566063dSJacob Faibussowitsch       PetscCall(PetscDSGetNumFields(prob, &Nf));
44909566063dSJacob Faibussowitsch       PetscCall(PetscMalloc2(Nf, &exactSol, Nf, &exactCtx));
44919566063dSJacob Faibussowitsch       for (f = 0; f < Nf; ++f) PetscCall(PetscDSGetExactSolution(prob, f, &exactSol[f], &exactCtx[f]));
44929566063dSJacob Faibussowitsch       PetscCall(DMComputeL2Diff(dm, 0.0, exactSol, exactCtx, u, &error));
44939566063dSJacob Faibussowitsch       PetscCall(PetscFree2(exactSol, exactCtx));
44949566063dSJacob Faibussowitsch       if (error < 1.0e-11) PetscCall(PetscViewerASCIIPrintf(viewer, "L_2 Error: < 1.0e-11\n"));
449563a3b9bcSJacob Faibussowitsch       else                 PetscCall(PetscViewerASCIIPrintf(viewer, "L_2 Error: %g\n", (double)error));
449675cca76cSMatthew G. Knepley     }
4497eafd5ff0SAlex Lindsay     if (snes->reason > 0 && format != PETSC_VIEWER_FAILED) {
44982a359c20SBarry Smith       if (((PetscObject) snes)->prefix) {
449963a3b9bcSJacob Faibussowitsch         PetscCall(PetscViewerASCIIPrintf(viewer,"Nonlinear %s solve converged due to %s iterations %" PetscInt_FMT "\n",((PetscObject) snes)->prefix,SNESConvergedReasons[snes->reason],snes->iter));
45002a359c20SBarry Smith       } else {
450163a3b9bcSJacob Faibussowitsch         PetscCall(PetscViewerASCIIPrintf(viewer,"Nonlinear solve converged due to %s iterations %" PetscInt_FMT "\n",SNESConvergedReasons[snes->reason],snes->iter));
45022a359c20SBarry Smith       }
4503eafd5ff0SAlex Lindsay     } else if (snes->reason <= 0) {
45042a359c20SBarry Smith       if (((PetscObject) snes)->prefix) {
450563a3b9bcSJacob Faibussowitsch         PetscCall(PetscViewerASCIIPrintf(viewer,"Nonlinear %s solve did not converge due to %s iterations %" PetscInt_FMT "\n",((PetscObject) snes)->prefix,SNESConvergedReasons[snes->reason],snes->iter));
45062a359c20SBarry Smith       } else {
450763a3b9bcSJacob Faibussowitsch         PetscCall(PetscViewerASCIIPrintf(viewer,"Nonlinear solve did not converge due to %s iterations %" PetscInt_FMT "\n",SNESConvergedReasons[snes->reason],snes->iter));
45082a359c20SBarry Smith       }
45092a359c20SBarry Smith     }
45109566063dSJacob Faibussowitsch     PetscCall(PetscViewerASCIISubtractTab(viewer,((PetscObject)snes)->tablevel));
45112a359c20SBarry Smith   }
45122a359c20SBarry Smith   PetscFunctionReturn(0);
45132a359c20SBarry Smith }
45142a359c20SBarry Smith 
4515c4421ceaSFande Kong /*@C
4516c4421ceaSFande Kong    SNESConvergedReasonViewSet - Sets an ADDITIONAL function that is to be used at the
4517c4421ceaSFande Kong     end of the nonlinear solver to display the conver reason of the nonlinear solver.
4518c4421ceaSFande Kong 
4519c4421ceaSFande Kong    Logically Collective on SNES
4520c4421ceaSFande Kong 
4521c4421ceaSFande Kong    Input Parameters:
4522c4421ceaSFande Kong +  snes - the SNES context
4523c4421ceaSFande Kong .  f - the snes converged reason view function
4524c4421ceaSFande Kong .  vctx - [optional] user-defined context for private data for the
4525c4421ceaSFande Kong           snes converged reason view routine (use NULL if no context is desired)
4526c4421ceaSFande Kong -  reasonviewdestroy - [optional] routine that frees reasonview context
4527c4421ceaSFande Kong           (may be NULL)
4528c4421ceaSFande Kong 
4529c4421ceaSFande Kong    Options Database Keys:
4530c4421ceaSFande Kong +    -snes_converged_reason        - sets a default SNESConvergedReasonView()
4531c4421ceaSFande Kong -    -snes_converged_reason_view_cancel - cancels all converged reason viewers that have
4532c4421ceaSFande Kong                             been hardwired into a code by
4533c4421ceaSFande Kong                             calls to SNESConvergedReasonViewSet(), but
4534c4421ceaSFande Kong                             does not cancel those set via
4535c4421ceaSFande Kong                             the options database.
4536c4421ceaSFande Kong 
4537c4421ceaSFande Kong    Notes:
4538c4421ceaSFande Kong    Several different converged reason view routines may be set by calling
4539c4421ceaSFande Kong    SNESConvergedReasonViewSet() multiple times; all will be called in the
4540c4421ceaSFande Kong    order in which they were set.
4541c4421ceaSFande Kong 
4542c4421ceaSFande Kong    Level: intermediate
4543c4421ceaSFande Kong 
4544db781477SPatrick Sanan .seealso: `SNESConvergedReasonView()`, `SNESConvergedReasonViewCancel()`
4545c4421ceaSFande Kong @*/
4546c4421ceaSFande Kong PetscErrorCode  SNESConvergedReasonViewSet(SNES snes,PetscErrorCode (*f)(SNES,void*),void *vctx,PetscErrorCode (*reasonviewdestroy)(void**))
4547c4421ceaSFande Kong {
4548c4421ceaSFande Kong   PetscInt       i;
4549c4421ceaSFande Kong   PetscBool      identical;
4550c4421ceaSFande Kong 
4551c4421ceaSFande Kong   PetscFunctionBegin;
4552c4421ceaSFande Kong   PetscValidHeaderSpecific(snes,SNES_CLASSID,1);
4553c4421ceaSFande Kong   for (i=0; i<snes->numberreasonviews;i++) {
45549566063dSJacob Faibussowitsch     PetscCall(PetscMonitorCompare((PetscErrorCode (*)(void))f,vctx,reasonviewdestroy,(PetscErrorCode (*)(void))snes->reasonview[i],snes->reasonviewcontext[i],snes->reasonviewdestroy[i],&identical));
4555c4421ceaSFande Kong     if (identical) PetscFunctionReturn(0);
4556c4421ceaSFande Kong   }
45575f80ce2aSJacob Faibussowitsch   PetscCheck(snes->numberreasonviews < MAXSNESREASONVIEWS,PETSC_COMM_SELF,PETSC_ERR_ARG_OUTOFRANGE,"Too many SNES reasonview set");
4558c4421ceaSFande Kong   snes->reasonview[snes->numberreasonviews]          = f;
4559c4421ceaSFande Kong   snes->reasonviewdestroy[snes->numberreasonviews]   = reasonviewdestroy;
4560c4421ceaSFande Kong   snes->reasonviewcontext[snes->numberreasonviews++] = (void*)vctx;
4561c4421ceaSFande Kong   PetscFunctionReturn(0);
4562c4421ceaSFande Kong }
4563c4421ceaSFande Kong 
456491f3e32bSBarry Smith /*@
456519a666eeSBarry Smith   SNESConvergedReasonViewFromOptions - Processes command line options to determine if/how a SNESReason is to be viewed.
4566c4421ceaSFande Kong                                        All the user-provided convergedReasonView routines will be involved as well, if they exist.
45672a359c20SBarry Smith 
45682a359c20SBarry Smith   Collective on SNES
45692a359c20SBarry Smith 
45702a359c20SBarry Smith   Input Parameters:
45712a359c20SBarry Smith . snes   - the SNES object
45722a359c20SBarry Smith 
45732a359c20SBarry Smith   Level: intermediate
45742a359c20SBarry Smith 
4575db781477SPatrick Sanan .seealso: `SNESCreate()`, `SNESSetUp()`, `SNESDestroy()`, `SNESSetTolerances()`, `SNESConvergedDefault()`, `SNESGetConvergedReason()`, `SNESConvergedReasonView()`
457619a666eeSBarry Smith 
45772a359c20SBarry Smith @*/
457819a666eeSBarry Smith PetscErrorCode SNESConvergedReasonViewFromOptions(SNES snes)
45792a359c20SBarry Smith {
45802a359c20SBarry Smith   PetscViewer       viewer;
45812a359c20SBarry Smith   PetscBool         flg;
45822a359c20SBarry Smith   static PetscBool  incall = PETSC_FALSE;
45832a359c20SBarry Smith   PetscViewerFormat format;
4584c4421ceaSFande Kong   PetscInt          i;
45852a359c20SBarry Smith 
45862a359c20SBarry Smith   PetscFunctionBegin;
45872a359c20SBarry Smith   if (incall) PetscFunctionReturn(0);
45882a359c20SBarry Smith   incall = PETSC_TRUE;
4589c4421ceaSFande Kong 
4590c4421ceaSFande Kong   /* All user-provided viewers are called first, if they exist. */
4591c4421ceaSFande Kong   for (i=0; i<snes->numberreasonviews; i++) {
45929566063dSJacob Faibussowitsch     PetscCall((*snes->reasonview[i])(snes,snes->reasonviewcontext[i]));
4593c4421ceaSFande Kong   }
4594c4421ceaSFande Kong 
4595c4421ceaSFande Kong   /* Call PETSc default routine if users ask for it */
45969566063dSJacob Faibussowitsch   PetscCall(PetscOptionsGetViewer(PetscObjectComm((PetscObject)snes),((PetscObject)snes)->options,((PetscObject)snes)->prefix,"-snes_converged_reason",&viewer,&format,&flg));
45972a359c20SBarry Smith   if (flg) {
45989566063dSJacob Faibussowitsch     PetscCall(PetscViewerPushFormat(viewer,format));
45999566063dSJacob Faibussowitsch     PetscCall(SNESConvergedReasonView(snes,viewer));
46009566063dSJacob Faibussowitsch     PetscCall(PetscViewerPopFormat(viewer));
46019566063dSJacob Faibussowitsch     PetscCall(PetscViewerDestroy(&viewer));
46022a359c20SBarry Smith   }
46032a359c20SBarry Smith   incall = PETSC_FALSE;
46042a359c20SBarry Smith   PetscFunctionReturn(0);
46052a359c20SBarry Smith }
46062a359c20SBarry Smith 
4607487a658cSBarry Smith /*@
4608f69a0ea3SMatthew Knepley    SNESSolve - Solves a nonlinear system F(x) = b.
4609f69a0ea3SMatthew Knepley    Call SNESSolve() after calling SNESCreate() and optional routines of the form SNESSetXXX().
46109b94acceSBarry Smith 
4611c7afd0dbSLois Curfman McInnes    Collective on SNES
4612c7afd0dbSLois Curfman McInnes 
4613b2002411SLois Curfman McInnes    Input Parameters:
4614c7afd0dbSLois Curfman McInnes +  snes - the SNES context
46150298fd71SBarry Smith .  b - the constant part of the equation F(x) = b, or NULL to use zero.
461685385478SLisandro Dalcin -  x - the solution vector.
46179b94acceSBarry Smith 
4618b2002411SLois Curfman McInnes    Notes:
46198ddd3da0SLois Curfman McInnes    The user should initialize the vector,x, with the initial guess
46206b7fb656SBarry Smith    for the nonlinear solve prior to calling SNESSolve().  In particular,
46218ddd3da0SLois Curfman McInnes    to employ an initial guess of zero, the user should explicitly set
46228ddd3da0SLois Curfman McInnes    this vector to zero by calling VecSet().
46238ddd3da0SLois Curfman McInnes 
462436851e7fSLois Curfman McInnes    Level: beginner
462536851e7fSLois Curfman McInnes 
4626db781477SPatrick Sanan .seealso: `SNESCreate()`, `SNESDestroy()`, `SNESSetFunction()`, `SNESSetJacobian()`, `SNESSetGridSequence()`, `SNESGetSolution()`,
4627db781477SPatrick Sanan           `SNESNewtonTRSetPreCheck()`, `SNESNewtonTRGetPreCheck()`, `SNESNewtonTRSetPostCheck()`, `SNESNewtonTRGetPostCheck()`,
4628db781477SPatrick Sanan           `SNESLineSearchSetPostCheck()`, `SNESLineSearchGetPostCheck()`, `SNESLineSearchSetPreCheck()`, `SNESLineSearchGetPreCheck()`
46299b94acceSBarry Smith @*/
46307087cfbeSBarry Smith PetscErrorCode  SNESSolve(SNES snes,Vec b,Vec x)
46319b94acceSBarry Smith {
4632ace3abfcSBarry Smith   PetscBool         flg;
4633efd51863SBarry Smith   PetscInt          grid;
46340298fd71SBarry Smith   Vec               xcreated = NULL;
4635caa4e7f2SJed Brown   DM                dm;
4636052efed2SBarry Smith 
46373a40ed3dSBarry Smith   PetscFunctionBegin;
46380700a824SBarry Smith   PetscValidHeaderSpecific(snes,SNES_CLASSID,1);
4639a69afd8bSBarry Smith   if (x) PetscValidHeaderSpecific(x,VEC_CLASSID,3);
4640a69afd8bSBarry Smith   if (x) PetscCheckSameComm(snes,1,x,3);
46410700a824SBarry Smith   if (b) PetscValidHeaderSpecific(b,VEC_CLASSID,2);
464285385478SLisandro Dalcin   if (b) PetscCheckSameComm(snes,1,b,2);
464385385478SLisandro Dalcin 
464434b4d3a8SMatthew G. Knepley   /* High level operations using the nonlinear solver */
464506fc46c8SMatthew G. Knepley   {
464606fc46c8SMatthew G. Knepley     PetscViewer       viewer;
464706fc46c8SMatthew G. Knepley     PetscViewerFormat format;
46487c88af5aSMatthew G. Knepley     PetscInt          num;
464906fc46c8SMatthew G. Knepley     PetscBool         flg;
465006fc46c8SMatthew G. Knepley     static PetscBool  incall = PETSC_FALSE;
465106fc46c8SMatthew G. Knepley 
465206fc46c8SMatthew G. Knepley     if (!incall) {
465334b4d3a8SMatthew G. Knepley       /* Estimate the convergence rate of the discretization */
46549566063dSJacob Faibussowitsch       PetscCall(PetscOptionsGetViewer(PetscObjectComm((PetscObject) snes),((PetscObject)snes)->options, ((PetscObject) snes)->prefix, "-snes_convergence_estimate", &viewer, &format, &flg));
465506fc46c8SMatthew G. Knepley       if (flg) {
465606fc46c8SMatthew G. Knepley         PetscConvEst conv;
465746079b62SMatthew G. Knepley         DM           dm;
465846079b62SMatthew G. Knepley         PetscReal   *alpha; /* Convergence rate of the solution error for each field in the L_2 norm */
465946079b62SMatthew G. Knepley         PetscInt     Nf;
466006fc46c8SMatthew G. Knepley 
466106fc46c8SMatthew G. Knepley         incall = PETSC_TRUE;
46629566063dSJacob Faibussowitsch         PetscCall(SNESGetDM(snes, &dm));
46639566063dSJacob Faibussowitsch         PetscCall(DMGetNumFields(dm, &Nf));
46649566063dSJacob Faibussowitsch         PetscCall(PetscCalloc1(Nf, &alpha));
46659566063dSJacob Faibussowitsch         PetscCall(PetscConvEstCreate(PetscObjectComm((PetscObject) snes), &conv));
46669566063dSJacob Faibussowitsch         PetscCall(PetscConvEstSetSolver(conv, (PetscObject) snes));
46679566063dSJacob Faibussowitsch         PetscCall(PetscConvEstSetFromOptions(conv));
46689566063dSJacob Faibussowitsch         PetscCall(PetscConvEstSetUp(conv));
46699566063dSJacob Faibussowitsch         PetscCall(PetscConvEstGetConvRate(conv, alpha));
46709566063dSJacob Faibussowitsch         PetscCall(PetscViewerPushFormat(viewer, format));
46719566063dSJacob Faibussowitsch         PetscCall(PetscConvEstRateView(conv, alpha, viewer));
46729566063dSJacob Faibussowitsch         PetscCall(PetscViewerPopFormat(viewer));
46739566063dSJacob Faibussowitsch         PetscCall(PetscViewerDestroy(&viewer));
46749566063dSJacob Faibussowitsch         PetscCall(PetscConvEstDestroy(&conv));
46759566063dSJacob Faibussowitsch         PetscCall(PetscFree(alpha));
467606fc46c8SMatthew G. Knepley         incall = PETSC_FALSE;
467706fc46c8SMatthew G. Knepley       }
467834b4d3a8SMatthew G. Knepley       /* Adaptively refine the initial grid */
4679b2588ea6SMatthew G. Knepley       num  = 1;
46809566063dSJacob Faibussowitsch       PetscCall(PetscOptionsGetInt(NULL, ((PetscObject) snes)->prefix, "-snes_adapt_initial", &num, &flg));
468134b4d3a8SMatthew G. Knepley       if (flg) {
468234b4d3a8SMatthew G. Knepley         DMAdaptor adaptor;
468334b4d3a8SMatthew G. Knepley 
468434b4d3a8SMatthew G. Knepley         incall = PETSC_TRUE;
46859566063dSJacob Faibussowitsch         PetscCall(DMAdaptorCreate(PetscObjectComm((PetscObject)snes), &adaptor));
46869566063dSJacob Faibussowitsch         PetscCall(DMAdaptorSetSolver(adaptor, snes));
46879566063dSJacob Faibussowitsch         PetscCall(DMAdaptorSetSequenceLength(adaptor, num));
46889566063dSJacob Faibussowitsch         PetscCall(DMAdaptorSetFromOptions(adaptor));
46899566063dSJacob Faibussowitsch         PetscCall(DMAdaptorSetUp(adaptor));
46909566063dSJacob Faibussowitsch         PetscCall(DMAdaptorAdapt(adaptor, x, DM_ADAPTATION_INITIAL, &dm, &x));
46919566063dSJacob Faibussowitsch         PetscCall(DMAdaptorDestroy(&adaptor));
469234b4d3a8SMatthew G. Knepley         incall = PETSC_FALSE;
469334b4d3a8SMatthew G. Knepley       }
46947c88af5aSMatthew G. Knepley       /* Use grid sequencing to adapt */
46957c88af5aSMatthew G. Knepley       num  = 0;
46969566063dSJacob Faibussowitsch       PetscCall(PetscOptionsGetInt(NULL, ((PetscObject) snes)->prefix, "-snes_adapt_sequence", &num, NULL));
46977c88af5aSMatthew G. Knepley       if (num) {
46987c88af5aSMatthew G. Knepley         DMAdaptor adaptor;
46997c88af5aSMatthew G. Knepley 
47007c88af5aSMatthew G. Knepley         incall = PETSC_TRUE;
47019566063dSJacob Faibussowitsch         PetscCall(DMAdaptorCreate(PetscObjectComm((PetscObject)snes), &adaptor));
47029566063dSJacob Faibussowitsch         PetscCall(DMAdaptorSetSolver(adaptor, snes));
47039566063dSJacob Faibussowitsch         PetscCall(DMAdaptorSetSequenceLength(adaptor, num));
47049566063dSJacob Faibussowitsch         PetscCall(DMAdaptorSetFromOptions(adaptor));
47059566063dSJacob Faibussowitsch         PetscCall(DMAdaptorSetUp(adaptor));
47069566063dSJacob Faibussowitsch         PetscCall(DMAdaptorAdapt(adaptor, x, DM_ADAPTATION_SEQUENTIAL, &dm, &x));
47079566063dSJacob Faibussowitsch         PetscCall(DMAdaptorDestroy(&adaptor));
47087c88af5aSMatthew G. Knepley         incall = PETSC_FALSE;
47097c88af5aSMatthew G. Knepley       }
471006fc46c8SMatthew G. Knepley     }
471106fc46c8SMatthew G. Knepley   }
471241e867a5SStefano Zampini   if (!x) { x = snes->vec_sol; }
4713caa4e7f2SJed Brown   if (!x) {
47149566063dSJacob Faibussowitsch     PetscCall(SNESGetDM(snes,&dm));
47159566063dSJacob Faibussowitsch     PetscCall(DMCreateGlobalVector(dm,&xcreated));
4716a69afd8bSBarry Smith     x    = xcreated;
4717a69afd8bSBarry Smith   }
47189566063dSJacob Faibussowitsch   PetscCall(SNESViewFromOptions(snes,NULL,"-snes_view_pre"));
4719f05ece33SBarry Smith 
47209566063dSJacob Faibussowitsch   for (grid=0; grid<snes->gridsequence; grid++) PetscCall(PetscViewerASCIIPushTab(PETSC_VIEWER_STDOUT_(PetscObjectComm((PetscObject)snes))));
4721efd51863SBarry Smith   for (grid=0; grid<snes->gridsequence+1; grid++) {
4722efd51863SBarry Smith 
472385385478SLisandro Dalcin     /* set solution vector */
47249566063dSJacob Faibussowitsch     if (!grid) PetscCall(PetscObjectReference((PetscObject)x));
47259566063dSJacob Faibussowitsch     PetscCall(VecDestroy(&snes->vec_sol));
472685385478SLisandro Dalcin     snes->vec_sol = x;
47279566063dSJacob Faibussowitsch     PetscCall(SNESGetDM(snes,&dm));
4728caa4e7f2SJed Brown 
4729caa4e7f2SJed Brown     /* set affine vector if provided */
47309566063dSJacob Faibussowitsch     if (b) PetscCall(PetscObjectReference((PetscObject)b));
47319566063dSJacob Faibussowitsch     PetscCall(VecDestroy(&snes->vec_rhs));
473285385478SLisandro Dalcin     snes->vec_rhs = b;
473385385478SLisandro Dalcin 
47345f80ce2aSJacob Faibussowitsch     if (snes->vec_rhs) PetscCheck(snes->vec_func != snes->vec_rhs,PETSC_COMM_SELF,PETSC_ERR_ARG_IDN,"Right hand side vector cannot be function vector");
47355f80ce2aSJacob Faibussowitsch     PetscCheck(snes->vec_func != snes->vec_sol,PETSC_COMM_SELF,PETSC_ERR_ARG_IDN,"Solution vector cannot be function vector");
47365f80ce2aSJacob Faibussowitsch     PetscCheck(snes->vec_rhs  != snes->vec_sol,PETSC_COMM_SELF,PETSC_ERR_ARG_IDN,"Solution vector cannot be right hand side vector");
4737154060b5SMatthew G. Knepley     if (!snes->vec_sol_update /* && snes->vec_sol */) {
47389566063dSJacob Faibussowitsch       PetscCall(VecDuplicate(snes->vec_sol,&snes->vec_sol_update));
47399566063dSJacob Faibussowitsch       PetscCall(PetscLogObjectParent((PetscObject)snes,(PetscObject)snes->vec_sol_update));
4740154060b5SMatthew G. Knepley     }
47419566063dSJacob Faibussowitsch     PetscCall(DMShellSetGlobalVector(dm,snes->vec_sol));
47429566063dSJacob Faibussowitsch     PetscCall(SNESSetUp(snes));
47433f149594SLisandro Dalcin 
47447eee914bSBarry Smith     if (!grid) {
47457eee914bSBarry Smith       if (snes->ops->computeinitialguess) {
47469566063dSJacob Faibussowitsch         PetscCall((*snes->ops->computeinitialguess)(snes,snes->vec_sol,snes->initialguessP));
4747d25893d9SBarry Smith       }
4748dd568438SSatish Balay     }
4749d25893d9SBarry Smith 
4750abc0a331SBarry Smith     if (snes->conv_hist_reset) snes->conv_hist_len = 0;
4751971e163fSPeter Brune     if (snes->counters_reset) {snes->nfuncs = 0; snes->linear_its = 0; snes->numFailures = 0;}
4752d5e45103SBarry Smith 
47539566063dSJacob Faibussowitsch     PetscCall(PetscLogEventBegin(SNES_Solve,snes,0,0,0));
47549566063dSJacob Faibussowitsch     PetscCall((*snes->ops->solve)(snes));
47559566063dSJacob Faibussowitsch     PetscCall(PetscLogEventEnd(SNES_Solve,snes,0,0,0));
47565f80ce2aSJacob Faibussowitsch     PetscCheck(snes->reason,PETSC_COMM_SELF,PETSC_ERR_PLIB,"Internal error, solver returned without setting converged reason");
4757422a814eSBarry Smith     snes->domainerror = PETSC_FALSE; /* clear the flag if it has been set */
47583f149594SLisandro Dalcin 
475937ec4e1aSPeter Brune     if (snes->lagjac_persist) snes->jac_iter += snes->iter;
476037ec4e1aSPeter Brune     if (snes->lagpre_persist) snes->pre_iter += snes->iter;
476137ec4e1aSPeter Brune 
47629566063dSJacob Faibussowitsch     PetscCall(PetscOptionsGetViewer(PetscObjectComm((PetscObject)snes),((PetscObject)snes)->options,((PetscObject)snes)->prefix,"-snes_test_local_min",NULL,NULL,&flg));
47639566063dSJacob Faibussowitsch     if (flg && !PetscPreLoadingOn) PetscCall(SNESTestLocalMin(snes));
4764c4421ceaSFande Kong     /* Call converged reason views. This may involve user-provided viewers as well */
47659566063dSJacob Faibussowitsch     PetscCall(SNESConvergedReasonViewFromOptions(snes));
47665968eb51SBarry Smith 
47675f80ce2aSJacob Faibussowitsch     if (snes->errorifnotconverged) PetscCheck(snes->reason >= 0,PetscObjectComm((PetscObject)snes),PETSC_ERR_NOT_CONVERGED,"SNESSolve has not converged");
47689c8e83a9SBarry Smith     if (snes->reason < 0) break;
4769efd51863SBarry Smith     if (grid <  snes->gridsequence) {
4770efd51863SBarry Smith       DM  fine;
4771efd51863SBarry Smith       Vec xnew;
4772efd51863SBarry Smith       Mat interp;
4773efd51863SBarry Smith 
47749566063dSJacob Faibussowitsch       PetscCall(DMRefine(snes->dm,PetscObjectComm((PetscObject)snes),&fine));
47755f80ce2aSJacob Faibussowitsch       PetscCheck(fine,PetscObjectComm((PetscObject)snes),PETSC_ERR_ARG_INCOMP,"DMRefine() did not perform any refinement, cannot continue grid sequencing");
47769566063dSJacob Faibussowitsch       PetscCall(DMCreateInterpolation(snes->dm,fine,&interp,NULL));
47779566063dSJacob Faibussowitsch       PetscCall(DMCreateGlobalVector(fine,&xnew));
47789566063dSJacob Faibussowitsch       PetscCall(MatInterpolate(interp,x,xnew));
47799566063dSJacob Faibussowitsch       PetscCall(DMInterpolate(snes->dm,interp,fine));
47809566063dSJacob Faibussowitsch       PetscCall(MatDestroy(&interp));
4781efd51863SBarry Smith       x    = xnew;
4782efd51863SBarry Smith 
47839566063dSJacob Faibussowitsch       PetscCall(SNESReset(snes));
47849566063dSJacob Faibussowitsch       PetscCall(SNESSetDM(snes,fine));
47859566063dSJacob Faibussowitsch       PetscCall(SNESResetFromOptions(snes));
47869566063dSJacob Faibussowitsch       PetscCall(DMDestroy(&fine));
47879566063dSJacob Faibussowitsch       PetscCall(PetscViewerASCIIPopTab(PETSC_VIEWER_STDOUT_(PetscObjectComm((PetscObject)snes))));
4788efd51863SBarry Smith     }
4789efd51863SBarry Smith   }
47909566063dSJacob Faibussowitsch   PetscCall(SNESViewFromOptions(snes,NULL,"-snes_view"));
47919566063dSJacob Faibussowitsch   PetscCall(VecViewFromOptions(snes->vec_sol,(PetscObject)snes,"-snes_view_solution"));
47929566063dSJacob Faibussowitsch   PetscCall(DMMonitor(snes->dm));
47939566063dSJacob Faibussowitsch   PetscCall(SNESMonitorPauseFinal_Internal(snes));
47943f7e2da0SPeter Brune 
47959566063dSJacob Faibussowitsch   PetscCall(VecDestroy(&xcreated));
47969566063dSJacob Faibussowitsch   PetscCall(PetscObjectSAWsBlock((PetscObject)snes));
47973a40ed3dSBarry Smith   PetscFunctionReturn(0);
47989b94acceSBarry Smith }
47999b94acceSBarry Smith 
48009b94acceSBarry Smith /* --------- Internal routines for SNES Package --------- */
48019b94acceSBarry Smith 
480282bf6240SBarry Smith /*@C
48034b0e389bSBarry Smith    SNESSetType - Sets the method for the nonlinear solver.
48049b94acceSBarry Smith 
4805fee21e36SBarry Smith    Collective on SNES
4806fee21e36SBarry Smith 
4807c7afd0dbSLois Curfman McInnes    Input Parameters:
4808c7afd0dbSLois Curfman McInnes +  snes - the SNES context
4809454a90a3SBarry Smith -  type - a known method
4810c7afd0dbSLois Curfman McInnes 
4811c7afd0dbSLois Curfman McInnes    Options Database Key:
4812454a90a3SBarry Smith .  -snes_type <type> - Sets the method; use -help for a list
481304d7464bSBarry Smith    of available methods (for instance, newtonls or newtontr)
4814ae12b187SLois Curfman McInnes 
48159b94acceSBarry Smith    Notes:
4816e090d566SSatish Balay    See "petsc/include/petscsnes.h" for available methods (for instance)
481704d7464bSBarry Smith +    SNESNEWTONLS - Newton's method with line search
4818c7afd0dbSLois Curfman McInnes      (systems of nonlinear equations)
4819a2b725a8SWilliam Gropp -    SNESNEWTONTR - Newton's method with trust region
4820c7afd0dbSLois Curfman McInnes      (systems of nonlinear equations)
48219b94acceSBarry Smith 
4822ae12b187SLois Curfman McInnes   Normally, it is best to use the SNESSetFromOptions() command and then
4823ae12b187SLois Curfman McInnes   set the SNES solver type from the options database rather than by using
4824ae12b187SLois Curfman McInnes   this routine.  Using the options database provides the user with
4825ae12b187SLois Curfman McInnes   maximum flexibility in evaluating the many nonlinear solvers.
4826ae12b187SLois Curfman McInnes   The SNESSetType() routine is provided for those situations where it
4827ae12b187SLois Curfman McInnes   is necessary to set the nonlinear solver independently of the command
4828ae12b187SLois Curfman McInnes   line or options database.  This might be the case, for example, when
4829ae12b187SLois Curfman McInnes   the choice of solver changes during the execution of the program,
4830ae12b187SLois Curfman McInnes   and the user's application is taking responsibility for choosing the
4831b0a32e0cSBarry Smith   appropriate method.
483236851e7fSLois Curfman McInnes 
483395452b02SPatrick Sanan     Developer Notes:
483495452b02SPatrick Sanan     SNESRegister() adds a constructor for a new SNESType to SNESList, SNESSetType() locates
48358f6c3df8SBarry Smith     the constructor in that list and calls it to create the spexific object.
48368f6c3df8SBarry Smith 
483736851e7fSLois Curfman McInnes   Level: intermediate
4838a703fe33SLois Curfman McInnes 
4839db781477SPatrick Sanan .seealso: `SNESType`, `SNESCreate()`, `SNESDestroy()`, `SNESGetType()`, `SNESSetFromOptions()`
4840435da068SBarry Smith 
48419b94acceSBarry Smith @*/
484219fd82e9SBarry Smith PetscErrorCode  SNESSetType(SNES snes,SNESType type)
48439b94acceSBarry Smith {
4844ace3abfcSBarry Smith   PetscBool      match;
48455f80ce2aSJacob Faibussowitsch   PetscErrorCode (*r)(SNES);
48463a40ed3dSBarry Smith 
48473a40ed3dSBarry Smith   PetscFunctionBegin;
48480700a824SBarry Smith   PetscValidHeaderSpecific(snes,SNES_CLASSID,1);
48494482741eSBarry Smith   PetscValidCharPointer(type,2);
485082bf6240SBarry Smith 
48519566063dSJacob Faibussowitsch   PetscCall(PetscObjectTypeCompare((PetscObject)snes,type,&match));
48520f5bd95cSBarry Smith   if (match) PetscFunctionReturn(0);
485392ff6ae8SBarry Smith 
48549566063dSJacob Faibussowitsch   PetscCall(PetscFunctionListFind(SNESList,type,&r));
48555f80ce2aSJacob Faibussowitsch   PetscCheck(r,PETSC_COMM_SELF,PETSC_ERR_ARG_UNKNOWN_TYPE,"Unable to find requested SNES type %s",type);
485675396ef9SLisandro Dalcin   /* Destroy the previous private SNES context */
4857b5c23020SJed Brown   if (snes->ops->destroy) {
48589566063dSJacob Faibussowitsch     PetscCall((*(snes)->ops->destroy)(snes));
48590298fd71SBarry Smith     snes->ops->destroy = NULL;
4860b5c23020SJed Brown   }
486175396ef9SLisandro Dalcin   /* Reinitialize function pointers in SNESOps structure */
48629e5d0892SLisandro Dalcin   snes->ops->setup          = NULL;
48639e5d0892SLisandro Dalcin   snes->ops->solve          = NULL;
48649e5d0892SLisandro Dalcin   snes->ops->view           = NULL;
48659e5d0892SLisandro Dalcin   snes->ops->setfromoptions = NULL;
48669e5d0892SLisandro Dalcin   snes->ops->destroy        = NULL;
48677fe760d5SStefano Zampini 
48687fe760d5SStefano Zampini   /* It may happen the user has customized the line search before calling SNESSetType */
48699566063dSJacob Faibussowitsch   if (((PetscObject)snes)->type_name) PetscCall(SNESLineSearchDestroy(&snes->linesearch));
48707fe760d5SStefano Zampini 
487175396ef9SLisandro Dalcin   /* Call the SNESCreate_XXX routine for this particular Nonlinear solver */
487275396ef9SLisandro Dalcin   snes->setupcalled = PETSC_FALSE;
4873f5af7f23SKarl Rupp 
48749566063dSJacob Faibussowitsch   PetscCall(PetscObjectChangeTypeName((PetscObject)snes,type));
48759566063dSJacob Faibussowitsch   PetscCall((*r)(snes));
48763a40ed3dSBarry Smith   PetscFunctionReturn(0);
48779b94acceSBarry Smith }
48789b94acceSBarry Smith 
48799b94acceSBarry Smith /*@C
48809a28b0a6SLois Curfman McInnes    SNESGetType - Gets the SNES method type and name (as a string).
48819b94acceSBarry Smith 
4882c7afd0dbSLois Curfman McInnes    Not Collective
4883c7afd0dbSLois Curfman McInnes 
48849b94acceSBarry Smith    Input Parameter:
48854b0e389bSBarry Smith .  snes - nonlinear solver context
48869b94acceSBarry Smith 
48879b94acceSBarry Smith    Output Parameter:
48883a7fca6bSBarry Smith .  type - SNES method (a character string)
48899b94acceSBarry Smith 
489036851e7fSLois Curfman McInnes    Level: intermediate
489136851e7fSLois Curfman McInnes 
48929b94acceSBarry Smith @*/
489319fd82e9SBarry Smith PetscErrorCode  SNESGetType(SNES snes,SNESType *type)
48949b94acceSBarry Smith {
48953a40ed3dSBarry Smith   PetscFunctionBegin;
48960700a824SBarry Smith   PetscValidHeaderSpecific(snes,SNES_CLASSID,1);
48974482741eSBarry Smith   PetscValidPointer(type,2);
48987adad957SLisandro Dalcin   *type = ((PetscObject)snes)->type_name;
48993a40ed3dSBarry Smith   PetscFunctionReturn(0);
49009b94acceSBarry Smith }
49019b94acceSBarry Smith 
49023cd8a7caSMatthew G. Knepley /*@
49033cd8a7caSMatthew G. Knepley   SNESSetSolution - Sets the solution vector for use by the SNES routines.
49043cd8a7caSMatthew G. Knepley 
4905d083f849SBarry Smith   Logically Collective on SNES
49063cd8a7caSMatthew G. Knepley 
49073cd8a7caSMatthew G. Knepley   Input Parameters:
49083cd8a7caSMatthew G. Knepley + snes - the SNES context obtained from SNESCreate()
49093cd8a7caSMatthew G. Knepley - u    - the solution vector
49103cd8a7caSMatthew G. Knepley 
49113cd8a7caSMatthew G. Knepley   Level: beginner
49123cd8a7caSMatthew G. Knepley 
49133cd8a7caSMatthew G. Knepley @*/
49143cd8a7caSMatthew G. Knepley PetscErrorCode SNESSetSolution(SNES snes, Vec u)
49153cd8a7caSMatthew G. Knepley {
49163cd8a7caSMatthew G. Knepley   DM             dm;
49173cd8a7caSMatthew G. Knepley 
49183cd8a7caSMatthew G. Knepley   PetscFunctionBegin;
49193cd8a7caSMatthew G. Knepley   PetscValidHeaderSpecific(snes, SNES_CLASSID, 1);
49203cd8a7caSMatthew G. Knepley   PetscValidHeaderSpecific(u, VEC_CLASSID, 2);
49219566063dSJacob Faibussowitsch   PetscCall(PetscObjectReference((PetscObject) u));
49229566063dSJacob Faibussowitsch   PetscCall(VecDestroy(&snes->vec_sol));
49233cd8a7caSMatthew G. Knepley 
49243cd8a7caSMatthew G. Knepley   snes->vec_sol = u;
49253cd8a7caSMatthew G. Knepley 
49269566063dSJacob Faibussowitsch   PetscCall(SNESGetDM(snes, &dm));
49279566063dSJacob Faibussowitsch   PetscCall(DMShellSetGlobalVector(dm, u));
49283cd8a7caSMatthew G. Knepley   PetscFunctionReturn(0);
49293cd8a7caSMatthew G. Knepley }
49303cd8a7caSMatthew G. Knepley 
493152baeb72SSatish Balay /*@
49329b94acceSBarry Smith    SNESGetSolution - Returns the vector where the approximate solution is
4933c0df2a02SJed Brown    stored. This is the fine grid solution when using SNESSetGridSequence().
49349b94acceSBarry Smith 
4935c7afd0dbSLois Curfman McInnes    Not Collective, but Vec is parallel if SNES is parallel
4936c7afd0dbSLois Curfman McInnes 
49379b94acceSBarry Smith    Input Parameter:
49389b94acceSBarry Smith .  snes - the SNES context
49399b94acceSBarry Smith 
49409b94acceSBarry Smith    Output Parameter:
49419b94acceSBarry Smith .  x - the solution
49429b94acceSBarry Smith 
494370e92668SMatthew Knepley    Level: intermediate
494436851e7fSLois Curfman McInnes 
4945db781477SPatrick Sanan .seealso: `SNESGetSolutionUpdate()`, `SNESGetFunction()`
49469b94acceSBarry Smith @*/
49477087cfbeSBarry Smith PetscErrorCode  SNESGetSolution(SNES snes,Vec *x)
49489b94acceSBarry Smith {
49493a40ed3dSBarry Smith   PetscFunctionBegin;
49500700a824SBarry Smith   PetscValidHeaderSpecific(snes,SNES_CLASSID,1);
49514482741eSBarry Smith   PetscValidPointer(x,2);
495285385478SLisandro Dalcin   *x = snes->vec_sol;
495370e92668SMatthew Knepley   PetscFunctionReturn(0);
495470e92668SMatthew Knepley }
495570e92668SMatthew Knepley 
495652baeb72SSatish Balay /*@
49579b94acceSBarry Smith    SNESGetSolutionUpdate - Returns the vector where the solution update is
49589b94acceSBarry Smith    stored.
49599b94acceSBarry Smith 
4960c7afd0dbSLois Curfman McInnes    Not Collective, but Vec is parallel if SNES is parallel
4961c7afd0dbSLois Curfman McInnes 
49629b94acceSBarry Smith    Input Parameter:
49639b94acceSBarry Smith .  snes - the SNES context
49649b94acceSBarry Smith 
49659b94acceSBarry Smith    Output Parameter:
49669b94acceSBarry Smith .  x - the solution update
49679b94acceSBarry Smith 
496836851e7fSLois Curfman McInnes    Level: advanced
496936851e7fSLois Curfman McInnes 
4970db781477SPatrick Sanan .seealso: `SNESGetSolution()`, `SNESGetFunction()`
49719b94acceSBarry Smith @*/
49727087cfbeSBarry Smith PetscErrorCode  SNESGetSolutionUpdate(SNES snes,Vec *x)
49739b94acceSBarry Smith {
49743a40ed3dSBarry Smith   PetscFunctionBegin;
49750700a824SBarry Smith   PetscValidHeaderSpecific(snes,SNES_CLASSID,1);
49764482741eSBarry Smith   PetscValidPointer(x,2);
497785385478SLisandro Dalcin   *x = snes->vec_sol_update;
49783a40ed3dSBarry Smith   PetscFunctionReturn(0);
49799b94acceSBarry Smith }
49809b94acceSBarry Smith 
49819b94acceSBarry Smith /*@C
49823638b69dSLois Curfman McInnes    SNESGetFunction - Returns the vector where the function is stored.
49839b94acceSBarry Smith 
4984a63bb30eSJed Brown    Not Collective, but Vec is parallel if SNES is parallel. Collective if Vec is requested, but has not been created yet.
4985c7afd0dbSLois Curfman McInnes 
49869b94acceSBarry Smith    Input Parameter:
49879b94acceSBarry Smith .  snes - the SNES context
49889b94acceSBarry Smith 
4989d8d19677SJose E. Roman    Output Parameters:
49900298fd71SBarry Smith +  r - the vector that is used to store residuals (or NULL if you don't want it)
4991f8b49ee9SBarry Smith .  f - the function (or NULL if you don't want it); see SNESFunction for calling sequence details
49920298fd71SBarry Smith -  ctx - the function context (or NULL if you don't want it)
49939b94acceSBarry Smith 
499436851e7fSLois Curfman McInnes    Level: advanced
499536851e7fSLois Curfman McInnes 
499604edfde5SBarry Smith     Notes: The vector r DOES NOT, in general contain the current value of the SNES nonlinear function
499704edfde5SBarry Smith 
4998db781477SPatrick Sanan .seealso: `SNESSetFunction()`, `SNESGetSolution()`, `SNESFunction`
49999b94acceSBarry Smith @*/
5000f8b49ee9SBarry Smith PetscErrorCode  SNESGetFunction(SNES snes,Vec *r,PetscErrorCode (**f)(SNES,Vec,Vec,void*),void **ctx)
50019b94acceSBarry Smith {
50026cab3a1bSJed Brown   DM             dm;
5003a63bb30eSJed Brown 
50043a40ed3dSBarry Smith   PetscFunctionBegin;
50050700a824SBarry Smith   PetscValidHeaderSpecific(snes,SNES_CLASSID,1);
5006a63bb30eSJed Brown   if (r) {
5007a63bb30eSJed Brown     if (!snes->vec_func) {
5008a63bb30eSJed Brown       if (snes->vec_rhs) {
50099566063dSJacob Faibussowitsch         PetscCall(VecDuplicate(snes->vec_rhs,&snes->vec_func));
5010a63bb30eSJed Brown       } else if (snes->vec_sol) {
50119566063dSJacob Faibussowitsch         PetscCall(VecDuplicate(snes->vec_sol,&snes->vec_func));
5012a63bb30eSJed Brown       } else if (snes->dm) {
50139566063dSJacob Faibussowitsch         PetscCall(DMCreateGlobalVector(snes->dm,&snes->vec_func));
5014a63bb30eSJed Brown       }
5015a63bb30eSJed Brown     }
5016a63bb30eSJed Brown     *r = snes->vec_func;
5017a63bb30eSJed Brown   }
50189566063dSJacob Faibussowitsch   PetscCall(SNESGetDM(snes,&dm));
50199566063dSJacob Faibussowitsch   PetscCall(DMSNESGetFunction(dm,f,ctx));
50203a40ed3dSBarry Smith   PetscFunctionReturn(0);
50219b94acceSBarry Smith }
50229b94acceSBarry Smith 
5023c79ef259SPeter Brune /*@C
5024be95d8f1SBarry Smith    SNESGetNGS - Returns the NGS function and context.
5025c79ef259SPeter Brune 
5026c79ef259SPeter Brune    Input Parameter:
5027c79ef259SPeter Brune .  snes - the SNES context
5028c79ef259SPeter Brune 
5029d8d19677SJose E. Roman    Output Parameters:
5030be95d8f1SBarry Smith +  f - the function (or NULL) see SNESNGSFunction for details
50310298fd71SBarry Smith -  ctx    - the function context (or NULL)
5032c79ef259SPeter Brune 
5033c79ef259SPeter Brune    Level: advanced
5034c79ef259SPeter Brune 
5035db781477SPatrick Sanan .seealso: `SNESSetNGS()`, `SNESGetFunction()`
5036c79ef259SPeter Brune @*/
5037c79ef259SPeter Brune 
5038be95d8f1SBarry Smith PetscErrorCode SNESGetNGS (SNES snes, PetscErrorCode (**f)(SNES, Vec, Vec, void*), void ** ctx)
5039646217ecSPeter Brune {
50406cab3a1bSJed Brown   DM             dm;
50416cab3a1bSJed Brown 
5042646217ecSPeter Brune   PetscFunctionBegin;
5043646217ecSPeter Brune   PetscValidHeaderSpecific(snes,SNES_CLASSID,1);
50449566063dSJacob Faibussowitsch   PetscCall(SNESGetDM(snes,&dm));
50459566063dSJacob Faibussowitsch   PetscCall(DMSNESGetNGS(dm,f,ctx));
5046646217ecSPeter Brune   PetscFunctionReturn(0);
5047646217ecSPeter Brune }
5048646217ecSPeter Brune 
50493c7409f5SSatish Balay /*@C
50503c7409f5SSatish Balay    SNESSetOptionsPrefix - Sets the prefix used for searching for all
5051d850072dSLois Curfman McInnes    SNES options in the database.
50523c7409f5SSatish Balay 
50533f9fe445SBarry Smith    Logically Collective on SNES
5054fee21e36SBarry Smith 
5055d8d19677SJose E. Roman    Input Parameters:
5056c7afd0dbSLois Curfman McInnes +  snes - the SNES context
5057c7afd0dbSLois Curfman McInnes -  prefix - the prefix to prepend to all option names
5058c7afd0dbSLois Curfman McInnes 
5059d850072dSLois Curfman McInnes    Notes:
5060a83b1b31SSatish Balay    A hyphen (-) must NOT be given at the beginning of the prefix name.
5061c7afd0dbSLois Curfman McInnes    The first character of all runtime options is AUTOMATICALLY the hyphen.
5062d850072dSLois Curfman McInnes 
506336851e7fSLois Curfman McInnes    Level: advanced
506436851e7fSLois Curfman McInnes 
5065db781477SPatrick Sanan .seealso: `SNESSetFromOptions()`
50663c7409f5SSatish Balay @*/
50677087cfbeSBarry Smith PetscErrorCode  SNESSetOptionsPrefix(SNES snes,const char prefix[])
50683c7409f5SSatish Balay {
50693a40ed3dSBarry Smith   PetscFunctionBegin;
50700700a824SBarry Smith   PetscValidHeaderSpecific(snes,SNES_CLASSID,1);
50719566063dSJacob Faibussowitsch   PetscCall(PetscObjectSetOptionsPrefix((PetscObject)snes,prefix));
50729566063dSJacob Faibussowitsch   if (!snes->ksp) PetscCall(SNESGetKSP(snes,&snes->ksp));
507335f5d045SPeter Brune   if (snes->linesearch) {
50749566063dSJacob Faibussowitsch     PetscCall(SNESGetLineSearch(snes,&snes->linesearch));
50759566063dSJacob Faibussowitsch     PetscCall(PetscObjectSetOptionsPrefix((PetscObject)snes->linesearch,prefix));
507635f5d045SPeter Brune   }
50779566063dSJacob Faibussowitsch   PetscCall(KSPSetOptionsPrefix(snes->ksp,prefix));
50783a40ed3dSBarry Smith   PetscFunctionReturn(0);
50793c7409f5SSatish Balay }
50803c7409f5SSatish Balay 
50813c7409f5SSatish Balay /*@C
5082f525115eSLois Curfman McInnes    SNESAppendOptionsPrefix - Appends to the prefix used for searching for all
5083d850072dSLois Curfman McInnes    SNES options in the database.
50843c7409f5SSatish Balay 
50853f9fe445SBarry Smith    Logically Collective on SNES
5086fee21e36SBarry Smith 
5087c7afd0dbSLois Curfman McInnes    Input Parameters:
5088c7afd0dbSLois Curfman McInnes +  snes - the SNES context
5089c7afd0dbSLois Curfman McInnes -  prefix - the prefix to prepend to all option names
5090c7afd0dbSLois Curfman McInnes 
5091d850072dSLois Curfman McInnes    Notes:
5092a83b1b31SSatish Balay    A hyphen (-) must NOT be given at the beginning of the prefix name.
5093c7afd0dbSLois Curfman McInnes    The first character of all runtime options is AUTOMATICALLY the hyphen.
5094d850072dSLois Curfman McInnes 
509536851e7fSLois Curfman McInnes    Level: advanced
509636851e7fSLois Curfman McInnes 
5097db781477SPatrick Sanan .seealso: `SNESGetOptionsPrefix()`
50983c7409f5SSatish Balay @*/
50997087cfbeSBarry Smith PetscErrorCode  SNESAppendOptionsPrefix(SNES snes,const char prefix[])
51003c7409f5SSatish Balay {
51013a40ed3dSBarry Smith   PetscFunctionBegin;
51020700a824SBarry Smith   PetscValidHeaderSpecific(snes,SNES_CLASSID,1);
51039566063dSJacob Faibussowitsch   PetscCall(PetscObjectAppendOptionsPrefix((PetscObject)snes,prefix));
51049566063dSJacob Faibussowitsch   if (!snes->ksp) PetscCall(SNESGetKSP(snes,&snes->ksp));
510535f5d045SPeter Brune   if (snes->linesearch) {
51069566063dSJacob Faibussowitsch     PetscCall(SNESGetLineSearch(snes,&snes->linesearch));
51079566063dSJacob Faibussowitsch     PetscCall(PetscObjectAppendOptionsPrefix((PetscObject)snes->linesearch,prefix));
510835f5d045SPeter Brune   }
51099566063dSJacob Faibussowitsch   PetscCall(KSPAppendOptionsPrefix(snes->ksp,prefix));
51103a40ed3dSBarry Smith   PetscFunctionReturn(0);
51113c7409f5SSatish Balay }
51123c7409f5SSatish Balay 
51139ab63eb5SSatish Balay /*@C
51143c7409f5SSatish Balay    SNESGetOptionsPrefix - Sets the prefix used for searching for all
51153c7409f5SSatish Balay    SNES options in the database.
51163c7409f5SSatish Balay 
5117c7afd0dbSLois Curfman McInnes    Not Collective
5118c7afd0dbSLois Curfman McInnes 
51193c7409f5SSatish Balay    Input Parameter:
51203c7409f5SSatish Balay .  snes - the SNES context
51213c7409f5SSatish Balay 
51223c7409f5SSatish Balay    Output Parameter:
51233c7409f5SSatish Balay .  prefix - pointer to the prefix string used
51243c7409f5SSatish Balay 
512595452b02SPatrick Sanan    Notes:
512695452b02SPatrick Sanan     On the fortran side, the user should pass in a string 'prefix' of
51279ab63eb5SSatish Balay    sufficient length to hold the prefix.
51289ab63eb5SSatish Balay 
512936851e7fSLois Curfman McInnes    Level: advanced
513036851e7fSLois Curfman McInnes 
5131db781477SPatrick Sanan .seealso: `SNESAppendOptionsPrefix()`
51323c7409f5SSatish Balay @*/
51337087cfbeSBarry Smith PetscErrorCode  SNESGetOptionsPrefix(SNES snes,const char *prefix[])
51343c7409f5SSatish Balay {
51353a40ed3dSBarry Smith   PetscFunctionBegin;
51360700a824SBarry Smith   PetscValidHeaderSpecific(snes,SNES_CLASSID,1);
51379566063dSJacob Faibussowitsch   PetscCall(PetscObjectGetOptionsPrefix((PetscObject)snes,prefix));
51383a40ed3dSBarry Smith   PetscFunctionReturn(0);
51393c7409f5SSatish Balay }
51403c7409f5SSatish Balay 
51413cea93caSBarry Smith /*@C
51421c84c290SBarry Smith   SNESRegister - Adds a method to the nonlinear solver package.
51431c84c290SBarry Smith 
51441c84c290SBarry Smith    Not collective
51451c84c290SBarry Smith 
51461c84c290SBarry Smith    Input Parameters:
51471c84c290SBarry Smith +  name_solver - name of a new user-defined solver
51481c84c290SBarry Smith -  routine_create - routine to create method context
51491c84c290SBarry Smith 
51501c84c290SBarry Smith    Notes:
51511c84c290SBarry Smith    SNESRegister() may be called multiple times to add several user-defined solvers.
51521c84c290SBarry Smith 
51531c84c290SBarry Smith    Sample usage:
51541c84c290SBarry Smith .vb
5155bdf89e91SBarry Smith    SNESRegister("my_solver",MySolverCreate);
51561c84c290SBarry Smith .ve
51571c84c290SBarry Smith 
51581c84c290SBarry Smith    Then, your solver can be chosen with the procedural interface via
51591c84c290SBarry Smith $     SNESSetType(snes,"my_solver")
51601c84c290SBarry Smith    or at runtime via the option
51611c84c290SBarry Smith $     -snes_type my_solver
51621c84c290SBarry Smith 
51631c84c290SBarry Smith    Level: advanced
51641c84c290SBarry Smith 
51651c84c290SBarry Smith     Note: If your function is not being put into a shared library then use SNESRegister() instead
51661c84c290SBarry Smith 
5167db781477SPatrick Sanan .seealso: `SNESRegisterAll()`, `SNESRegisterDestroy()`
51683cea93caSBarry Smith 
51697f6c08e0SMatthew Knepley   Level: advanced
51703cea93caSBarry Smith @*/
5171bdf89e91SBarry Smith PetscErrorCode  SNESRegister(const char sname[],PetscErrorCode (*function)(SNES))
5172b2002411SLois Curfman McInnes {
5173b2002411SLois Curfman McInnes   PetscFunctionBegin;
51749566063dSJacob Faibussowitsch   PetscCall(SNESInitializePackage());
51759566063dSJacob Faibussowitsch   PetscCall(PetscFunctionListAdd(&SNESList,sname,function));
5176b2002411SLois Curfman McInnes   PetscFunctionReturn(0);
5177b2002411SLois Curfman McInnes }
5178da9b6338SBarry Smith 
51797087cfbeSBarry Smith PetscErrorCode  SNESTestLocalMin(SNES snes)
5180da9b6338SBarry Smith {
518177431f27SBarry Smith   PetscInt       N,i,j;
5182da9b6338SBarry Smith   Vec            u,uh,fh;
5183da9b6338SBarry Smith   PetscScalar    value;
5184da9b6338SBarry Smith   PetscReal      norm;
5185da9b6338SBarry Smith 
5186da9b6338SBarry Smith   PetscFunctionBegin;
51879566063dSJacob Faibussowitsch   PetscCall(SNESGetSolution(snes,&u));
51889566063dSJacob Faibussowitsch   PetscCall(VecDuplicate(u,&uh));
51899566063dSJacob Faibussowitsch   PetscCall(VecDuplicate(u,&fh));
5190da9b6338SBarry Smith 
5191da9b6338SBarry Smith   /* currently only works for sequential */
51929566063dSJacob Faibussowitsch   PetscCall(PetscPrintf(PetscObjectComm((PetscObject)snes),"Testing FormFunction() for local min\n"));
51939566063dSJacob Faibussowitsch   PetscCall(VecGetSize(u,&N));
5194da9b6338SBarry Smith   for (i=0; i<N; i++) {
51959566063dSJacob Faibussowitsch     PetscCall(VecCopy(u,uh));
519663a3b9bcSJacob Faibussowitsch     PetscCall(PetscPrintf(PetscObjectComm((PetscObject)snes),"i = %" PetscInt_FMT "\n",i));
5197da9b6338SBarry Smith     for (j=-10; j<11; j++) {
51988b49ba18SBarry Smith       value = PetscSign(j)*PetscExpReal(PetscAbs(j)-10.0);
51999566063dSJacob Faibussowitsch       PetscCall(VecSetValue(uh,i,value,ADD_VALUES));
52009566063dSJacob Faibussowitsch       PetscCall(SNESComputeFunction(snes,uh,fh));
52019566063dSJacob Faibussowitsch       PetscCall(VecNorm(fh,NORM_2,&norm));
520263a3b9bcSJacob Faibussowitsch       PetscCall(PetscPrintf(PetscObjectComm((PetscObject)snes),"       j norm %" PetscInt_FMT " %18.16e\n",j,(double)norm));
5203da9b6338SBarry Smith       value = -value;
52049566063dSJacob Faibussowitsch       PetscCall(VecSetValue(uh,i,value,ADD_VALUES));
5205da9b6338SBarry Smith     }
5206da9b6338SBarry Smith   }
52079566063dSJacob Faibussowitsch   PetscCall(VecDestroy(&uh));
52089566063dSJacob Faibussowitsch   PetscCall(VecDestroy(&fh));
5209da9b6338SBarry Smith   PetscFunctionReturn(0);
5210da9b6338SBarry Smith }
521171f87433Sdalcinl 
521271f87433Sdalcinl /*@
5213fa9f3622SBarry Smith    SNESKSPSetUseEW - Sets SNES use Eisenstat-Walker method for
521471f87433Sdalcinl    computing relative tolerance for linear solvers within an inexact
521571f87433Sdalcinl    Newton method.
521671f87433Sdalcinl 
52173f9fe445SBarry Smith    Logically Collective on SNES
521871f87433Sdalcinl 
521971f87433Sdalcinl    Input Parameters:
522071f87433Sdalcinl +  snes - SNES context
522171f87433Sdalcinl -  flag - PETSC_TRUE or PETSC_FALSE
522271f87433Sdalcinl 
522364ba62caSBarry Smith     Options Database:
522464ba62caSBarry Smith +  -snes_ksp_ew - use Eisenstat-Walker method for determining linear system convergence
522564ba62caSBarry Smith .  -snes_ksp_ew_version ver - version of  Eisenstat-Walker method
522664ba62caSBarry Smith .  -snes_ksp_ew_rtol0 <rtol0> - Sets rtol0
522764ba62caSBarry Smith .  -snes_ksp_ew_rtolmax <rtolmax> - Sets rtolmax
522864ba62caSBarry Smith .  -snes_ksp_ew_gamma <gamma> - Sets gamma
522964ba62caSBarry Smith .  -snes_ksp_ew_alpha <alpha> - Sets alpha
523064ba62caSBarry Smith .  -snes_ksp_ew_alpha2 <alpha2> - Sets alpha2
523164ba62caSBarry Smith -  -snes_ksp_ew_threshold <threshold> - Sets threshold
523264ba62caSBarry Smith 
523371f87433Sdalcinl    Notes:
523471f87433Sdalcinl    Currently, the default is to use a constant relative tolerance for
523571f87433Sdalcinl    the inner linear solvers.  Alternatively, one can use the
523671f87433Sdalcinl    Eisenstat-Walker method, where the relative convergence tolerance
523771f87433Sdalcinl    is reset at each Newton iteration according progress of the nonlinear
523871f87433Sdalcinl    solver.
523971f87433Sdalcinl 
524071f87433Sdalcinl    Level: advanced
524171f87433Sdalcinl 
524271f87433Sdalcinl    Reference:
524371f87433Sdalcinl    S. C. Eisenstat and H. F. Walker, "Choosing the forcing terms in an
524471f87433Sdalcinl    inexact Newton method", SISC 17 (1), pp.16-32, 1996.
524571f87433Sdalcinl 
5246db781477SPatrick Sanan .seealso: `SNESKSPGetUseEW()`, `SNESKSPGetParametersEW()`, `SNESKSPSetParametersEW()`
524771f87433Sdalcinl @*/
52487087cfbeSBarry Smith PetscErrorCode  SNESKSPSetUseEW(SNES snes,PetscBool flag)
524971f87433Sdalcinl {
525071f87433Sdalcinl   PetscFunctionBegin;
52510700a824SBarry Smith   PetscValidHeaderSpecific(snes,SNES_CLASSID,1);
5252acfcf0e5SJed Brown   PetscValidLogicalCollectiveBool(snes,flag,2);
525371f87433Sdalcinl   snes->ksp_ewconv = flag;
525471f87433Sdalcinl   PetscFunctionReturn(0);
525571f87433Sdalcinl }
525671f87433Sdalcinl 
525771f87433Sdalcinl /*@
5258fa9f3622SBarry Smith    SNESKSPGetUseEW - Gets if SNES is using Eisenstat-Walker method
525971f87433Sdalcinl    for computing relative tolerance for linear solvers within an
526071f87433Sdalcinl    inexact Newton method.
526171f87433Sdalcinl 
526271f87433Sdalcinl    Not Collective
526371f87433Sdalcinl 
526471f87433Sdalcinl    Input Parameter:
526571f87433Sdalcinl .  snes - SNES context
526671f87433Sdalcinl 
526771f87433Sdalcinl    Output Parameter:
526871f87433Sdalcinl .  flag - PETSC_TRUE or PETSC_FALSE
526971f87433Sdalcinl 
527071f87433Sdalcinl    Notes:
527171f87433Sdalcinl    Currently, the default is to use a constant relative tolerance for
527271f87433Sdalcinl    the inner linear solvers.  Alternatively, one can use the
527371f87433Sdalcinl    Eisenstat-Walker method, where the relative convergence tolerance
527471f87433Sdalcinl    is reset at each Newton iteration according progress of the nonlinear
527571f87433Sdalcinl    solver.
527671f87433Sdalcinl 
527771f87433Sdalcinl    Level: advanced
527871f87433Sdalcinl 
527971f87433Sdalcinl    Reference:
528071f87433Sdalcinl    S. C. Eisenstat and H. F. Walker, "Choosing the forcing terms in an
528171f87433Sdalcinl    inexact Newton method", SISC 17 (1), pp.16-32, 1996.
528271f87433Sdalcinl 
5283db781477SPatrick Sanan .seealso: `SNESKSPSetUseEW()`, `SNESKSPGetParametersEW()`, `SNESKSPSetParametersEW()`
528471f87433Sdalcinl @*/
52857087cfbeSBarry Smith PetscErrorCode  SNESKSPGetUseEW(SNES snes, PetscBool  *flag)
528671f87433Sdalcinl {
528771f87433Sdalcinl   PetscFunctionBegin;
52880700a824SBarry Smith   PetscValidHeaderSpecific(snes,SNES_CLASSID,1);
5289534a8f05SLisandro Dalcin   PetscValidBoolPointer(flag,2);
529071f87433Sdalcinl   *flag = snes->ksp_ewconv;
529171f87433Sdalcinl   PetscFunctionReturn(0);
529271f87433Sdalcinl }
529371f87433Sdalcinl 
529471f87433Sdalcinl /*@
5295fa9f3622SBarry Smith    SNESKSPSetParametersEW - Sets parameters for Eisenstat-Walker
529671f87433Sdalcinl    convergence criteria for the linear solvers within an inexact
529771f87433Sdalcinl    Newton method.
529871f87433Sdalcinl 
52993f9fe445SBarry Smith    Logically Collective on SNES
530071f87433Sdalcinl 
530171f87433Sdalcinl    Input Parameters:
530271f87433Sdalcinl +    snes - SNES context
530371f87433Sdalcinl .    version - version 1, 2 (default is 2) or 3
530471f87433Sdalcinl .    rtol_0 - initial relative tolerance (0 <= rtol_0 < 1)
530571f87433Sdalcinl .    rtol_max - maximum relative tolerance (0 <= rtol_max < 1)
530671f87433Sdalcinl .    gamma - multiplicative factor for version 2 rtol computation
530771f87433Sdalcinl              (0 <= gamma2 <= 1)
530871f87433Sdalcinl .    alpha - power for version 2 rtol computation (1 < alpha <= 2)
530971f87433Sdalcinl .    alpha2 - power for safeguard
531071f87433Sdalcinl -    threshold - threshold for imposing safeguard (0 < threshold < 1)
531171f87433Sdalcinl 
531271f87433Sdalcinl    Note:
531371f87433Sdalcinl    Version 3 was contributed by Luis Chacon, June 2006.
531471f87433Sdalcinl 
531571f87433Sdalcinl    Use PETSC_DEFAULT to retain the default for any of the parameters.
531671f87433Sdalcinl 
531771f87433Sdalcinl    Level: advanced
531871f87433Sdalcinl 
531971f87433Sdalcinl    Reference:
532071f87433Sdalcinl    S. C. Eisenstat and H. F. Walker, "Choosing the forcing terms in an
532171f87433Sdalcinl    inexact Newton method", Utah State University Math. Stat. Dept. Res.
532271f87433Sdalcinl    Report 6/94/75, June, 1994, to appear in SIAM J. Sci. Comput.
532371f87433Sdalcinl 
5324db781477SPatrick Sanan .seealso: `SNESKSPSetUseEW()`, `SNESKSPGetUseEW()`, `SNESKSPGetParametersEW()`
532571f87433Sdalcinl @*/
5326f5af7f23SKarl Rupp PetscErrorCode  SNESKSPSetParametersEW(SNES snes,PetscInt version,PetscReal rtol_0,PetscReal rtol_max,PetscReal gamma,PetscReal alpha,PetscReal alpha2,PetscReal threshold)
532771f87433Sdalcinl {
5328fa9f3622SBarry Smith   SNESKSPEW *kctx;
53295fd66863SKarl Rupp 
533071f87433Sdalcinl   PetscFunctionBegin;
53310700a824SBarry Smith   PetscValidHeaderSpecific(snes,SNES_CLASSID,1);
5332fa9f3622SBarry Smith   kctx = (SNESKSPEW*)snes->kspconvctx;
53335f80ce2aSJacob Faibussowitsch   PetscCheck(kctx,PETSC_COMM_SELF,PETSC_ERR_ARG_WRONGSTATE,"No Eisenstat-Walker context existing");
5334c5eb9154SBarry Smith   PetscValidLogicalCollectiveInt(snes,version,2);
5335c5eb9154SBarry Smith   PetscValidLogicalCollectiveReal(snes,rtol_0,3);
5336c5eb9154SBarry Smith   PetscValidLogicalCollectiveReal(snes,rtol_max,4);
5337c5eb9154SBarry Smith   PetscValidLogicalCollectiveReal(snes,gamma,5);
5338c5eb9154SBarry Smith   PetscValidLogicalCollectiveReal(snes,alpha,6);
5339c5eb9154SBarry Smith   PetscValidLogicalCollectiveReal(snes,alpha2,7);
5340c5eb9154SBarry Smith   PetscValidLogicalCollectiveReal(snes,threshold,8);
534171f87433Sdalcinl 
534271f87433Sdalcinl   if (version != PETSC_DEFAULT)   kctx->version   = version;
534371f87433Sdalcinl   if (rtol_0 != PETSC_DEFAULT)    kctx->rtol_0    = rtol_0;
534471f87433Sdalcinl   if (rtol_max != PETSC_DEFAULT)  kctx->rtol_max  = rtol_max;
534571f87433Sdalcinl   if (gamma != PETSC_DEFAULT)     kctx->gamma     = gamma;
534671f87433Sdalcinl   if (alpha != PETSC_DEFAULT)     kctx->alpha     = alpha;
534771f87433Sdalcinl   if (alpha2 != PETSC_DEFAULT)    kctx->alpha2    = alpha2;
534871f87433Sdalcinl   if (threshold != PETSC_DEFAULT) kctx->threshold = threshold;
534971f87433Sdalcinl 
535063a3b9bcSJacob Faibussowitsch   PetscCheck(kctx->version >= 1 && kctx->version <= 3,PETSC_COMM_SELF,PETSC_ERR_ARG_OUTOFRANGE,"Only versions 1, 2 and 3 are supported: %" PetscInt_FMT,kctx->version);
53510b121fc5SBarry Smith   PetscCheck(kctx->rtol_0 >= 0.0 && kctx->rtol_0 < 1.0,PETSC_COMM_SELF,PETSC_ERR_ARG_OUTOFRANGE,"0.0 <= rtol_0 < 1.0: %g",(double)kctx->rtol_0);
53520b121fc5SBarry Smith   PetscCheck(kctx->rtol_max >= 0.0 && kctx->rtol_max < 1.0,PETSC_COMM_SELF,PETSC_ERR_ARG_OUTOFRANGE,"0.0 <= rtol_max (%g) < 1.0",(double)kctx->rtol_max);
53530b121fc5SBarry Smith   PetscCheck(kctx->gamma >= 0.0 && kctx->gamma <= 1.0,PETSC_COMM_SELF,PETSC_ERR_ARG_OUTOFRANGE,"0.0 <= gamma (%g) <= 1.0",(double)kctx->gamma);
53540b121fc5SBarry Smith   PetscCheck(kctx->alpha > 1.0 && kctx->alpha <= 2.0,PETSC_COMM_SELF,PETSC_ERR_ARG_OUTOFRANGE,"1.0 < alpha (%g) <= 2.0",(double)kctx->alpha);
53550b121fc5SBarry Smith   PetscCheck(kctx->threshold > 0.0 && kctx->threshold < 1.0,PETSC_COMM_SELF,PETSC_ERR_ARG_OUTOFRANGE,"0.0 < threshold (%g) < 1.0",(double)kctx->threshold);
535671f87433Sdalcinl   PetscFunctionReturn(0);
535771f87433Sdalcinl }
535871f87433Sdalcinl 
535971f87433Sdalcinl /*@
5360fa9f3622SBarry Smith    SNESKSPGetParametersEW - Gets parameters for Eisenstat-Walker
536171f87433Sdalcinl    convergence criteria for the linear solvers within an inexact
536271f87433Sdalcinl    Newton method.
536371f87433Sdalcinl 
536471f87433Sdalcinl    Not Collective
536571f87433Sdalcinl 
536697bb3fdcSJose E. Roman    Input Parameter:
53676b867d5aSJose E. Roman .    snes - SNES context
536871f87433Sdalcinl 
536971f87433Sdalcinl    Output Parameters:
537071f87433Sdalcinl +    version - version 1, 2 (default is 2) or 3
537171f87433Sdalcinl .    rtol_0 - initial relative tolerance (0 <= rtol_0 < 1)
537271f87433Sdalcinl .    rtol_max - maximum relative tolerance (0 <= rtol_max < 1)
5373bf388a1fSBarry Smith .    gamma - multiplicative factor for version 2 rtol computation (0 <= gamma2 <= 1)
537471f87433Sdalcinl .    alpha - power for version 2 rtol computation (1 < alpha <= 2)
537571f87433Sdalcinl .    alpha2 - power for safeguard
537671f87433Sdalcinl -    threshold - threshold for imposing safeguard (0 < threshold < 1)
537771f87433Sdalcinl 
537871f87433Sdalcinl    Level: advanced
537971f87433Sdalcinl 
5380db781477SPatrick Sanan .seealso: `SNESKSPSetUseEW()`, `SNESKSPGetUseEW()`, `SNESKSPSetParametersEW()`
538171f87433Sdalcinl @*/
5382bf388a1fSBarry Smith PetscErrorCode  SNESKSPGetParametersEW(SNES snes,PetscInt *version,PetscReal *rtol_0,PetscReal *rtol_max,PetscReal *gamma,PetscReal *alpha,PetscReal *alpha2,PetscReal *threshold)
538371f87433Sdalcinl {
5384fa9f3622SBarry Smith   SNESKSPEW *kctx;
53855fd66863SKarl Rupp 
538671f87433Sdalcinl   PetscFunctionBegin;
53870700a824SBarry Smith   PetscValidHeaderSpecific(snes,SNES_CLASSID,1);
5388fa9f3622SBarry Smith   kctx = (SNESKSPEW*)snes->kspconvctx;
53895f80ce2aSJacob Faibussowitsch   PetscCheck(kctx,PETSC_COMM_SELF,PETSC_ERR_ARG_WRONGSTATE,"No Eisenstat-Walker context existing");
539071f87433Sdalcinl   if (version)   *version   = kctx->version;
539171f87433Sdalcinl   if (rtol_0)    *rtol_0    = kctx->rtol_0;
539271f87433Sdalcinl   if (rtol_max)  *rtol_max  = kctx->rtol_max;
539371f87433Sdalcinl   if (gamma)     *gamma     = kctx->gamma;
539471f87433Sdalcinl   if (alpha)     *alpha     = kctx->alpha;
539571f87433Sdalcinl   if (alpha2)    *alpha2    = kctx->alpha2;
539671f87433Sdalcinl   if (threshold) *threshold = kctx->threshold;
539771f87433Sdalcinl   PetscFunctionReturn(0);
539871f87433Sdalcinl }
539971f87433Sdalcinl 
5400d5378b5fSDmitry Karpeev  PetscErrorCode KSPPreSolve_SNESEW(KSP ksp, Vec b, Vec x, SNES snes)
540171f87433Sdalcinl {
5402fa9f3622SBarry Smith   SNESKSPEW      *kctx = (SNESKSPEW*)snes->kspconvctx;
540371f87433Sdalcinl   PetscReal      rtol  = PETSC_DEFAULT,stol;
540471f87433Sdalcinl 
540571f87433Sdalcinl   PetscFunctionBegin;
5406d4211eb9SBarry Smith   if (!snes->ksp_ewconv) PetscFunctionReturn(0);
540730058271SDmitry Karpeev   if (!snes->iter) {
540830058271SDmitry Karpeev     rtol = kctx->rtol_0; /* first time in, so use the original user rtol */
54099566063dSJacob Faibussowitsch     PetscCall(VecNorm(snes->vec_func,NORM_2,&kctx->norm_first));
541030058271SDmitry Karpeev   }
5411f5af7f23SKarl Rupp   else {
541271f87433Sdalcinl     if (kctx->version == 1) {
541371f87433Sdalcinl       rtol = (snes->norm - kctx->lresid_last)/kctx->norm_last;
541471f87433Sdalcinl       if (rtol < 0.0) rtol = -rtol;
541585ec1a3cSBarry Smith       stol = PetscPowReal(kctx->rtol_last,kctx->alpha2);
541671f87433Sdalcinl       if (stol > kctx->threshold) rtol = PetscMax(rtol,stol);
541771f87433Sdalcinl     } else if (kctx->version == 2) {
541885ec1a3cSBarry Smith       rtol = kctx->gamma * PetscPowReal(snes->norm/kctx->norm_last,kctx->alpha);
541985ec1a3cSBarry Smith       stol = kctx->gamma * PetscPowReal(kctx->rtol_last,kctx->alpha);
542071f87433Sdalcinl       if (stol > kctx->threshold) rtol = PetscMax(rtol,stol);
542171f87433Sdalcinl     } else if (kctx->version == 3) { /* contributed by Luis Chacon, June 2006. */
542285ec1a3cSBarry Smith       rtol = kctx->gamma * PetscPowReal(snes->norm/kctx->norm_last,kctx->alpha);
542371f87433Sdalcinl       /* safeguard: avoid sharp decrease of rtol */
542485ec1a3cSBarry Smith       stol = kctx->gamma*PetscPowReal(kctx->rtol_last,kctx->alpha);
542571f87433Sdalcinl       stol = PetscMax(rtol,stol);
542671f87433Sdalcinl       rtol = PetscMin(kctx->rtol_0,stol);
542771f87433Sdalcinl       /* safeguard: avoid oversolving */
542830058271SDmitry Karpeev       stol = kctx->gamma*(kctx->norm_first*snes->rtol)/snes->norm;
542971f87433Sdalcinl       stol = PetscMax(rtol,stol);
543071f87433Sdalcinl       rtol = PetscMin(kctx->rtol_0,stol);
543163a3b9bcSJacob Faibussowitsch     } else SETERRQ(PETSC_COMM_SELF,PETSC_ERR_ARG_OUTOFRANGE,"Only versions 1, 2 or 3 are supported: %" PetscInt_FMT,kctx->version);
543271f87433Sdalcinl   }
543371f87433Sdalcinl   /* safeguard: avoid rtol greater than one */
543471f87433Sdalcinl   rtol = PetscMin(rtol,kctx->rtol_max);
54359566063dSJacob Faibussowitsch   PetscCall(KSPSetTolerances(ksp,rtol,PETSC_DEFAULT,PETSC_DEFAULT,PETSC_DEFAULT));
543663a3b9bcSJacob Faibussowitsch   PetscCall(PetscInfo(snes,"iter %" PetscInt_FMT ", Eisenstat-Walker (version %" PetscInt_FMT ") KSP rtol=%g\n",snes->iter,kctx->version,(double)rtol));
543771f87433Sdalcinl   PetscFunctionReturn(0);
543871f87433Sdalcinl }
543971f87433Sdalcinl 
5440d5378b5fSDmitry Karpeev PetscErrorCode KSPPostSolve_SNESEW(KSP ksp, Vec b, Vec x, SNES snes)
544171f87433Sdalcinl {
5442fa9f3622SBarry Smith   SNESKSPEW      *kctx = (SNESKSPEW*)snes->kspconvctx;
544371f87433Sdalcinl   PCSide         pcside;
544471f87433Sdalcinl   Vec            lres;
544571f87433Sdalcinl 
544671f87433Sdalcinl   PetscFunctionBegin;
5447d4211eb9SBarry Smith   if (!snes->ksp_ewconv) PetscFunctionReturn(0);
54489566063dSJacob Faibussowitsch   PetscCall(KSPGetTolerances(ksp,&kctx->rtol_last,NULL,NULL,NULL));
544971dbe336SPeter Brune   kctx->norm_last = snes->norm;
545071f87433Sdalcinl   if (kctx->version == 1) {
54514f00ce20SMatthew G. Knepley     PC        pc;
54524f00ce20SMatthew G. Knepley     PetscBool isNone;
54534f00ce20SMatthew G. Knepley 
54549566063dSJacob Faibussowitsch     PetscCall(KSPGetPC(ksp, &pc));
54559566063dSJacob Faibussowitsch     PetscCall(PetscObjectTypeCompare((PetscObject) pc, PCNONE, &isNone));
54569566063dSJacob Faibussowitsch     PetscCall(KSPGetPCSide(ksp,&pcside));
54574f00ce20SMatthew G. Knepley      if (pcside == PC_RIGHT || isNone) { /* XXX Should we also test KSP_UNPRECONDITIONED_NORM ? */
545871f87433Sdalcinl       /* KSP residual is true linear residual */
54599566063dSJacob Faibussowitsch       PetscCall(KSPGetResidualNorm(ksp,&kctx->lresid_last));
546071f87433Sdalcinl     } else {
546171f87433Sdalcinl       /* KSP residual is preconditioned residual */
546271f87433Sdalcinl       /* compute true linear residual norm */
54639566063dSJacob Faibussowitsch       PetscCall(VecDuplicate(b,&lres));
54649566063dSJacob Faibussowitsch       PetscCall(MatMult(snes->jacobian,x,lres));
54659566063dSJacob Faibussowitsch       PetscCall(VecAYPX(lres,-1.0,b));
54669566063dSJacob Faibussowitsch       PetscCall(VecNorm(lres,NORM_2,&kctx->lresid_last));
54679566063dSJacob Faibussowitsch       PetscCall(VecDestroy(&lres));
546871f87433Sdalcinl     }
546971f87433Sdalcinl   }
547071f87433Sdalcinl   PetscFunctionReturn(0);
547171f87433Sdalcinl }
547271f87433Sdalcinl 
5473d4211eb9SBarry Smith /*@
5474d4211eb9SBarry Smith    SNESGetKSP - Returns the KSP context for a SNES solver.
5475d4211eb9SBarry Smith 
5476d4211eb9SBarry Smith    Not Collective, but if SNES object is parallel, then KSP object is parallel
5477d4211eb9SBarry Smith 
5478d4211eb9SBarry Smith    Input Parameter:
5479d4211eb9SBarry Smith .  snes - the SNES context
5480d4211eb9SBarry Smith 
5481d4211eb9SBarry Smith    Output Parameter:
5482d4211eb9SBarry Smith .  ksp - the KSP context
5483d4211eb9SBarry Smith 
5484d4211eb9SBarry Smith    Notes:
5485d4211eb9SBarry Smith    The user can then directly manipulate the KSP context to set various
5486d4211eb9SBarry Smith    options, etc.  Likewise, the user can then extract and manipulate the
5487d4211eb9SBarry Smith    PC contexts as well.
5488d4211eb9SBarry Smith 
5489d4211eb9SBarry Smith    Level: beginner
5490d4211eb9SBarry Smith 
5491db781477SPatrick Sanan .seealso: `KSPGetPC()`, `SNESCreate()`, `KSPCreate()`, `SNESSetKSP()`
5492d4211eb9SBarry Smith @*/
5493d4211eb9SBarry Smith PetscErrorCode  SNESGetKSP(SNES snes,KSP *ksp)
549471f87433Sdalcinl {
549571f87433Sdalcinl   PetscFunctionBegin;
5496d4211eb9SBarry Smith   PetscValidHeaderSpecific(snes,SNES_CLASSID,1);
5497d4211eb9SBarry Smith   PetscValidPointer(ksp,2);
5498d4211eb9SBarry Smith 
5499d4211eb9SBarry Smith   if (!snes->ksp) {
55009566063dSJacob Faibussowitsch     PetscCall(KSPCreate(PetscObjectComm((PetscObject)snes),&snes->ksp));
55019566063dSJacob Faibussowitsch     PetscCall(PetscObjectIncrementTabLevel((PetscObject)snes->ksp,(PetscObject)snes,1));
55029566063dSJacob Faibussowitsch     PetscCall(PetscLogObjectParent((PetscObject)snes,(PetscObject)snes->ksp));
5503d4211eb9SBarry Smith 
55049566063dSJacob Faibussowitsch     PetscCall(KSPSetPreSolve(snes->ksp,(PetscErrorCode (*)(KSP,Vec,Vec,void*))KSPPreSolve_SNESEW,snes));
55059566063dSJacob Faibussowitsch     PetscCall(KSPSetPostSolve(snes->ksp,(PetscErrorCode (*)(KSP,Vec,Vec,void*))KSPPostSolve_SNESEW,snes));
5506a5c2985bSBarry Smith 
55079566063dSJacob Faibussowitsch     PetscCall(KSPMonitorSetFromOptions(snes->ksp, "-snes_monitor_ksp", "snes_preconditioned_residual", snes));
55089566063dSJacob Faibussowitsch     PetscCall(PetscObjectSetOptions((PetscObject)snes->ksp,((PetscObject)snes)->options));
5509d4211eb9SBarry Smith   }
5510d4211eb9SBarry Smith   *ksp = snes->ksp;
551171f87433Sdalcinl   PetscFunctionReturn(0);
551271f87433Sdalcinl }
55136c699258SBarry Smith 
5514af0996ceSBarry Smith #include <petsc/private/dmimpl.h>
55156c699258SBarry Smith /*@
55162a808120SBarry Smith    SNESSetDM - Sets the DM that may be used by some nonlinear solvers or their underlying preconditioners
55176c699258SBarry Smith 
55183f9fe445SBarry Smith    Logically Collective on SNES
55196c699258SBarry Smith 
55206c699258SBarry Smith    Input Parameters:
55212a808120SBarry Smith +  snes - the nonlinear solver context
55222a808120SBarry Smith -  dm - the dm, cannot be NULL
55236c699258SBarry Smith 
5524e03a659cSJed Brown    Notes:
5525e03a659cSJed Brown    A DM can only be used for solving one problem at a time because information about the problem is stored on the DM,
5526e03a659cSJed Brown    even when not using interfaces like DMSNESSetFunction().  Use DMClone() to get a distinct DM when solving different
5527e03a659cSJed Brown    problems using the same function space.
5528e03a659cSJed Brown 
55296c699258SBarry Smith    Level: intermediate
55306c699258SBarry Smith 
5531db781477SPatrick Sanan .seealso: `SNESGetDM()`, `KSPSetDM()`, `KSPGetDM()`
55326c699258SBarry Smith @*/
55337087cfbeSBarry Smith PetscErrorCode  SNESSetDM(SNES snes,DM dm)
55346c699258SBarry Smith {
5535345fed2cSBarry Smith   KSP            ksp;
5536942e3340SBarry Smith   DMSNES         sdm;
55376c699258SBarry Smith 
55386c699258SBarry Smith   PetscFunctionBegin;
55390700a824SBarry Smith   PetscValidHeaderSpecific(snes,SNES_CLASSID,1);
55402a808120SBarry Smith   PetscValidHeaderSpecific(dm,DM_CLASSID,2);
55419566063dSJacob Faibussowitsch   PetscCall(PetscObjectReference((PetscObject)dm));
5542942e3340SBarry Smith   if (snes->dm) {               /* Move the DMSNES context over to the new DM unless the new DM already has one */
554351f4b3c7SToby Isaac     if (snes->dm->dmsnes && !dm->dmsnes) {
55449566063dSJacob Faibussowitsch       PetscCall(DMCopyDMSNES(snes->dm,dm));
55459566063dSJacob Faibussowitsch       PetscCall(DMGetDMSNES(snes->dm,&sdm));
5546f5af7f23SKarl Rupp       if (sdm->originaldm == snes->dm) sdm->originaldm = dm; /* Grant write privileges to the replacement DM */
55476cab3a1bSJed Brown     }
55489566063dSJacob Faibussowitsch     PetscCall(DMCoarsenHookRemove(snes->dm,DMCoarsenHook_SNESVecSol,DMRestrictHook_SNESVecSol,snes));
55499566063dSJacob Faibussowitsch     PetscCall(DMDestroy(&snes->dm));
55506cab3a1bSJed Brown   }
55516c699258SBarry Smith   snes->dm     = dm;
5552116d1032SJed Brown   snes->dmAuto = PETSC_FALSE;
5553f5af7f23SKarl Rupp 
55549566063dSJacob Faibussowitsch   PetscCall(SNESGetKSP(snes,&ksp));
55559566063dSJacob Faibussowitsch   PetscCall(KSPSetDM(ksp,dm));
55569566063dSJacob Faibussowitsch   PetscCall(KSPSetDMActive(ksp,PETSC_FALSE));
5557efd4aadfSBarry Smith   if (snes->npc) {
55589566063dSJacob Faibussowitsch     PetscCall(SNESSetDM(snes->npc,snes->dm));
55599566063dSJacob Faibussowitsch     PetscCall(SNESSetNPCSide(snes,snes->npcside));
55602c155ee1SBarry Smith   }
55616c699258SBarry Smith   PetscFunctionReturn(0);
55626c699258SBarry Smith }
55636c699258SBarry Smith 
55646c699258SBarry Smith /*@
55656c699258SBarry Smith    SNESGetDM - Gets the DM that may be used by some preconditioners
55666c699258SBarry Smith 
55673f9fe445SBarry Smith    Not Collective but DM obtained is parallel on SNES
55686c699258SBarry Smith 
55696c699258SBarry Smith    Input Parameter:
55706c699258SBarry Smith . snes - the preconditioner context
55716c699258SBarry Smith 
55726c699258SBarry Smith    Output Parameter:
55736c699258SBarry Smith .  dm - the dm
55746c699258SBarry Smith 
55756c699258SBarry Smith    Level: intermediate
55766c699258SBarry Smith 
5577db781477SPatrick Sanan .seealso: `SNESSetDM()`, `KSPSetDM()`, `KSPGetDM()`
55786c699258SBarry Smith @*/
55797087cfbeSBarry Smith PetscErrorCode  SNESGetDM(SNES snes,DM *dm)
55806c699258SBarry Smith {
55816c699258SBarry Smith   PetscFunctionBegin;
55820700a824SBarry Smith   PetscValidHeaderSpecific(snes,SNES_CLASSID,1);
55836cab3a1bSJed Brown   if (!snes->dm) {
55849566063dSJacob Faibussowitsch     PetscCall(DMShellCreate(PetscObjectComm((PetscObject)snes),&snes->dm));
5585116d1032SJed Brown     snes->dmAuto = PETSC_TRUE;
55866cab3a1bSJed Brown   }
55876c699258SBarry Smith   *dm = snes->dm;
55886c699258SBarry Smith   PetscFunctionReturn(0);
55896c699258SBarry Smith }
55900807856dSBarry Smith 
559131823bd8SMatthew G Knepley /*@
5592be95d8f1SBarry Smith   SNESSetNPC - Sets the nonlinear preconditioner to be used.
559331823bd8SMatthew G Knepley 
559431823bd8SMatthew G Knepley   Collective on SNES
559531823bd8SMatthew G Knepley 
559631823bd8SMatthew G Knepley   Input Parameters:
559731823bd8SMatthew G Knepley + snes - iterative context obtained from SNESCreate()
559831823bd8SMatthew G Knepley - pc   - the preconditioner object
559931823bd8SMatthew G Knepley 
560031823bd8SMatthew G Knepley   Notes:
5601be95d8f1SBarry Smith   Use SNESGetNPC() to retrieve the preconditioner context (for example,
560231823bd8SMatthew G Knepley   to configure it using the API).
560331823bd8SMatthew G Knepley 
560431823bd8SMatthew G Knepley   Level: developer
560531823bd8SMatthew G Knepley 
5606db781477SPatrick Sanan .seealso: `SNESGetNPC()`, `SNESHasNPC()`
560731823bd8SMatthew G Knepley @*/
5608be95d8f1SBarry Smith PetscErrorCode SNESSetNPC(SNES snes, SNES pc)
560931823bd8SMatthew G Knepley {
561031823bd8SMatthew G Knepley   PetscFunctionBegin;
561131823bd8SMatthew G Knepley   PetscValidHeaderSpecific(snes, SNES_CLASSID, 1);
561231823bd8SMatthew G Knepley   PetscValidHeaderSpecific(pc, SNES_CLASSID, 2);
561331823bd8SMatthew G Knepley   PetscCheckSameComm(snes, 1, pc, 2);
56149566063dSJacob Faibussowitsch   PetscCall(PetscObjectReference((PetscObject) pc));
56159566063dSJacob Faibussowitsch   PetscCall(SNESDestroy(&snes->npc));
5616efd4aadfSBarry Smith   snes->npc = pc;
56179566063dSJacob Faibussowitsch   PetscCall(PetscLogObjectParent((PetscObject)snes, (PetscObject)snes->npc));
561831823bd8SMatthew G Knepley   PetscFunctionReturn(0);
561931823bd8SMatthew G Knepley }
562031823bd8SMatthew G Knepley 
562131823bd8SMatthew G Knepley /*@
5622be95d8f1SBarry Smith   SNESGetNPC - Creates a nonlinear preconditioning solver (SNES) to be used to precondition the nonlinear solver.
562331823bd8SMatthew G Knepley 
5624951fe5abSBarry Smith   Not Collective; but any changes to the obtained SNES object must be applied collectively
562531823bd8SMatthew G Knepley 
562631823bd8SMatthew G Knepley   Input Parameter:
562731823bd8SMatthew G Knepley . snes - iterative context obtained from SNESCreate()
562831823bd8SMatthew G Knepley 
562931823bd8SMatthew G Knepley   Output Parameter:
563031823bd8SMatthew G Knepley . pc - preconditioner context
563131823bd8SMatthew G Knepley 
5632b5badacbSBarry Smith   Options Database:
5633b5badacbSBarry Smith . -npc_snes_type <type> - set the type of the SNES to use as the nonlinear preconditioner
5634b5badacbSBarry Smith 
563595452b02SPatrick Sanan   Notes:
5636b5badacbSBarry Smith     If a SNES was previously set with SNESSetNPC() then that SNES is returned, otherwise a new SNES object is created.
5637be95d8f1SBarry Smith 
5638951fe5abSBarry Smith     The (preconditioner) SNES returned automatically inherits the same nonlinear function and Jacobian supplied to the original
5639951fe5abSBarry Smith     SNES during SNESSetUp()
5640951fe5abSBarry Smith 
564131823bd8SMatthew G Knepley   Level: developer
564231823bd8SMatthew G Knepley 
5643db781477SPatrick Sanan .seealso: `SNESSetNPC()`, `SNESHasNPC()`, `SNES`, `SNESCreate()`
564431823bd8SMatthew G Knepley @*/
5645be95d8f1SBarry Smith PetscErrorCode SNESGetNPC(SNES snes, SNES *pc)
564631823bd8SMatthew G Knepley {
5647a64e098fSPeter Brune   const char     *optionsprefix;
564831823bd8SMatthew G Knepley 
564931823bd8SMatthew G Knepley   PetscFunctionBegin;
565031823bd8SMatthew G Knepley   PetscValidHeaderSpecific(snes, SNES_CLASSID, 1);
565131823bd8SMatthew G Knepley   PetscValidPointer(pc, 2);
5652efd4aadfSBarry Smith   if (!snes->npc) {
56539566063dSJacob Faibussowitsch     PetscCall(SNESCreate(PetscObjectComm((PetscObject)snes),&snes->npc));
56549566063dSJacob Faibussowitsch     PetscCall(PetscObjectIncrementTabLevel((PetscObject)snes->npc,(PetscObject)snes,1));
56559566063dSJacob Faibussowitsch     PetscCall(PetscLogObjectParent((PetscObject)snes,(PetscObject)snes->npc));
56569566063dSJacob Faibussowitsch     PetscCall(SNESGetOptionsPrefix(snes,&optionsprefix));
56579566063dSJacob Faibussowitsch     PetscCall(SNESSetOptionsPrefix(snes->npc,optionsprefix));
56589566063dSJacob Faibussowitsch     PetscCall(SNESAppendOptionsPrefix(snes->npc,"npc_"));
56599566063dSJacob Faibussowitsch     PetscCall(SNESSetCountersReset(snes->npc,PETSC_FALSE));
566031823bd8SMatthew G Knepley   }
5661efd4aadfSBarry Smith   *pc = snes->npc;
566231823bd8SMatthew G Knepley   PetscFunctionReturn(0);
566331823bd8SMatthew G Knepley }
566431823bd8SMatthew G Knepley 
56653ad1a0b9SPatrick Farrell /*@
56663ad1a0b9SPatrick Farrell   SNESHasNPC - Returns whether a nonlinear preconditioner exists
56673ad1a0b9SPatrick Farrell 
56683ad1a0b9SPatrick Farrell   Not Collective
56693ad1a0b9SPatrick Farrell 
56703ad1a0b9SPatrick Farrell   Input Parameter:
56713ad1a0b9SPatrick Farrell . snes - iterative context obtained from SNESCreate()
56723ad1a0b9SPatrick Farrell 
56733ad1a0b9SPatrick Farrell   Output Parameter:
56743ad1a0b9SPatrick Farrell . has_npc - whether the SNES has an NPC or not
56753ad1a0b9SPatrick Farrell 
56763ad1a0b9SPatrick Farrell   Level: developer
56773ad1a0b9SPatrick Farrell 
5678db781477SPatrick Sanan .seealso: `SNESSetNPC()`, `SNESGetNPC()`
56793ad1a0b9SPatrick Farrell @*/
56803ad1a0b9SPatrick Farrell PetscErrorCode SNESHasNPC(SNES snes, PetscBool *has_npc)
56813ad1a0b9SPatrick Farrell {
56823ad1a0b9SPatrick Farrell   PetscFunctionBegin;
56833ad1a0b9SPatrick Farrell   PetscValidHeaderSpecific(snes, SNES_CLASSID, 1);
5684efd4aadfSBarry Smith   *has_npc = (PetscBool) (snes->npc ? PETSC_TRUE : PETSC_FALSE);
56853ad1a0b9SPatrick Farrell   PetscFunctionReturn(0);
56863ad1a0b9SPatrick Farrell }
56873ad1a0b9SPatrick Farrell 
5688c40d0f55SPeter Brune /*@
5689be95d8f1SBarry Smith     SNESSetNPCSide - Sets the preconditioning side.
5690c40d0f55SPeter Brune 
5691c40d0f55SPeter Brune     Logically Collective on SNES
5692c40d0f55SPeter Brune 
5693c40d0f55SPeter Brune     Input Parameter:
5694c40d0f55SPeter Brune .   snes - iterative context obtained from SNESCreate()
5695c40d0f55SPeter Brune 
5696c40d0f55SPeter Brune     Output Parameter:
5697c40d0f55SPeter Brune .   side - the preconditioning side, where side is one of
5698c40d0f55SPeter Brune .vb
56992d547940SBarry Smith       PC_LEFT - left preconditioning
57002d547940SBarry Smith       PC_RIGHT - right preconditioning (default for most nonlinear solvers)
5701c40d0f55SPeter Brune .ve
5702c40d0f55SPeter Brune 
5703c40d0f55SPeter Brune     Options Database Keys:
570467b8a455SSatish Balay .   -snes_npc_side <right,left> - nonlinear preconditioner side
5705c40d0f55SPeter Brune 
570695452b02SPatrick Sanan     Notes:
570795452b02SPatrick Sanan     SNESNRICHARDSON and SNESNCG only support left preconditioning.
57082d547940SBarry Smith 
5709c40d0f55SPeter Brune     Level: intermediate
5710c40d0f55SPeter Brune 
5711db781477SPatrick Sanan .seealso: `SNESGetNPCSide()`, `KSPSetPCSide()`
5712c40d0f55SPeter Brune @*/
5713be95d8f1SBarry Smith PetscErrorCode  SNESSetNPCSide(SNES snes,PCSide side)
5714c40d0f55SPeter Brune {
5715c40d0f55SPeter Brune   PetscFunctionBegin;
5716c40d0f55SPeter Brune   PetscValidHeaderSpecific(snes,SNES_CLASSID,1);
5717c40d0f55SPeter Brune   PetscValidLogicalCollectiveEnum(snes,side,2);
5718b552625fSStefano Zampini   if (side == PC_SIDE_DEFAULT) side = PC_RIGHT;
571954c59aa7SJacob Faibussowitsch   PetscCheck((side == PC_LEFT) || (side == PC_RIGHT),PetscObjectComm((PetscObject)snes),PETSC_ERR_ARG_WRONG,"Only PC_LEFT and PC_RIGHT are supported");
5720efd4aadfSBarry Smith   snes->npcside = side;
5721c40d0f55SPeter Brune   PetscFunctionReturn(0);
5722c40d0f55SPeter Brune }
5723c40d0f55SPeter Brune 
5724c40d0f55SPeter Brune /*@
5725be95d8f1SBarry Smith     SNESGetNPCSide - Gets the preconditioning side.
5726c40d0f55SPeter Brune 
5727c40d0f55SPeter Brune     Not Collective
5728c40d0f55SPeter Brune 
5729c40d0f55SPeter Brune     Input Parameter:
5730c40d0f55SPeter Brune .   snes - iterative context obtained from SNESCreate()
5731c40d0f55SPeter Brune 
5732c40d0f55SPeter Brune     Output Parameter:
5733c40d0f55SPeter Brune .   side - the preconditioning side, where side is one of
5734c40d0f55SPeter Brune .vb
57352d547940SBarry Smith       PC_LEFT - left preconditioning
57362d547940SBarry Smith       PC_RIGHT - right preconditioning (default for most nonlinear solvers)
5737c40d0f55SPeter Brune .ve
5738c40d0f55SPeter Brune 
5739c40d0f55SPeter Brune     Level: intermediate
5740c40d0f55SPeter Brune 
5741db781477SPatrick Sanan .seealso: `SNESSetNPCSide()`, `KSPGetPCSide()`
5742c40d0f55SPeter Brune @*/
5743be95d8f1SBarry Smith PetscErrorCode  SNESGetNPCSide(SNES snes,PCSide *side)
5744c40d0f55SPeter Brune {
5745c40d0f55SPeter Brune   PetscFunctionBegin;
5746c40d0f55SPeter Brune   PetscValidHeaderSpecific(snes,SNES_CLASSID,1);
5747c40d0f55SPeter Brune   PetscValidPointer(side,2);
5748efd4aadfSBarry Smith   *side = snes->npcside;
5749c40d0f55SPeter Brune   PetscFunctionReturn(0);
5750c40d0f55SPeter Brune }
5751c40d0f55SPeter Brune 
57529e764e56SPeter Brune /*@
57537601faf0SJed Brown   SNESSetLineSearch - Sets the linesearch on the SNES instance.
57549e764e56SPeter Brune 
57559e764e56SPeter Brune   Collective on SNES
57569e764e56SPeter Brune 
57579e764e56SPeter Brune   Input Parameters:
57589e764e56SPeter Brune + snes - iterative context obtained from SNESCreate()
57599e764e56SPeter Brune - linesearch   - the linesearch object
57609e764e56SPeter Brune 
57619e764e56SPeter Brune   Notes:
57627601faf0SJed Brown   Use SNESGetLineSearch() to retrieve the preconditioner context (for example,
57639e764e56SPeter Brune   to configure it using the API).
57649e764e56SPeter Brune 
57659e764e56SPeter Brune   Level: developer
57669e764e56SPeter Brune 
5767db781477SPatrick Sanan .seealso: `SNESGetLineSearch()`
57689e764e56SPeter Brune @*/
57697601faf0SJed Brown PetscErrorCode SNESSetLineSearch(SNES snes, SNESLineSearch linesearch)
57709e764e56SPeter Brune {
57719e764e56SPeter Brune   PetscFunctionBegin;
57729e764e56SPeter Brune   PetscValidHeaderSpecific(snes, SNES_CLASSID, 1);
5773f1c6b773SPeter Brune   PetscValidHeaderSpecific(linesearch, SNESLINESEARCH_CLASSID, 2);
57749e764e56SPeter Brune   PetscCheckSameComm(snes, 1, linesearch, 2);
57759566063dSJacob Faibussowitsch   PetscCall(PetscObjectReference((PetscObject) linesearch));
57769566063dSJacob Faibussowitsch   PetscCall(SNESLineSearchDestroy(&snes->linesearch));
5777f5af7f23SKarl Rupp 
57789e764e56SPeter Brune   snes->linesearch = linesearch;
5779f5af7f23SKarl Rupp 
57809566063dSJacob Faibussowitsch   PetscCall(PetscLogObjectParent((PetscObject)snes, (PetscObject)snes->linesearch));
57819e764e56SPeter Brune   PetscFunctionReturn(0);
57829e764e56SPeter Brune }
57839e764e56SPeter Brune 
5784a34ceb2aSJed Brown /*@
57857601faf0SJed Brown   SNESGetLineSearch - Returns a pointer to the line search context set with SNESSetLineSearch()
57868141a3b9SPeter Brune   or creates a default line search instance associated with the SNES and returns it.
57879e764e56SPeter Brune 
57889e764e56SPeter Brune   Not Collective
57899e764e56SPeter Brune 
57909e764e56SPeter Brune   Input Parameter:
57919e764e56SPeter Brune . snes - iterative context obtained from SNESCreate()
57929e764e56SPeter Brune 
57939e764e56SPeter Brune   Output Parameter:
57949e764e56SPeter Brune . linesearch - linesearch context
57959e764e56SPeter Brune 
5796162e0bf5SPeter Brune   Level: beginner
57979e764e56SPeter Brune 
5798db781477SPatrick Sanan .seealso: `SNESSetLineSearch()`, `SNESLineSearchCreate()`
57999e764e56SPeter Brune @*/
58007601faf0SJed Brown PetscErrorCode SNESGetLineSearch(SNES snes, SNESLineSearch *linesearch)
58019e764e56SPeter Brune {
58029e764e56SPeter Brune   const char     *optionsprefix;
58039e764e56SPeter Brune 
58049e764e56SPeter Brune   PetscFunctionBegin;
58059e764e56SPeter Brune   PetscValidHeaderSpecific(snes, SNES_CLASSID, 1);
58069e764e56SPeter Brune   PetscValidPointer(linesearch, 2);
58079e764e56SPeter Brune   if (!snes->linesearch) {
58089566063dSJacob Faibussowitsch     PetscCall(SNESGetOptionsPrefix(snes, &optionsprefix));
58099566063dSJacob Faibussowitsch     PetscCall(SNESLineSearchCreate(PetscObjectComm((PetscObject)snes), &snes->linesearch));
58109566063dSJacob Faibussowitsch     PetscCall(SNESLineSearchSetSNES(snes->linesearch, snes));
58119566063dSJacob Faibussowitsch     PetscCall(SNESLineSearchAppendOptionsPrefix(snes->linesearch, optionsprefix));
58129566063dSJacob Faibussowitsch     PetscCall(PetscObjectIncrementTabLevel((PetscObject) snes->linesearch, (PetscObject) snes, 1));
58139566063dSJacob Faibussowitsch     PetscCall(PetscLogObjectParent((PetscObject)snes, (PetscObject)snes->linesearch));
58149e764e56SPeter Brune   }
58159e764e56SPeter Brune   *linesearch = snes->linesearch;
58169e764e56SPeter Brune   PetscFunctionReturn(0);
58179e764e56SPeter Brune }
5818