19b94acceSBarry Smith 2c6db04a5SJed Brown #include <private/snesimpl.h> /*I "petscsnes.h" I*/ 39b94acceSBarry Smith 4ace3abfcSBarry Smith PetscBool SNESRegisterAllCalled = PETSC_FALSE; 58ba1e511SMatthew Knepley PetscFList SNESList = PETSC_NULL; 68ba1e511SMatthew Knepley 78ba1e511SMatthew Knepley /* Logging support */ 87087cfbeSBarry Smith PetscClassId SNES_CLASSID; 9166c7f25SBarry Smith PetscLogEvent SNES_Solve, SNES_LineSearch, SNES_FunctionEval, SNES_JacobianEval; 10a09944afSBarry Smith 11a09944afSBarry Smith #undef __FUNCT__ 12cab2e9ccSBarry Smith #define __FUNCT__ "SNESDMComputeJacobian" 13cab2e9ccSBarry Smith /* 14cab2e9ccSBarry Smith Translates from a SNES call to a DM call in computing a Jacobian 15cab2e9ccSBarry Smith */ 16cab2e9ccSBarry Smith PetscErrorCode SNESDMComputeJacobian(SNES snes,Vec X,Mat *J,Mat *B,MatStructure *flag,void *ptr) 17cab2e9ccSBarry Smith { 18cab2e9ccSBarry Smith PetscErrorCode ierr; 19cab2e9ccSBarry Smith DM dm; 20cab2e9ccSBarry Smith 21cab2e9ccSBarry Smith PetscFunctionBegin; 22cab2e9ccSBarry Smith ierr = SNESGetDM(snes,&dm);CHKERRQ(ierr); 23cab2e9ccSBarry Smith ierr = DMComputeJacobian(dm,X,*J,*B,flag);CHKERRQ(ierr); 24cab2e9ccSBarry Smith PetscFunctionReturn(0); 25cab2e9ccSBarry Smith } 26cab2e9ccSBarry Smith 27cab2e9ccSBarry Smith #undef __FUNCT__ 28e113a28aSBarry Smith #define __FUNCT__ "SNESSetErrorIfNotConverged" 29e113a28aSBarry Smith /*@ 30e113a28aSBarry Smith SNESSetErrorIfNotConverged - Causes SNESSolve() to generate an error if the solver has not converged. 31e113a28aSBarry Smith 323f9fe445SBarry Smith Logically Collective on SNES 33e113a28aSBarry Smith 34e113a28aSBarry Smith Input Parameters: 35e113a28aSBarry Smith + snes - iterative context obtained from SNESCreate() 36e113a28aSBarry Smith - flg - PETSC_TRUE indicates you want the error generated 37e113a28aSBarry Smith 38e113a28aSBarry Smith Options database keys: 39e113a28aSBarry Smith . -snes_error_if_not_converged : this takes an optional truth value (0/1/no/yes/true/false) 40e113a28aSBarry Smith 41e113a28aSBarry Smith Level: intermediate 42e113a28aSBarry Smith 43e113a28aSBarry Smith Notes: 44e113a28aSBarry Smith Normally PETSc continues if a linear solver fails to converge, you can call SNESGetConvergedReason() after a SNESSolve() 45e113a28aSBarry Smith to determine if it has converged. 46e113a28aSBarry Smith 47e113a28aSBarry Smith .keywords: SNES, set, initial guess, nonzero 48e113a28aSBarry Smith 49e113a28aSBarry Smith .seealso: SNESGetErrorIfNotConverged(), KSPGetErrorIfNotConverged(), KSPSetErrorIFNotConverged() 50e113a28aSBarry Smith @*/ 517087cfbeSBarry Smith PetscErrorCode SNESSetErrorIfNotConverged(SNES snes,PetscBool flg) 52e113a28aSBarry Smith { 53e113a28aSBarry Smith PetscFunctionBegin; 54e113a28aSBarry Smith PetscValidHeaderSpecific(snes,SNES_CLASSID,1); 55acfcf0e5SJed Brown PetscValidLogicalCollectiveBool(snes,flg,2); 56e113a28aSBarry Smith snes->errorifnotconverged = flg; 57e113a28aSBarry Smith PetscFunctionReturn(0); 58e113a28aSBarry Smith } 59e113a28aSBarry Smith 60e113a28aSBarry Smith #undef __FUNCT__ 61e113a28aSBarry Smith #define __FUNCT__ "SNESGetErrorIfNotConverged" 62e113a28aSBarry Smith /*@ 63e113a28aSBarry Smith SNESGetErrorIfNotConverged - Will SNESSolve() generate an error if the solver does not converge? 64e113a28aSBarry Smith 65e113a28aSBarry Smith Not Collective 66e113a28aSBarry Smith 67e113a28aSBarry Smith Input Parameter: 68e113a28aSBarry Smith . snes - iterative context obtained from SNESCreate() 69e113a28aSBarry Smith 70e113a28aSBarry Smith Output Parameter: 71e113a28aSBarry Smith . flag - PETSC_TRUE if it will generate an error, else PETSC_FALSE 72e113a28aSBarry Smith 73e113a28aSBarry Smith Level: intermediate 74e113a28aSBarry Smith 75e113a28aSBarry Smith .keywords: SNES, set, initial guess, nonzero 76e113a28aSBarry Smith 77e113a28aSBarry Smith .seealso: SNESSetErrorIfNotConverged(), KSPGetErrorIfNotConverged(), KSPSetErrorIFNotConverged() 78e113a28aSBarry Smith @*/ 797087cfbeSBarry Smith PetscErrorCode SNESGetErrorIfNotConverged(SNES snes,PetscBool *flag) 80e113a28aSBarry Smith { 81e113a28aSBarry Smith PetscFunctionBegin; 82e113a28aSBarry Smith PetscValidHeaderSpecific(snes,SNES_CLASSID,1); 83e113a28aSBarry Smith PetscValidPointer(flag,2); 84e113a28aSBarry Smith *flag = snes->errorifnotconverged; 85e113a28aSBarry Smith PetscFunctionReturn(0); 86e113a28aSBarry Smith } 87e113a28aSBarry Smith 88e113a28aSBarry Smith #undef __FUNCT__ 894936397dSBarry Smith #define __FUNCT__ "SNESSetFunctionDomainError" 90e725d27bSBarry Smith /*@ 914936397dSBarry Smith SNESSetFunctionDomainError - tells SNES that the input vector to your FormFunction is not 924936397dSBarry Smith in the functions domain. For example, negative pressure. 934936397dSBarry Smith 943f9fe445SBarry Smith Logically Collective on SNES 954936397dSBarry Smith 964936397dSBarry Smith Input Parameters: 974936397dSBarry Smith . SNES - the SNES context 984936397dSBarry Smith 9928529972SSatish Balay Level: advanced 1004936397dSBarry Smith 1014936397dSBarry Smith .keywords: SNES, view 1024936397dSBarry Smith 1034936397dSBarry Smith .seealso: SNESCreate(), SNESSetFunction() 1044936397dSBarry Smith @*/ 1057087cfbeSBarry Smith PetscErrorCode SNESSetFunctionDomainError(SNES snes) 1064936397dSBarry Smith { 1074936397dSBarry Smith PetscFunctionBegin; 1080700a824SBarry Smith PetscValidHeaderSpecific(snes,SNES_CLASSID,1); 1094936397dSBarry Smith snes->domainerror = PETSC_TRUE; 1104936397dSBarry Smith PetscFunctionReturn(0); 1114936397dSBarry Smith } 1124936397dSBarry Smith 1134936397dSBarry Smith #undef __FUNCT__ 1144a2ae208SSatish Balay #define __FUNCT__ "SNESView" 1157e2c5f70SBarry Smith /*@C 1169b94acceSBarry Smith SNESView - Prints the SNES data structure. 1179b94acceSBarry Smith 1184c49b128SBarry Smith Collective on SNES 119fee21e36SBarry Smith 120c7afd0dbSLois Curfman McInnes Input Parameters: 121c7afd0dbSLois Curfman McInnes + SNES - the SNES context 122c7afd0dbSLois Curfman McInnes - viewer - visualization context 123c7afd0dbSLois Curfman McInnes 1249b94acceSBarry Smith Options Database Key: 125c8a8ba5cSLois Curfman McInnes . -snes_view - Calls SNESView() at end of SNESSolve() 1269b94acceSBarry Smith 1279b94acceSBarry Smith Notes: 1289b94acceSBarry Smith The available visualization contexts include 129b0a32e0cSBarry Smith + PETSC_VIEWER_STDOUT_SELF - standard output (default) 130b0a32e0cSBarry Smith - PETSC_VIEWER_STDOUT_WORLD - synchronized standard 131c8a8ba5cSLois Curfman McInnes output where only the first processor opens 132c8a8ba5cSLois Curfman McInnes the file. All other processors send their 133c8a8ba5cSLois Curfman McInnes data to the first processor to print. 1349b94acceSBarry Smith 1353e081fefSLois Curfman McInnes The user can open an alternative visualization context with 136b0a32e0cSBarry Smith PetscViewerASCIIOpen() - output to a specified file. 1379b94acceSBarry Smith 13836851e7fSLois Curfman McInnes Level: beginner 13936851e7fSLois Curfman McInnes 1409b94acceSBarry Smith .keywords: SNES, view 1419b94acceSBarry Smith 142b0a32e0cSBarry Smith .seealso: PetscViewerASCIIOpen() 1439b94acceSBarry Smith @*/ 1447087cfbeSBarry Smith PetscErrorCode SNESView(SNES snes,PetscViewer viewer) 1459b94acceSBarry Smith { 146fa9f3622SBarry Smith SNESKSPEW *kctx; 147dfbe8321SBarry Smith PetscErrorCode ierr; 14894b7f48cSBarry Smith KSP ksp; 149ace3abfcSBarry Smith PetscBool iascii,isstring; 1509b94acceSBarry Smith 1513a40ed3dSBarry Smith PetscFunctionBegin; 1520700a824SBarry Smith PetscValidHeaderSpecific(snes,SNES_CLASSID,1); 1533050cee2SBarry Smith if (!viewer) { 1547adad957SLisandro Dalcin ierr = PetscViewerASCIIGetStdout(((PetscObject)snes)->comm,&viewer);CHKERRQ(ierr); 1553050cee2SBarry Smith } 1560700a824SBarry Smith PetscValidHeaderSpecific(viewer,PETSC_VIEWER_CLASSID,2); 157c9780b6fSBarry Smith PetscCheckSameComm(snes,1,viewer,2); 15874679c65SBarry Smith 1592692d6eeSBarry Smith ierr = PetscTypeCompare((PetscObject)viewer,PETSCVIEWERASCII,&iascii);CHKERRQ(ierr); 1602692d6eeSBarry Smith ierr = PetscTypeCompare((PetscObject)viewer,PETSCVIEWERSTRING,&isstring);CHKERRQ(ierr); 16132077d6dSBarry Smith if (iascii) { 162317d6ea6SBarry Smith ierr = PetscObjectPrintClassNamePrefixType((PetscObject)snes,viewer,"SNES Object");CHKERRQ(ierr); 163e7788613SBarry Smith if (snes->ops->view) { 164b0a32e0cSBarry Smith ierr = PetscViewerASCIIPushTab(viewer);CHKERRQ(ierr); 165e7788613SBarry Smith ierr = (*snes->ops->view)(snes,viewer);CHKERRQ(ierr); 166b0a32e0cSBarry Smith ierr = PetscViewerASCIIPopTab(viewer);CHKERRQ(ierr); 1670ef38995SBarry Smith } 16877431f27SBarry Smith ierr = PetscViewerASCIIPrintf(viewer," maximum iterations=%D, maximum function evaluations=%D\n",snes->max_its,snes->max_funcs);CHKERRQ(ierr); 169a83599f4SBarry Smith ierr = PetscViewerASCIIPrintf(viewer," tolerances: relative=%G, absolute=%G, solution=%G\n", 17070441072SBarry Smith snes->rtol,snes->abstol,snes->xtol);CHKERRQ(ierr); 17177431f27SBarry Smith ierr = PetscViewerASCIIPrintf(viewer," total number of linear solver iterations=%D\n",snes->linear_its);CHKERRQ(ierr); 17277431f27SBarry Smith ierr = PetscViewerASCIIPrintf(viewer," total number of function evaluations=%D\n",snes->nfuncs);CHKERRQ(ierr); 1739b94acceSBarry Smith if (snes->ksp_ewconv) { 174fa9f3622SBarry Smith kctx = (SNESKSPEW *)snes->kspconvctx; 1759b94acceSBarry Smith if (kctx) { 17677431f27SBarry Smith ierr = PetscViewerASCIIPrintf(viewer," Eisenstat-Walker computation of KSP relative tolerance (version %D)\n",kctx->version);CHKERRQ(ierr); 177a83599f4SBarry Smith ierr = PetscViewerASCIIPrintf(viewer," rtol_0=%G, rtol_max=%G, threshold=%G\n",kctx->rtol_0,kctx->rtol_max,kctx->threshold);CHKERRQ(ierr); 178a83599f4SBarry Smith ierr = PetscViewerASCIIPrintf(viewer," gamma=%G, alpha=%G, alpha2=%G\n",kctx->gamma,kctx->alpha,kctx->alpha2);CHKERRQ(ierr); 1799b94acceSBarry Smith } 1809b94acceSBarry Smith } 181eb1f6c34SBarry Smith if (snes->lagpreconditioner == -1) { 182eb1f6c34SBarry Smith ierr = PetscViewerASCIIPrintf(viewer," Preconditioned is never rebuilt\n");CHKERRQ(ierr); 183eb1f6c34SBarry Smith } else if (snes->lagpreconditioner > 1) { 184eb1f6c34SBarry Smith ierr = PetscViewerASCIIPrintf(viewer," Preconditioned is rebuilt every %D new Jacobians\n",snes->lagpreconditioner);CHKERRQ(ierr); 185eb1f6c34SBarry Smith } 186eb1f6c34SBarry Smith if (snes->lagjacobian == -1) { 187eb1f6c34SBarry Smith ierr = PetscViewerASCIIPrintf(viewer," Jacobian is never rebuilt\n");CHKERRQ(ierr); 188eb1f6c34SBarry Smith } else if (snes->lagjacobian > 1) { 18942f4f86dSBarry Smith ierr = PetscViewerASCIIPrintf(viewer," Jacobian is rebuilt every %D SNES iterations\n",snes->lagjacobian);CHKERRQ(ierr); 190eb1f6c34SBarry Smith } 1910f5bd95cSBarry Smith } else if (isstring) { 192317d6ea6SBarry Smith const char *type; 193454a90a3SBarry Smith ierr = SNESGetType(snes,&type);CHKERRQ(ierr); 194b0a32e0cSBarry Smith ierr = PetscViewerStringSPrintf(viewer," %-3.3s",type);CHKERRQ(ierr); 19519bcc07fSBarry Smith } 19642f4f86dSBarry Smith if (snes->pc && snes->usespc) { 1974a0c5b0cSMatthew G Knepley ierr = PetscViewerASCIIPushTab(viewer);CHKERRQ(ierr); 1984a0c5b0cSMatthew G Knepley ierr = SNESView(snes->pc, viewer);CHKERRQ(ierr); 1994a0c5b0cSMatthew G Knepley ierr = PetscViewerASCIIPopTab(viewer);CHKERRQ(ierr); 2004a0c5b0cSMatthew G Knepley } 2012c155ee1SBarry Smith if (snes->usesksp) { 2022c155ee1SBarry Smith ierr = SNESGetKSP(snes,&ksp);CHKERRQ(ierr); 203b0a32e0cSBarry Smith ierr = PetscViewerASCIIPushTab(viewer);CHKERRQ(ierr); 20494b7f48cSBarry Smith ierr = KSPView(ksp,viewer);CHKERRQ(ierr); 205b0a32e0cSBarry Smith ierr = PetscViewerASCIIPopTab(viewer);CHKERRQ(ierr); 2062c155ee1SBarry Smith } 2073a40ed3dSBarry Smith PetscFunctionReturn(0); 2089b94acceSBarry Smith } 2099b94acceSBarry Smith 21076b2cf59SMatthew Knepley /* 21176b2cf59SMatthew Knepley We retain a list of functions that also take SNES command 21276b2cf59SMatthew Knepley line options. These are called at the end SNESSetFromOptions() 21376b2cf59SMatthew Knepley */ 21476b2cf59SMatthew Knepley #define MAXSETFROMOPTIONS 5 215a7cc72afSBarry Smith static PetscInt numberofsetfromoptions; 2166849ba73SBarry Smith static PetscErrorCode (*othersetfromoptions[MAXSETFROMOPTIONS])(SNES); 21776b2cf59SMatthew Knepley 218e74ef692SMatthew Knepley #undef __FUNCT__ 219e74ef692SMatthew Knepley #define __FUNCT__ "SNESAddOptionsChecker" 220ac226902SBarry Smith /*@C 22176b2cf59SMatthew Knepley SNESAddOptionsChecker - Adds an additional function to check for SNES options. 22276b2cf59SMatthew Knepley 22376b2cf59SMatthew Knepley Not Collective 22476b2cf59SMatthew Knepley 22576b2cf59SMatthew Knepley Input Parameter: 22676b2cf59SMatthew Knepley . snescheck - function that checks for options 22776b2cf59SMatthew Knepley 22876b2cf59SMatthew Knepley Level: developer 22976b2cf59SMatthew Knepley 23076b2cf59SMatthew Knepley .seealso: SNESSetFromOptions() 23176b2cf59SMatthew Knepley @*/ 2327087cfbeSBarry Smith PetscErrorCode SNESAddOptionsChecker(PetscErrorCode (*snescheck)(SNES)) 23376b2cf59SMatthew Knepley { 23476b2cf59SMatthew Knepley PetscFunctionBegin; 23576b2cf59SMatthew Knepley if (numberofsetfromoptions >= MAXSETFROMOPTIONS) { 236e32f2f54SBarry Smith SETERRQ1(PETSC_COMM_SELF,PETSC_ERR_ARG_OUTOFRANGE, "Too many options checkers, only %D allowed", MAXSETFROMOPTIONS); 23776b2cf59SMatthew Knepley } 23876b2cf59SMatthew Knepley othersetfromoptions[numberofsetfromoptions++] = snescheck; 23976b2cf59SMatthew Knepley PetscFunctionReturn(0); 24076b2cf59SMatthew Knepley } 24176b2cf59SMatthew Knepley 2427087cfbeSBarry Smith extern PetscErrorCode SNESDefaultMatrixFreeCreate2(SNES,Vec,Mat*); 243aa3661deSLisandro Dalcin 244aa3661deSLisandro Dalcin #undef __FUNCT__ 245aa3661deSLisandro Dalcin #define __FUNCT__ "SNESSetUpMatrixFree_Private" 246ace3abfcSBarry Smith static PetscErrorCode SNESSetUpMatrixFree_Private(SNES snes, PetscBool hasOperator, PetscInt version) 247aa3661deSLisandro Dalcin { 248aa3661deSLisandro Dalcin Mat J; 249aa3661deSLisandro Dalcin KSP ksp; 250aa3661deSLisandro Dalcin PC pc; 251ace3abfcSBarry Smith PetscBool match; 252aa3661deSLisandro Dalcin PetscErrorCode ierr; 253aa3661deSLisandro Dalcin 254aa3661deSLisandro Dalcin PetscFunctionBegin; 2550700a824SBarry Smith PetscValidHeaderSpecific(snes,SNES_CLASSID,1); 256aa3661deSLisandro Dalcin 25798613b67SLisandro Dalcin if(!snes->vec_func && (snes->jacobian || snes->jacobian_pre)) { 25898613b67SLisandro Dalcin Mat A = snes->jacobian, B = snes->jacobian_pre; 25998613b67SLisandro Dalcin ierr = MatGetVecs(A ? A : B, PETSC_NULL,&snes->vec_func);CHKERRQ(ierr); 26098613b67SLisandro Dalcin } 26198613b67SLisandro Dalcin 262aa3661deSLisandro Dalcin if (version == 1) { 263aa3661deSLisandro Dalcin ierr = MatCreateSNESMF(snes,&J);CHKERRQ(ierr); 26498613b67SLisandro Dalcin ierr = MatMFFDSetOptionsPrefix(J,((PetscObject)snes)->prefix);CHKERRQ(ierr); 2659c6ac3b3SBarry Smith ierr = MatSetFromOptions(J);CHKERRQ(ierr); 266aa3661deSLisandro Dalcin } else if (version == 2) { 267e32f2f54SBarry Smith if (!snes->vec_func) SETERRQ(PETSC_COMM_SELF,PETSC_ERR_ARG_WRONGSTATE,"SNESSetFunction() must be called first"); 26882a7e548SBarry Smith #if !defined(PETSC_USE_COMPLEX) && !defined(PETSC_USE_REAL_SINGLE) && !defined(PETSC_USE_REAL___FLOAT128) 269aa3661deSLisandro Dalcin ierr = SNESDefaultMatrixFreeCreate2(snes,snes->vec_func,&J);CHKERRQ(ierr); 270aa3661deSLisandro Dalcin #else 271e32f2f54SBarry Smith SETERRQ(PETSC_COMM_SELF,PETSC_ERR_SUP, "matrix-free operator rutines (version 2)"); 272aa3661deSLisandro Dalcin #endif 273a8248277SBarry Smith } else SETERRQ(PETSC_COMM_SELF,PETSC_ERR_ARG_OUTOFRANGE, "matrix-free operator rutines, only version 1 and 2"); 274aa3661deSLisandro Dalcin 275aa3661deSLisandro Dalcin ierr = PetscInfo1(snes,"Setting default matrix-free operator routines (version %D)\n", version);CHKERRQ(ierr); 276d3462f78SMatthew Knepley if (hasOperator) { 277aa3661deSLisandro Dalcin /* This version replaces the user provided Jacobian matrix with a 278aa3661deSLisandro Dalcin matrix-free version but still employs the user-provided preconditioner matrix. */ 279aa3661deSLisandro Dalcin ierr = SNESSetJacobian(snes,J,0,0,0);CHKERRQ(ierr); 280aa3661deSLisandro Dalcin } else { 281aa3661deSLisandro Dalcin /* This version replaces both the user-provided Jacobian and the user- 282aa3661deSLisandro Dalcin provided preconditioner matrix with the default matrix free version. */ 283aa3661deSLisandro Dalcin ierr = SNESSetJacobian(snes,J,J,MatMFFDComputeJacobian,snes->funP);CHKERRQ(ierr); 284aa3661deSLisandro Dalcin /* Force no preconditioner */ 285aa3661deSLisandro Dalcin ierr = SNESGetKSP(snes,&ksp);CHKERRQ(ierr); 286aa3661deSLisandro Dalcin ierr = KSPGetPC(ksp,&pc);CHKERRQ(ierr); 287aa3661deSLisandro Dalcin ierr = PetscTypeCompare((PetscObject)pc,PCSHELL,&match);CHKERRQ(ierr); 288aa3661deSLisandro Dalcin if (!match) { 289aa3661deSLisandro Dalcin ierr = PetscInfo(snes,"Setting default matrix-free preconditioner routines\nThat is no preconditioner is being used\n");CHKERRQ(ierr); 290aa3661deSLisandro Dalcin ierr = PCSetType(pc,PCNONE);CHKERRQ(ierr); 291aa3661deSLisandro Dalcin } 292aa3661deSLisandro Dalcin } 2936bf464f9SBarry Smith ierr = MatDestroy(&J);CHKERRQ(ierr); 294aa3661deSLisandro Dalcin PetscFunctionReturn(0); 295aa3661deSLisandro Dalcin } 296aa3661deSLisandro Dalcin 2974a2ae208SSatish Balay #undef __FUNCT__ 2984a2ae208SSatish Balay #define __FUNCT__ "SNESSetFromOptions" 2999b94acceSBarry Smith /*@ 30094b7f48cSBarry Smith SNESSetFromOptions - Sets various SNES and KSP parameters from user options. 3019b94acceSBarry Smith 302c7afd0dbSLois Curfman McInnes Collective on SNES 303c7afd0dbSLois Curfman McInnes 3049b94acceSBarry Smith Input Parameter: 3059b94acceSBarry Smith . snes - the SNES context 3069b94acceSBarry Smith 30736851e7fSLois Curfman McInnes Options Database Keys: 308ea630c6eSPeter Brune + -snes_type <type> - ls, tr, ngmres, ncg, richardson, qn, vi, fas 30982738288SBarry Smith . -snes_stol - convergence tolerance in terms of the norm 31082738288SBarry Smith of the change in the solution between steps 31170441072SBarry Smith . -snes_atol <abstol> - absolute tolerance of residual norm 312b39c3a46SLois Curfman McInnes . -snes_rtol <rtol> - relative decrease in tolerance norm from initial 313b39c3a46SLois Curfman McInnes . -snes_max_it <max_it> - maximum number of iterations 314b39c3a46SLois Curfman McInnes . -snes_max_funcs <max_funcs> - maximum number of function evaluations 315*4839bfe8SBarry Smith . -snes_max_fail <max_fail> - maximum number of line search failures allowed before stopping, default is none 316ddf469c8SBarry Smith . -snes_max_linear_solve_fail - number of linear solver failures before SNESSolve() stops 317a8054027SBarry Smith . -snes_lag_preconditioner <lag> - how often preconditioner is rebuilt (use -1 to never rebuild) 318e35cf81dSBarry Smith . -snes_lag_jacobian <lag> - how often Jacobian is rebuilt (use -1 to never rebuild) 319b39c3a46SLois Curfman McInnes . -snes_trtol <trtol> - trust region tolerance 3202492ecdbSBarry Smith . -snes_no_convergence_test - skip convergence test in nonlinear 32182738288SBarry Smith solver; hence iterations will continue until max_it 3221fbbfb26SLois Curfman McInnes or some other criterion is reached. Saves expense 32382738288SBarry Smith of convergence test 324e8105e01SRichard Katz . -snes_monitor <optional filename> - prints residual norm at each iteration. if no 325e8105e01SRichard Katz filename given prints to stdout 326a6570f20SBarry Smith . -snes_monitor_solution - plots solution at each iteration 327a6570f20SBarry Smith . -snes_monitor_residual - plots residual (not its norm) at each iteration 328a6570f20SBarry Smith . -snes_monitor_solution_update - plots update to solution at each iteration 329a6570f20SBarry Smith . -snes_monitor_draw - plots residual norm at each iteration 330e24b481bSBarry Smith . -snes_fd - use finite differences to compute Jacobian; very slow, only for testing 3315968eb51SBarry Smith . -snes_mf_ksp_monitor - if using matrix-free multiply then print h at each KSP iteration 332fee2055bSBarry Smith - -snes_converged_reason - print the reason for convergence/divergence after each solve 33382738288SBarry Smith 33482738288SBarry Smith Options Database for Eisenstat-Walker method: 335fa9f3622SBarry Smith + -snes_ksp_ew - use Eisenstat-Walker method for determining linear system convergence 3364b27c08aSLois Curfman McInnes . -snes_ksp_ew_version ver - version of Eisenstat-Walker method 33736851e7fSLois Curfman McInnes . -snes_ksp_ew_rtol0 <rtol0> - Sets rtol0 33836851e7fSLois Curfman McInnes . -snes_ksp_ew_rtolmax <rtolmax> - Sets rtolmax 33936851e7fSLois Curfman McInnes . -snes_ksp_ew_gamma <gamma> - Sets gamma 34036851e7fSLois Curfman McInnes . -snes_ksp_ew_alpha <alpha> - Sets alpha 34136851e7fSLois Curfman McInnes . -snes_ksp_ew_alpha2 <alpha2> - Sets alpha2 34236851e7fSLois Curfman McInnes - -snes_ksp_ew_threshold <threshold> - Sets threshold 34382738288SBarry Smith 34411ca99fdSLois Curfman McInnes Notes: 34511ca99fdSLois Curfman McInnes To see all options, run your program with the -help option or consult 3460598bfebSBarry Smith the <A href="../../docs/manual.pdf#nameddest=ch_snes">SNES chapter of the users manual</A>. 34783e2fdc7SBarry Smith 34836851e7fSLois Curfman McInnes Level: beginner 34936851e7fSLois Curfman McInnes 3509b94acceSBarry Smith .keywords: SNES, nonlinear, set, options, database 3519b94acceSBarry Smith 35269ed319cSSatish Balay .seealso: SNESSetOptionsPrefix() 3539b94acceSBarry Smith @*/ 3547087cfbeSBarry Smith PetscErrorCode SNESSetFromOptions(SNES snes) 3559b94acceSBarry Smith { 356ea630c6eSPeter Brune PetscBool flg,set,mf,mf_operator,pcset; 357efd51863SBarry Smith PetscInt i,indx,lag,mf_version,grids; 358aa3661deSLisandro Dalcin MatStructure matflag; 35985385478SLisandro Dalcin const char *deft = SNESLS; 36085385478SLisandro Dalcin const char *convtests[] = {"default","skip"}; 36185385478SLisandro Dalcin SNESKSPEW *kctx = NULL; 362e8105e01SRichard Katz char type[256], monfilename[PETSC_MAX_PATH_LEN]; 36351e86f29SPeter Brune const char *optionsprefix; 364649052a6SBarry Smith PetscViewer monviewer; 36585385478SLisandro Dalcin PetscErrorCode ierr; 3669b94acceSBarry Smith 3673a40ed3dSBarry Smith PetscFunctionBegin; 3680700a824SBarry Smith PetscValidHeaderSpecific(snes,SNES_CLASSID,1); 369ca161407SBarry Smith 370186905e3SBarry Smith if (!SNESRegisterAllCalled) {ierr = SNESRegisterAll(PETSC_NULL);CHKERRQ(ierr);} 3713194b578SJed Brown ierr = PetscObjectOptionsBegin((PetscObject)snes);CHKERRQ(ierr); 3727adad957SLisandro Dalcin if (((PetscObject)snes)->type_name) { deft = ((PetscObject)snes)->type_name; } 373b0a32e0cSBarry Smith ierr = PetscOptionsList("-snes_type","Nonlinear solver method","SNESSetType",SNESList,deft,type,256,&flg);CHKERRQ(ierr); 374d64ed03dSBarry Smith if (flg) { 375186905e3SBarry Smith ierr = SNESSetType(snes,type);CHKERRQ(ierr); 3767adad957SLisandro Dalcin } else if (!((PetscObject)snes)->type_name) { 377186905e3SBarry Smith ierr = SNESSetType(snes,deft);CHKERRQ(ierr); 378d64ed03dSBarry Smith } 37990d69ab7SBarry Smith /* not used here, but called so will go into help messaage */ 380909c8a9fSBarry Smith ierr = PetscOptionsName("-snes_view","Print detailed information on solver used","SNESView",0);CHKERRQ(ierr); 38193c39befSBarry Smith 38257034d6fSHong Zhang ierr = PetscOptionsReal("-snes_stol","Stop if step length less than","SNESSetTolerances",snes->xtol,&snes->xtol,0);CHKERRQ(ierr); 38357034d6fSHong Zhang ierr = PetscOptionsReal("-snes_atol","Stop if function norm less than","SNESSetTolerances",snes->abstol,&snes->abstol,0);CHKERRQ(ierr); 384186905e3SBarry Smith 38557034d6fSHong Zhang ierr = PetscOptionsReal("-snes_rtol","Stop if decrease in function norm less than","SNESSetTolerances",snes->rtol,&snes->rtol,0);CHKERRQ(ierr); 386b0a32e0cSBarry Smith ierr = PetscOptionsInt("-snes_max_it","Maximum iterations","SNESSetTolerances",snes->max_its,&snes->max_its,PETSC_NULL);CHKERRQ(ierr); 387b0a32e0cSBarry Smith ierr = PetscOptionsInt("-snes_max_funcs","Maximum function evaluations","SNESSetTolerances",snes->max_funcs,&snes->max_funcs,PETSC_NULL);CHKERRQ(ierr); 38850ffb88aSMatthew Knepley ierr = PetscOptionsInt("-snes_max_fail","Maximum failures","SNESSetTolerances",snes->maxFailures,&snes->maxFailures,PETSC_NULL);CHKERRQ(ierr); 389ddf469c8SBarry Smith ierr = PetscOptionsInt("-snes_max_linear_solve_fail","Maximum failures in linear solves allowed","SNESSetMaxLinearSolveFailures",snes->maxLinearSolveFailures,&snes->maxLinearSolveFailures,PETSC_NULL);CHKERRQ(ierr); 390acfcf0e5SJed Brown ierr = PetscOptionsBool("-snes_error_if_not_converged","Generate error if solver does not converge","SNESSetErrorIfNotConverged",snes->errorifnotconverged,&snes->errorifnotconverged,PETSC_NULL);CHKERRQ(ierr); 39185385478SLisandro Dalcin 392a8054027SBarry Smith ierr = PetscOptionsInt("-snes_lag_preconditioner","How often to rebuild preconditioner","SNESSetLagPreconditioner",snes->lagpreconditioner,&lag,&flg);CHKERRQ(ierr); 393a8054027SBarry Smith if (flg) { 394a8054027SBarry Smith ierr = SNESSetLagPreconditioner(snes,lag);CHKERRQ(ierr); 395a8054027SBarry Smith } 396e35cf81dSBarry Smith ierr = PetscOptionsInt("-snes_lag_jacobian","How often to rebuild Jacobian","SNESSetLagJacobian",snes->lagjacobian,&lag,&flg);CHKERRQ(ierr); 397e35cf81dSBarry Smith if (flg) { 398e35cf81dSBarry Smith ierr = SNESSetLagJacobian(snes,lag);CHKERRQ(ierr); 399e35cf81dSBarry Smith } 400efd51863SBarry Smith ierr = PetscOptionsInt("-snes_grid_sequence","Use grid sequencing to generate initial guess","SNESSetGridSequence",snes->gridsequence,&grids,&flg);CHKERRQ(ierr); 401efd51863SBarry Smith if (flg) { 402efd51863SBarry Smith ierr = SNESSetGridSequence(snes,grids);CHKERRQ(ierr); 403efd51863SBarry Smith } 404a8054027SBarry Smith 40585385478SLisandro Dalcin ierr = PetscOptionsEList("-snes_convergence_test","Convergence test","SNESSetConvergenceTest",convtests,2,"default",&indx,&flg);CHKERRQ(ierr); 40685385478SLisandro Dalcin if (flg) { 40785385478SLisandro Dalcin switch (indx) { 4087f7931b9SBarry Smith case 0: ierr = SNESSetConvergenceTest(snes,SNESDefaultConverged,PETSC_NULL,PETSC_NULL);CHKERRQ(ierr); break; 4097f7931b9SBarry Smith case 1: ierr = SNESSetConvergenceTest(snes,SNESSkipConverged,PETSC_NULL,PETSC_NULL);CHKERRQ(ierr); break; 41085385478SLisandro Dalcin } 41185385478SLisandro Dalcin } 41285385478SLisandro Dalcin 413acfcf0e5SJed Brown ierr = PetscOptionsBool("-snes_converged_reason","Print reason for converged or diverged","SNESSolve",snes->printreason,&snes->printreason,PETSC_NULL);CHKERRQ(ierr); 414186905e3SBarry Smith 41585385478SLisandro Dalcin kctx = (SNESKSPEW *)snes->kspconvctx; 41685385478SLisandro Dalcin 417acfcf0e5SJed Brown ierr = PetscOptionsBool("-snes_ksp_ew","Use Eisentat-Walker linear system convergence test","SNESKSPSetUseEW",snes->ksp_ewconv,&snes->ksp_ewconv,PETSC_NULL);CHKERRQ(ierr); 418186905e3SBarry Smith 419fa9f3622SBarry Smith ierr = PetscOptionsInt("-snes_ksp_ew_version","Version 1, 2 or 3","SNESKSPSetParametersEW",kctx->version,&kctx->version,0);CHKERRQ(ierr); 420fa9f3622SBarry Smith ierr = PetscOptionsReal("-snes_ksp_ew_rtol0","0 <= rtol0 < 1","SNESKSPSetParametersEW",kctx->rtol_0,&kctx->rtol_0,0);CHKERRQ(ierr); 421fa9f3622SBarry Smith ierr = PetscOptionsReal("-snes_ksp_ew_rtolmax","0 <= rtolmax < 1","SNESKSPSetParametersEW",kctx->rtol_max,&kctx->rtol_max,0);CHKERRQ(ierr); 422fa9f3622SBarry Smith ierr = PetscOptionsReal("-snes_ksp_ew_gamma","0 <= gamma <= 1","SNESKSPSetParametersEW",kctx->gamma,&kctx->gamma,0);CHKERRQ(ierr); 423fa9f3622SBarry Smith ierr = PetscOptionsReal("-snes_ksp_ew_alpha","1 < alpha <= 2","SNESKSPSetParametersEW",kctx->alpha,&kctx->alpha,0);CHKERRQ(ierr); 424fa9f3622SBarry Smith ierr = PetscOptionsReal("-snes_ksp_ew_alpha2","alpha2","SNESKSPSetParametersEW",kctx->alpha2,&kctx->alpha2,0);CHKERRQ(ierr); 425fa9f3622SBarry Smith ierr = PetscOptionsReal("-snes_ksp_ew_threshold","0 < threshold < 1","SNESKSPSetParametersEW",kctx->threshold,&kctx->threshold,0);CHKERRQ(ierr); 426186905e3SBarry Smith 42790d69ab7SBarry Smith flg = PETSC_FALSE; 428acfcf0e5SJed Brown ierr = PetscOptionsBool("-snes_monitor_cancel","Remove all monitors","SNESMonitorCancel",flg,&flg,PETSC_NULL);CHKERRQ(ierr); 429a6570f20SBarry Smith if (flg) {ierr = SNESMonitorCancel(snes);CHKERRQ(ierr);} 430eabae89aSBarry Smith 431a6570f20SBarry Smith ierr = PetscOptionsString("-snes_monitor","Monitor norm of function","SNESMonitorSet","stdout",monfilename,PETSC_MAX_PATH_LEN,&flg);CHKERRQ(ierr); 432e8105e01SRichard Katz if (flg) { 433649052a6SBarry Smith ierr = PetscViewerASCIIOpen(((PetscObject)snes)->comm,monfilename,&monviewer);CHKERRQ(ierr); 434649052a6SBarry Smith ierr = SNESMonitorSet(snes,SNESMonitorDefault,monviewer,(PetscErrorCode (*)(void**))PetscViewerDestroy);CHKERRQ(ierr); 435e8105e01SRichard Katz } 436eabae89aSBarry Smith 437b271bb04SBarry Smith ierr = PetscOptionsString("-snes_monitor_range","Monitor range of elements of function","SNESMonitorSet","stdout",monfilename,PETSC_MAX_PATH_LEN,&flg);CHKERRQ(ierr); 438b271bb04SBarry Smith if (flg) { 439b271bb04SBarry Smith ierr = SNESMonitorSet(snes,SNESMonitorRange,0,0);CHKERRQ(ierr); 440b271bb04SBarry Smith } 441b271bb04SBarry Smith 442a6570f20SBarry Smith ierr = PetscOptionsString("-snes_ratiomonitor","Monitor ratios of norms of function","SNESMonitorSetRatio","stdout",monfilename,PETSC_MAX_PATH_LEN,&flg);CHKERRQ(ierr); 443eabae89aSBarry Smith if (flg) { 444649052a6SBarry Smith ierr = PetscViewerASCIIOpen(((PetscObject)snes)->comm,monfilename,&monviewer);CHKERRQ(ierr); 445f1bef1bcSMatthew Knepley ierr = SNESMonitorSetRatio(snes,monviewer);CHKERRQ(ierr); 446e8105e01SRichard Katz } 447eabae89aSBarry Smith 448a6570f20SBarry Smith ierr = PetscOptionsString("-snes_monitor_short","Monitor norm of function (fewer digits)","SNESMonitorSet","stdout",monfilename,PETSC_MAX_PATH_LEN,&flg);CHKERRQ(ierr); 449eabae89aSBarry Smith if (flg) { 450649052a6SBarry Smith ierr = PetscViewerASCIIOpen(((PetscObject)snes)->comm,monfilename,&monviewer);CHKERRQ(ierr); 451649052a6SBarry Smith ierr = SNESMonitorSet(snes,SNESMonitorDefaultShort,monviewer,(PetscErrorCode (*)(void**))PetscViewerDestroy);CHKERRQ(ierr); 452eabae89aSBarry Smith } 453eabae89aSBarry Smith 4545180491cSLisandro Dalcin ierr = PetscOptionsString("-snes_monitor_python","Use Python function","SNESMonitorSet",0,monfilename,PETSC_MAX_PATH_LEN,&flg);CHKERRQ(ierr); 4555180491cSLisandro Dalcin if (flg) {ierr = PetscPythonMonitorSet((PetscObject)snes,monfilename);CHKERRQ(ierr);} 4565180491cSLisandro Dalcin 45790d69ab7SBarry Smith flg = PETSC_FALSE; 458acfcf0e5SJed Brown ierr = PetscOptionsBool("-snes_monitor_solution","Plot solution at each iteration","SNESMonitorSolution",flg,&flg,PETSC_NULL);CHKERRQ(ierr); 459a6570f20SBarry Smith if (flg) {ierr = SNESMonitorSet(snes,SNESMonitorSolution,0,0);CHKERRQ(ierr);} 46090d69ab7SBarry Smith flg = PETSC_FALSE; 461acfcf0e5SJed Brown ierr = PetscOptionsBool("-snes_monitor_solution_update","Plot correction at each iteration","SNESMonitorSolutionUpdate",flg,&flg,PETSC_NULL);CHKERRQ(ierr); 462a6570f20SBarry Smith if (flg) {ierr = SNESMonitorSet(snes,SNESMonitorSolutionUpdate,0,0);CHKERRQ(ierr);} 46390d69ab7SBarry Smith flg = PETSC_FALSE; 464acfcf0e5SJed Brown ierr = PetscOptionsBool("-snes_monitor_residual","Plot residual at each iteration","SNESMonitorResidual",flg,&flg,PETSC_NULL);CHKERRQ(ierr); 465a6570f20SBarry Smith if (flg) {ierr = SNESMonitorSet(snes,SNESMonitorResidual,0,0);CHKERRQ(ierr);} 46690d69ab7SBarry Smith flg = PETSC_FALSE; 467acfcf0e5SJed Brown ierr = PetscOptionsBool("-snes_monitor_draw","Plot function norm at each iteration","SNESMonitorLG",flg,&flg,PETSC_NULL);CHKERRQ(ierr); 468a6570f20SBarry Smith if (flg) {ierr = SNESMonitorSet(snes,SNESMonitorLG,PETSC_NULL,PETSC_NULL);CHKERRQ(ierr);} 46990d69ab7SBarry Smith flg = PETSC_FALSE; 470acfcf0e5SJed Brown ierr = PetscOptionsBool("-snes_monitor_range_draw","Plot function range at each iteration","SNESMonitorLG",flg,&flg,PETSC_NULL);CHKERRQ(ierr); 471b271bb04SBarry Smith if (flg) {ierr = SNESMonitorSet(snes,SNESMonitorLGRange,PETSC_NULL,PETSC_NULL);CHKERRQ(ierr);} 472e24b481bSBarry Smith 47390d69ab7SBarry Smith flg = PETSC_FALSE; 474acfcf0e5SJed Brown ierr = PetscOptionsBool("-snes_fd","Use finite differences (slow) to compute Jacobian","SNESDefaultComputeJacobian",flg,&flg,PETSC_NULL);CHKERRQ(ierr); 4754b27c08aSLois Curfman McInnes if (flg) { 476186905e3SBarry Smith ierr = SNESSetJacobian(snes,snes->jacobian,snes->jacobian_pre,SNESDefaultComputeJacobian,snes->funP);CHKERRQ(ierr); 477ae15b995SBarry Smith ierr = PetscInfo(snes,"Setting default finite difference Jacobian matrix\n");CHKERRQ(ierr); 4789b94acceSBarry Smith } 479639f9d9dSBarry Smith 480aa3661deSLisandro Dalcin mf = mf_operator = PETSC_FALSE; 481aa3661deSLisandro Dalcin flg = PETSC_FALSE; 482acfcf0e5SJed Brown ierr = PetscOptionsBool("-snes_mf_operator","Use a Matrix-Free Jacobian with user-provided preconditioner matrix","MatCreateSNESMF",PETSC_FALSE,&mf_operator,&flg);CHKERRQ(ierr); 483a8248277SBarry Smith if (flg && mf_operator) { 484a8248277SBarry Smith snes->mf_operator = PETSC_TRUE; 485a8248277SBarry Smith mf = PETSC_TRUE; 486a8248277SBarry Smith } 487aa3661deSLisandro Dalcin flg = PETSC_FALSE; 488acfcf0e5SJed Brown ierr = PetscOptionsBool("-snes_mf","Use a Matrix-Free Jacobian with no preconditioner matrix","MatCreateSNESMF",PETSC_FALSE,&mf,&flg);CHKERRQ(ierr); 489aa3661deSLisandro Dalcin if (!flg && mf_operator) mf = PETSC_TRUE; 490aa3661deSLisandro Dalcin mf_version = 1; 491aa3661deSLisandro Dalcin ierr = PetscOptionsInt("-snes_mf_version","Matrix-Free routines version 1 or 2","None",mf_version,&mf_version,0);CHKERRQ(ierr); 492aa3661deSLisandro Dalcin 493ea630c6eSPeter Brune /* line search options */ 494ea630c6eSPeter Brune ierr = PetscOptionsReal("-snes_ls_alpha","Constant function norm must decrease by","None",snes->ls_alpha,&snes->ls_alpha,0);CHKERRQ(ierr); 495ea630c6eSPeter Brune ierr = PetscOptionsReal("-snes_ls_maxstep","Step must be less than","None",snes->maxstep,&snes->maxstep,0);CHKERRQ(ierr); 496ea630c6eSPeter Brune ierr = PetscOptionsReal("-snes_ls_steptol","Minimum lambda allowed","None",snes->steptol,&snes->steptol,0);CHKERRQ(ierr); 497ea630c6eSPeter Brune ierr = PetscOptionsReal("-snes_ls_damping","Damping parameter","SNES",snes->damping,&snes->damping,&flg);CHKERRQ(ierr); 498af60355fSPeter Brune ierr = PetscOptionsInt("-snes_ls_it" ,"Line search iterations","SNES",snes->ls_its,&snes->ls_its,&flg);CHKERRQ(ierr); 499ea630c6eSPeter Brune ierr = PetscOptionsBool("-snes_ls_monitor","Print progress of line searches","SNESLineSearchSetMonitor",snes->ls_monitor ? PETSC_TRUE : PETSC_FALSE,&flg,&set);CHKERRQ(ierr); 500ea630c6eSPeter Brune if (set) {ierr = SNESLineSearchSetMonitor(snes,flg);CHKERRQ(ierr);} 50115f5eeeaSPeter Brune ierr = PetscOptionsEnum("-snes_ls","Line search used","SNESLineSearchSet",SNESLineSearchTypes,(PetscEnum)snes->ls_type,(PetscEnum*)&indx,&flg);CHKERRQ(ierr); 50215f5eeeaSPeter Brune if (flg) { 503ea630c6eSPeter Brune ierr = SNESLineSearchSetType(snes,(SNESLineSearchType)indx);CHKERRQ(ierr); 50415f5eeeaSPeter Brune } 5058e3fc8c0SJed Brown flg = snes->ops->precheckstep == SNESLineSearchPreCheckPicard ? PETSC_TRUE : PETSC_FALSE; 5068e3fc8c0SJed Brown ierr = PetscOptionsBool("-snes_ls_precheck_picard","Use a correction that sometimes improves convergence of Picard iteration","SNESLineSearchPreCheckPicard",flg,&flg,&set);CHKERRQ(ierr); 5078e3fc8c0SJed Brown if (set) { 5088e3fc8c0SJed Brown if (flg) { 5098e3fc8c0SJed Brown snes->precheck_picard_angle = 10.; /* correction only active if angle is less than 10 degrees */ 5108e3fc8c0SJed Brown ierr = PetscOptionsReal("-snes_ls_precheck_picard_angle","Maximum angle at which to activate the correction","none",snes->precheck_picard_angle,&snes->precheck_picard_angle,PETSC_NULL);CHKERRQ(ierr); 5118e3fc8c0SJed Brown ierr = SNESLineSearchSetPreCheck(snes,SNESLineSearchPreCheckPicard,&snes->precheck_picard_angle);CHKERRQ(ierr); 5128e3fc8c0SJed Brown } else { 5138e3fc8c0SJed Brown ierr = SNESLineSearchSetPreCheck(snes,PETSC_NULL,PETSC_NULL);CHKERRQ(ierr); 5148e3fc8c0SJed Brown } 5158e3fc8c0SJed Brown } 5168e3fc8c0SJed Brown 51776b2cf59SMatthew Knepley for(i = 0; i < numberofsetfromoptions; i++) { 51876b2cf59SMatthew Knepley ierr = (*othersetfromoptions[i])(snes);CHKERRQ(ierr); 51976b2cf59SMatthew Knepley } 52076b2cf59SMatthew Knepley 521e7788613SBarry Smith if (snes->ops->setfromoptions) { 522e7788613SBarry Smith ierr = (*snes->ops->setfromoptions)(snes);CHKERRQ(ierr); 523639f9d9dSBarry Smith } 5245d973c19SBarry Smith 5255d973c19SBarry Smith /* process any options handlers added with PetscObjectAddOptionsHandler() */ 5265d973c19SBarry Smith ierr = PetscObjectProcessOptionsHandlers((PetscObject)snes);CHKERRQ(ierr); 527b0a32e0cSBarry Smith ierr = PetscOptionsEnd();CHKERRQ(ierr); 5284bbc92c1SBarry Smith 529aa3661deSLisandro Dalcin if (mf) { ierr = SNESSetUpMatrixFree_Private(snes, mf_operator, mf_version);CHKERRQ(ierr); } 5301cee3971SBarry Smith 5311cee3971SBarry Smith if (!snes->ksp) {ierr = SNESGetKSP(snes,&snes->ksp);CHKERRQ(ierr);} 532aa3661deSLisandro Dalcin ierr = KSPGetOperators(snes->ksp,PETSC_NULL,PETSC_NULL,&matflag); 533aa3661deSLisandro Dalcin ierr = KSPSetOperators(snes->ksp,snes->jacobian,snes->jacobian_pre,matflag);CHKERRQ(ierr); 53485385478SLisandro Dalcin ierr = KSPSetFromOptions(snes->ksp);CHKERRQ(ierr); 53593993e2dSLois Curfman McInnes 53651e86f29SPeter Brune /* if someone has set the SNES PC type, create it. */ 53751e86f29SPeter Brune ierr = SNESGetOptionsPrefix(snes, &optionsprefix);CHKERRQ(ierr); 53851e86f29SPeter Brune ierr = PetscOptionsHasName(optionsprefix, "-npc_snes_type", &pcset);CHKERRQ(ierr); 53951e86f29SPeter Brune if (pcset && (!snes->pc)) { 54051e86f29SPeter Brune ierr = SNESGetPC(snes, &snes->pc);CHKERRQ(ierr); 54151e86f29SPeter Brune } 54251e86f29SPeter Brune 5434a0c5b0cSMatthew G Knepley if (snes->pc) { 5444a0c5b0cSMatthew G Knepley ierr = SNESSetOptionsPrefix(snes->pc, "npc_");CHKERRQ(ierr); 5454a0c5b0cSMatthew G Knepley ierr = SNESSetDM(snes->pc, snes->dm);CHKERRQ(ierr); 5464a0c5b0cSMatthew G Knepley /* Should we make a duplicate vector and matrix? Leave the DM to make it? */ 5474a0c5b0cSMatthew G Knepley ierr = SNESSetFunction(snes->pc, snes->vec_func, snes->ops->computefunction, snes->funP);CHKERRQ(ierr); 5484a0c5b0cSMatthew G Knepley ierr = SNESSetJacobian(snes->pc, snes->jacobian, snes->jacobian_pre, snes->ops->computejacobian, snes->jacP);CHKERRQ(ierr); 5494a0c5b0cSMatthew G Knepley ierr = SNESSetFromOptions(snes->pc);CHKERRQ(ierr); 5504a0c5b0cSMatthew G Knepley } 5513a40ed3dSBarry Smith PetscFunctionReturn(0); 5529b94acceSBarry Smith } 5539b94acceSBarry Smith 554d25893d9SBarry Smith #undef __FUNCT__ 555d25893d9SBarry Smith #define __FUNCT__ "SNESSetComputeApplicationContext" 556d25893d9SBarry Smith /*@ 557d25893d9SBarry Smith SNESSetComputeApplicationContext - Sets an optional function to compute a user-defined context for 558d25893d9SBarry Smith the nonlinear solvers. 559d25893d9SBarry Smith 560d25893d9SBarry Smith Logically Collective on SNES 561d25893d9SBarry Smith 562d25893d9SBarry Smith Input Parameters: 563d25893d9SBarry Smith + snes - the SNES context 564d25893d9SBarry Smith . compute - function to compute the context 565d25893d9SBarry Smith - destroy - function to destroy the context 566d25893d9SBarry Smith 567d25893d9SBarry Smith Level: intermediate 568d25893d9SBarry Smith 569d25893d9SBarry Smith .keywords: SNES, nonlinear, set, application, context 570d25893d9SBarry Smith 571d25893d9SBarry Smith .seealso: SNESGetApplicationContext(), SNESSetComputeApplicationContext(), SNESGetApplicationContext() 572d25893d9SBarry Smith @*/ 573d25893d9SBarry Smith PetscErrorCode SNESSetComputeApplicationContext(SNES snes,PetscErrorCode (*compute)(SNES,void**),PetscErrorCode (*destroy)(void**)) 574d25893d9SBarry Smith { 575d25893d9SBarry Smith PetscFunctionBegin; 576d25893d9SBarry Smith PetscValidHeaderSpecific(snes,SNES_CLASSID,1); 577d25893d9SBarry Smith snes->ops->usercompute = compute; 578d25893d9SBarry Smith snes->ops->userdestroy = destroy; 579d25893d9SBarry Smith PetscFunctionReturn(0); 580d25893d9SBarry Smith } 581a847f771SSatish Balay 5824a2ae208SSatish Balay #undef __FUNCT__ 5834a2ae208SSatish Balay #define __FUNCT__ "SNESSetApplicationContext" 584b07ff414SBarry Smith /*@ 5859b94acceSBarry Smith SNESSetApplicationContext - Sets the optional user-defined context for 5869b94acceSBarry Smith the nonlinear solvers. 5879b94acceSBarry Smith 5883f9fe445SBarry Smith Logically Collective on SNES 589fee21e36SBarry Smith 590c7afd0dbSLois Curfman McInnes Input Parameters: 591c7afd0dbSLois Curfman McInnes + snes - the SNES context 592c7afd0dbSLois Curfman McInnes - usrP - optional user context 593c7afd0dbSLois Curfman McInnes 59436851e7fSLois Curfman McInnes Level: intermediate 59536851e7fSLois Curfman McInnes 5969b94acceSBarry Smith .keywords: SNES, nonlinear, set, application, context 5979b94acceSBarry Smith 598d25893d9SBarry Smith .seealso: SNESGetApplicationContext(), SNESSetApplicationContext() 5999b94acceSBarry Smith @*/ 6007087cfbeSBarry Smith PetscErrorCode SNESSetApplicationContext(SNES snes,void *usrP) 6019b94acceSBarry Smith { 6021b2093e4SBarry Smith PetscErrorCode ierr; 603b07ff414SBarry Smith KSP ksp; 6041b2093e4SBarry Smith 6053a40ed3dSBarry Smith PetscFunctionBegin; 6060700a824SBarry Smith PetscValidHeaderSpecific(snes,SNES_CLASSID,1); 607b07ff414SBarry Smith ierr = SNESGetKSP(snes,&ksp);CHKERRQ(ierr); 608b07ff414SBarry Smith ierr = KSPSetApplicationContext(ksp,usrP);CHKERRQ(ierr); 6099b94acceSBarry Smith snes->user = usrP; 6103a40ed3dSBarry Smith PetscFunctionReturn(0); 6119b94acceSBarry Smith } 61274679c65SBarry Smith 6134a2ae208SSatish Balay #undef __FUNCT__ 6144a2ae208SSatish Balay #define __FUNCT__ "SNESGetApplicationContext" 615b07ff414SBarry Smith /*@ 6169b94acceSBarry Smith SNESGetApplicationContext - Gets the user-defined context for the 6179b94acceSBarry Smith nonlinear solvers. 6189b94acceSBarry Smith 619c7afd0dbSLois Curfman McInnes Not Collective 620c7afd0dbSLois Curfman McInnes 6219b94acceSBarry Smith Input Parameter: 6229b94acceSBarry Smith . snes - SNES context 6239b94acceSBarry Smith 6249b94acceSBarry Smith Output Parameter: 6259b94acceSBarry Smith . usrP - user context 6269b94acceSBarry Smith 62736851e7fSLois Curfman McInnes Level: intermediate 62836851e7fSLois Curfman McInnes 6299b94acceSBarry Smith .keywords: SNES, nonlinear, get, application, context 6309b94acceSBarry Smith 6319b94acceSBarry Smith .seealso: SNESSetApplicationContext() 6329b94acceSBarry Smith @*/ 633e71120c6SJed Brown PetscErrorCode SNESGetApplicationContext(SNES snes,void *usrP) 6349b94acceSBarry Smith { 6353a40ed3dSBarry Smith PetscFunctionBegin; 6360700a824SBarry Smith PetscValidHeaderSpecific(snes,SNES_CLASSID,1); 637e71120c6SJed Brown *(void**)usrP = snes->user; 6383a40ed3dSBarry Smith PetscFunctionReturn(0); 6399b94acceSBarry Smith } 64074679c65SBarry Smith 6414a2ae208SSatish Balay #undef __FUNCT__ 6424a2ae208SSatish Balay #define __FUNCT__ "SNESGetIterationNumber" 6439b94acceSBarry Smith /*@ 644c8228a4eSBarry Smith SNESGetIterationNumber - Gets the number of nonlinear iterations completed 645c8228a4eSBarry Smith at this time. 6469b94acceSBarry Smith 647c7afd0dbSLois Curfman McInnes Not Collective 648c7afd0dbSLois Curfman McInnes 6499b94acceSBarry Smith Input Parameter: 6509b94acceSBarry Smith . snes - SNES context 6519b94acceSBarry Smith 6529b94acceSBarry Smith Output Parameter: 6539b94acceSBarry Smith . iter - iteration number 6549b94acceSBarry Smith 655c8228a4eSBarry Smith Notes: 656c8228a4eSBarry Smith For example, during the computation of iteration 2 this would return 1. 657c8228a4eSBarry Smith 658c8228a4eSBarry Smith This is useful for using lagged Jacobians (where one does not recompute the 65908405cd6SLois Curfman McInnes Jacobian at each SNES iteration). For example, the code 66008405cd6SLois Curfman McInnes .vb 66108405cd6SLois Curfman McInnes ierr = SNESGetIterationNumber(snes,&it); 66208405cd6SLois Curfman McInnes if (!(it % 2)) { 66308405cd6SLois Curfman McInnes [compute Jacobian here] 66408405cd6SLois Curfman McInnes } 66508405cd6SLois Curfman McInnes .ve 666c8228a4eSBarry Smith can be used in your ComputeJacobian() function to cause the Jacobian to be 66708405cd6SLois Curfman McInnes recomputed every second SNES iteration. 668c8228a4eSBarry Smith 66936851e7fSLois Curfman McInnes Level: intermediate 67036851e7fSLois Curfman McInnes 6712b668275SBarry Smith .keywords: SNES, nonlinear, get, iteration, number, 6722b668275SBarry Smith 673b850b91aSLisandro Dalcin .seealso: SNESGetFunctionNorm(), SNESGetLinearSolveIterations() 6749b94acceSBarry Smith @*/ 6757087cfbeSBarry Smith PetscErrorCode SNESGetIterationNumber(SNES snes,PetscInt* iter) 6769b94acceSBarry Smith { 6773a40ed3dSBarry Smith PetscFunctionBegin; 6780700a824SBarry Smith PetscValidHeaderSpecific(snes,SNES_CLASSID,1); 6794482741eSBarry Smith PetscValidIntPointer(iter,2); 6809b94acceSBarry Smith *iter = snes->iter; 6813a40ed3dSBarry Smith PetscFunctionReturn(0); 6829b94acceSBarry Smith } 68374679c65SBarry Smith 6844a2ae208SSatish Balay #undef __FUNCT__ 6854a2ae208SSatish Balay #define __FUNCT__ "SNESGetFunctionNorm" 6869b94acceSBarry Smith /*@ 6879b94acceSBarry Smith SNESGetFunctionNorm - Gets the norm of the current function that was set 6889b94acceSBarry Smith with SNESSSetFunction(). 6899b94acceSBarry Smith 690c7afd0dbSLois Curfman McInnes Collective on SNES 691c7afd0dbSLois Curfman McInnes 6929b94acceSBarry Smith Input Parameter: 6939b94acceSBarry Smith . snes - SNES context 6949b94acceSBarry Smith 6959b94acceSBarry Smith Output Parameter: 6969b94acceSBarry Smith . fnorm - 2-norm of function 6979b94acceSBarry Smith 69836851e7fSLois Curfman McInnes Level: intermediate 69936851e7fSLois Curfman McInnes 7009b94acceSBarry Smith .keywords: SNES, nonlinear, get, function, norm 701a86d99e1SLois Curfman McInnes 702b850b91aSLisandro Dalcin .seealso: SNESGetFunction(), SNESGetIterationNumber(), SNESGetLinearSolveIterations() 7039b94acceSBarry Smith @*/ 7047087cfbeSBarry Smith PetscErrorCode SNESGetFunctionNorm(SNES snes,PetscReal *fnorm) 7059b94acceSBarry Smith { 7063a40ed3dSBarry Smith PetscFunctionBegin; 7070700a824SBarry Smith PetscValidHeaderSpecific(snes,SNES_CLASSID,1); 7084482741eSBarry Smith PetscValidScalarPointer(fnorm,2); 7099b94acceSBarry Smith *fnorm = snes->norm; 7103a40ed3dSBarry Smith PetscFunctionReturn(0); 7119b94acceSBarry Smith } 71274679c65SBarry Smith 7134a2ae208SSatish Balay #undef __FUNCT__ 714b850b91aSLisandro Dalcin #define __FUNCT__ "SNESGetNonlinearStepFailures" 7159b94acceSBarry Smith /*@ 716b850b91aSLisandro Dalcin SNESGetNonlinearStepFailures - Gets the number of unsuccessful steps 7179b94acceSBarry Smith attempted by the nonlinear solver. 7189b94acceSBarry Smith 719c7afd0dbSLois Curfman McInnes Not Collective 720c7afd0dbSLois Curfman McInnes 7219b94acceSBarry Smith Input Parameter: 7229b94acceSBarry Smith . snes - SNES context 7239b94acceSBarry Smith 7249b94acceSBarry Smith Output Parameter: 7259b94acceSBarry Smith . nfails - number of unsuccessful steps attempted 7269b94acceSBarry Smith 727c96a6f78SLois Curfman McInnes Notes: 728c96a6f78SLois Curfman McInnes This counter is reset to zero for each successive call to SNESSolve(). 729c96a6f78SLois Curfman McInnes 73036851e7fSLois Curfman McInnes Level: intermediate 73136851e7fSLois Curfman McInnes 7329b94acceSBarry Smith .keywords: SNES, nonlinear, get, number, unsuccessful, steps 73358ebbce7SBarry Smith 734e1c61ce8SBarry Smith .seealso: SNESGetMaxLinearSolveFailures(), SNESGetLinearSolveIterations(), SNESSetMaxLinearSolveFailures(), SNESGetLinearSolveFailures(), 73558ebbce7SBarry Smith SNESSetMaxNonlinearStepFailures(), SNESGetMaxNonlinearStepFailures() 7369b94acceSBarry Smith @*/ 7377087cfbeSBarry Smith PetscErrorCode SNESGetNonlinearStepFailures(SNES snes,PetscInt* nfails) 7389b94acceSBarry Smith { 7393a40ed3dSBarry Smith PetscFunctionBegin; 7400700a824SBarry Smith PetscValidHeaderSpecific(snes,SNES_CLASSID,1); 7414482741eSBarry Smith PetscValidIntPointer(nfails,2); 74250ffb88aSMatthew Knepley *nfails = snes->numFailures; 74350ffb88aSMatthew Knepley PetscFunctionReturn(0); 74450ffb88aSMatthew Knepley } 74550ffb88aSMatthew Knepley 74650ffb88aSMatthew Knepley #undef __FUNCT__ 747b850b91aSLisandro Dalcin #define __FUNCT__ "SNESSetMaxNonlinearStepFailures" 74850ffb88aSMatthew Knepley /*@ 749b850b91aSLisandro Dalcin SNESSetMaxNonlinearStepFailures - Sets the maximum number of unsuccessful steps 75050ffb88aSMatthew Knepley attempted by the nonlinear solver before it gives up. 75150ffb88aSMatthew Knepley 75250ffb88aSMatthew Knepley Not Collective 75350ffb88aSMatthew Knepley 75450ffb88aSMatthew Knepley Input Parameters: 75550ffb88aSMatthew Knepley + snes - SNES context 75650ffb88aSMatthew Knepley - maxFails - maximum of unsuccessful steps 75750ffb88aSMatthew Knepley 75850ffb88aSMatthew Knepley Level: intermediate 75950ffb88aSMatthew Knepley 76050ffb88aSMatthew Knepley .keywords: SNES, nonlinear, set, maximum, unsuccessful, steps 76158ebbce7SBarry Smith 762e1c61ce8SBarry Smith .seealso: SNESGetMaxLinearSolveFailures(), SNESGetLinearSolveIterations(), SNESSetMaxLinearSolveFailures(), SNESGetLinearSolveFailures(), 76358ebbce7SBarry Smith SNESGetMaxNonlinearStepFailures(), SNESGetNonlinearStepFailures() 76450ffb88aSMatthew Knepley @*/ 7657087cfbeSBarry Smith PetscErrorCode SNESSetMaxNonlinearStepFailures(SNES snes, PetscInt maxFails) 76650ffb88aSMatthew Knepley { 76750ffb88aSMatthew Knepley PetscFunctionBegin; 7680700a824SBarry Smith PetscValidHeaderSpecific(snes,SNES_CLASSID,1); 76950ffb88aSMatthew Knepley snes->maxFailures = maxFails; 77050ffb88aSMatthew Knepley PetscFunctionReturn(0); 77150ffb88aSMatthew Knepley } 77250ffb88aSMatthew Knepley 77350ffb88aSMatthew Knepley #undef __FUNCT__ 774b850b91aSLisandro Dalcin #define __FUNCT__ "SNESGetMaxNonlinearStepFailures" 77550ffb88aSMatthew Knepley /*@ 776b850b91aSLisandro Dalcin SNESGetMaxNonlinearStepFailures - Gets the maximum number of unsuccessful steps 77750ffb88aSMatthew Knepley attempted by the nonlinear solver before it gives up. 77850ffb88aSMatthew Knepley 77950ffb88aSMatthew Knepley Not Collective 78050ffb88aSMatthew Knepley 78150ffb88aSMatthew Knepley Input Parameter: 78250ffb88aSMatthew Knepley . snes - SNES context 78350ffb88aSMatthew Knepley 78450ffb88aSMatthew Knepley Output Parameter: 78550ffb88aSMatthew Knepley . maxFails - maximum of unsuccessful steps 78650ffb88aSMatthew Knepley 78750ffb88aSMatthew Knepley Level: intermediate 78850ffb88aSMatthew Knepley 78950ffb88aSMatthew Knepley .keywords: SNES, nonlinear, get, maximum, unsuccessful, steps 79058ebbce7SBarry Smith 791e1c61ce8SBarry Smith .seealso: SNESGetMaxLinearSolveFailures(), SNESGetLinearSolveIterations(), SNESSetMaxLinearSolveFailures(), SNESGetLinearSolveFailures(), 79258ebbce7SBarry Smith SNESSetMaxNonlinearStepFailures(), SNESGetNonlinearStepFailures() 79358ebbce7SBarry Smith 79450ffb88aSMatthew Knepley @*/ 7957087cfbeSBarry Smith PetscErrorCode SNESGetMaxNonlinearStepFailures(SNES snes, PetscInt *maxFails) 79650ffb88aSMatthew Knepley { 79750ffb88aSMatthew Knepley PetscFunctionBegin; 7980700a824SBarry Smith PetscValidHeaderSpecific(snes,SNES_CLASSID,1); 7994482741eSBarry Smith PetscValidIntPointer(maxFails,2); 80050ffb88aSMatthew Knepley *maxFails = snes->maxFailures; 8013a40ed3dSBarry Smith PetscFunctionReturn(0); 8029b94acceSBarry Smith } 803a847f771SSatish Balay 8044a2ae208SSatish Balay #undef __FUNCT__ 8052541af92SBarry Smith #define __FUNCT__ "SNESGetNumberFunctionEvals" 8062541af92SBarry Smith /*@ 8072541af92SBarry Smith SNESGetNumberFunctionEvals - Gets the number of user provided function evaluations 8082541af92SBarry Smith done by SNES. 8092541af92SBarry Smith 8102541af92SBarry Smith Not Collective 8112541af92SBarry Smith 8122541af92SBarry Smith Input Parameter: 8132541af92SBarry Smith . snes - SNES context 8142541af92SBarry Smith 8152541af92SBarry Smith Output Parameter: 8162541af92SBarry Smith . nfuncs - number of evaluations 8172541af92SBarry Smith 8182541af92SBarry Smith Level: intermediate 8192541af92SBarry Smith 8202541af92SBarry Smith .keywords: SNES, nonlinear, get, maximum, unsuccessful, steps 82158ebbce7SBarry Smith 822e1c61ce8SBarry Smith .seealso: SNESGetMaxLinearSolveFailures(), SNESGetLinearSolveIterations(), SNESSetMaxLinearSolveFailures(), SNESGetLinearSolveFailures() 8232541af92SBarry Smith @*/ 8247087cfbeSBarry Smith PetscErrorCode SNESGetNumberFunctionEvals(SNES snes, PetscInt *nfuncs) 8252541af92SBarry Smith { 8262541af92SBarry Smith PetscFunctionBegin; 8270700a824SBarry Smith PetscValidHeaderSpecific(snes,SNES_CLASSID,1); 8282541af92SBarry Smith PetscValidIntPointer(nfuncs,2); 8292541af92SBarry Smith *nfuncs = snes->nfuncs; 8302541af92SBarry Smith PetscFunctionReturn(0); 8312541af92SBarry Smith } 8322541af92SBarry Smith 8332541af92SBarry Smith #undef __FUNCT__ 8343d4c4710SBarry Smith #define __FUNCT__ "SNESGetLinearSolveFailures" 8353d4c4710SBarry Smith /*@ 8363d4c4710SBarry Smith SNESGetLinearSolveFailures - Gets the number of failed (non-converged) 8373d4c4710SBarry Smith linear solvers. 8383d4c4710SBarry Smith 8393d4c4710SBarry Smith Not Collective 8403d4c4710SBarry Smith 8413d4c4710SBarry Smith Input Parameter: 8423d4c4710SBarry Smith . snes - SNES context 8433d4c4710SBarry Smith 8443d4c4710SBarry Smith Output Parameter: 8453d4c4710SBarry Smith . nfails - number of failed solves 8463d4c4710SBarry Smith 8473d4c4710SBarry Smith Notes: 8483d4c4710SBarry Smith This counter is reset to zero for each successive call to SNESSolve(). 8493d4c4710SBarry Smith 8503d4c4710SBarry Smith Level: intermediate 8513d4c4710SBarry Smith 8523d4c4710SBarry Smith .keywords: SNES, nonlinear, get, number, unsuccessful, steps 85358ebbce7SBarry Smith 854e1c61ce8SBarry Smith .seealso: SNESGetMaxLinearSolveFailures(), SNESGetLinearSolveIterations(), SNESSetMaxLinearSolveFailures() 8553d4c4710SBarry Smith @*/ 8567087cfbeSBarry Smith PetscErrorCode SNESGetLinearSolveFailures(SNES snes,PetscInt* nfails) 8573d4c4710SBarry Smith { 8583d4c4710SBarry Smith PetscFunctionBegin; 8590700a824SBarry Smith PetscValidHeaderSpecific(snes,SNES_CLASSID,1); 8603d4c4710SBarry Smith PetscValidIntPointer(nfails,2); 8613d4c4710SBarry Smith *nfails = snes->numLinearSolveFailures; 8623d4c4710SBarry Smith PetscFunctionReturn(0); 8633d4c4710SBarry Smith } 8643d4c4710SBarry Smith 8653d4c4710SBarry Smith #undef __FUNCT__ 8663d4c4710SBarry Smith #define __FUNCT__ "SNESSetMaxLinearSolveFailures" 8673d4c4710SBarry Smith /*@ 8683d4c4710SBarry Smith SNESSetMaxLinearSolveFailures - the number of failed linear solve attempts 8693d4c4710SBarry Smith allowed before SNES returns with a diverged reason of SNES_DIVERGED_LINEAR_SOLVE 8703d4c4710SBarry Smith 8713f9fe445SBarry Smith Logically Collective on SNES 8723d4c4710SBarry Smith 8733d4c4710SBarry Smith Input Parameters: 8743d4c4710SBarry Smith + snes - SNES context 8753d4c4710SBarry Smith - maxFails - maximum allowed linear solve failures 8763d4c4710SBarry Smith 8773d4c4710SBarry Smith Level: intermediate 8783d4c4710SBarry Smith 879a6796414SBarry Smith Notes: By default this is 0; that is SNES returns on the first failed linear solve 8803d4c4710SBarry Smith 8813d4c4710SBarry Smith .keywords: SNES, nonlinear, set, maximum, unsuccessful, steps 8823d4c4710SBarry Smith 88358ebbce7SBarry Smith .seealso: SNESGetLinearSolveFailures(), SNESGetMaxLinearSolveFailures(), SNESGetLinearSolveIterations() 8843d4c4710SBarry Smith @*/ 8857087cfbeSBarry Smith PetscErrorCode SNESSetMaxLinearSolveFailures(SNES snes, PetscInt maxFails) 8863d4c4710SBarry Smith { 8873d4c4710SBarry Smith PetscFunctionBegin; 8880700a824SBarry Smith PetscValidHeaderSpecific(snes,SNES_CLASSID,1); 889c5eb9154SBarry Smith PetscValidLogicalCollectiveInt(snes,maxFails,2); 8903d4c4710SBarry Smith snes->maxLinearSolveFailures = maxFails; 8913d4c4710SBarry Smith PetscFunctionReturn(0); 8923d4c4710SBarry Smith } 8933d4c4710SBarry Smith 8943d4c4710SBarry Smith #undef __FUNCT__ 8953d4c4710SBarry Smith #define __FUNCT__ "SNESGetMaxLinearSolveFailures" 8963d4c4710SBarry Smith /*@ 8973d4c4710SBarry Smith SNESGetMaxLinearSolveFailures - gets the maximum number of linear solve failures that 8983d4c4710SBarry Smith are allowed before SNES terminates 8993d4c4710SBarry Smith 9003d4c4710SBarry Smith Not Collective 9013d4c4710SBarry Smith 9023d4c4710SBarry Smith Input Parameter: 9033d4c4710SBarry Smith . snes - SNES context 9043d4c4710SBarry Smith 9053d4c4710SBarry Smith Output Parameter: 9063d4c4710SBarry Smith . maxFails - maximum of unsuccessful solves allowed 9073d4c4710SBarry Smith 9083d4c4710SBarry Smith Level: intermediate 9093d4c4710SBarry Smith 9103d4c4710SBarry Smith Notes: By default this is 1; that is SNES returns on the first failed linear solve 9113d4c4710SBarry Smith 9123d4c4710SBarry Smith .keywords: SNES, nonlinear, get, maximum, unsuccessful, steps 9133d4c4710SBarry Smith 914e1c61ce8SBarry Smith .seealso: SNESGetLinearSolveFailures(), SNESGetLinearSolveIterations(), SNESSetMaxLinearSolveFailures(), 9153d4c4710SBarry Smith @*/ 9167087cfbeSBarry Smith PetscErrorCode SNESGetMaxLinearSolveFailures(SNES snes, PetscInt *maxFails) 9173d4c4710SBarry Smith { 9183d4c4710SBarry Smith PetscFunctionBegin; 9190700a824SBarry Smith PetscValidHeaderSpecific(snes,SNES_CLASSID,1); 9203d4c4710SBarry Smith PetscValidIntPointer(maxFails,2); 9213d4c4710SBarry Smith *maxFails = snes->maxLinearSolveFailures; 9223d4c4710SBarry Smith PetscFunctionReturn(0); 9233d4c4710SBarry Smith } 9243d4c4710SBarry Smith 9253d4c4710SBarry Smith #undef __FUNCT__ 926b850b91aSLisandro Dalcin #define __FUNCT__ "SNESGetLinearSolveIterations" 927c96a6f78SLois Curfman McInnes /*@ 928b850b91aSLisandro Dalcin SNESGetLinearSolveIterations - Gets the total number of linear iterations 929c96a6f78SLois Curfman McInnes used by the nonlinear solver. 930c96a6f78SLois Curfman McInnes 931c7afd0dbSLois Curfman McInnes Not Collective 932c7afd0dbSLois Curfman McInnes 933c96a6f78SLois Curfman McInnes Input Parameter: 934c96a6f78SLois Curfman McInnes . snes - SNES context 935c96a6f78SLois Curfman McInnes 936c96a6f78SLois Curfman McInnes Output Parameter: 937c96a6f78SLois Curfman McInnes . lits - number of linear iterations 938c96a6f78SLois Curfman McInnes 939c96a6f78SLois Curfman McInnes Notes: 940c96a6f78SLois Curfman McInnes This counter is reset to zero for each successive call to SNESSolve(). 941c96a6f78SLois Curfman McInnes 94236851e7fSLois Curfman McInnes Level: intermediate 94336851e7fSLois Curfman McInnes 944c96a6f78SLois Curfman McInnes .keywords: SNES, nonlinear, get, number, linear, iterations 9452b668275SBarry Smith 9468c7482ecSBarry Smith .seealso: SNESGetIterationNumber(), SNESGetFunctionNorm(), SNESGetLinearSolveFailures(), SNESGetMaxLinearSolveFailures() 947c96a6f78SLois Curfman McInnes @*/ 9487087cfbeSBarry Smith PetscErrorCode SNESGetLinearSolveIterations(SNES snes,PetscInt* lits) 949c96a6f78SLois Curfman McInnes { 9503a40ed3dSBarry Smith PetscFunctionBegin; 9510700a824SBarry Smith PetscValidHeaderSpecific(snes,SNES_CLASSID,1); 9524482741eSBarry Smith PetscValidIntPointer(lits,2); 953c96a6f78SLois Curfman McInnes *lits = snes->linear_its; 9543a40ed3dSBarry Smith PetscFunctionReturn(0); 955c96a6f78SLois Curfman McInnes } 956c96a6f78SLois Curfman McInnes 9574a2ae208SSatish Balay #undef __FUNCT__ 95894b7f48cSBarry Smith #define __FUNCT__ "SNESGetKSP" 95952baeb72SSatish Balay /*@ 96094b7f48cSBarry Smith SNESGetKSP - Returns the KSP context for a SNES solver. 9619b94acceSBarry Smith 96294b7f48cSBarry Smith Not Collective, but if SNES object is parallel, then KSP object is parallel 963c7afd0dbSLois Curfman McInnes 9649b94acceSBarry Smith Input Parameter: 9659b94acceSBarry Smith . snes - the SNES context 9669b94acceSBarry Smith 9679b94acceSBarry Smith Output Parameter: 96894b7f48cSBarry Smith . ksp - the KSP context 9699b94acceSBarry Smith 9709b94acceSBarry Smith Notes: 97194b7f48cSBarry Smith The user can then directly manipulate the KSP context to set various 9729b94acceSBarry Smith options, etc. Likewise, the user can then extract and manipulate the 9732999313aSBarry Smith PC contexts as well. 9749b94acceSBarry Smith 97536851e7fSLois Curfman McInnes Level: beginner 97636851e7fSLois Curfman McInnes 97794b7f48cSBarry Smith .keywords: SNES, nonlinear, get, KSP, context 9789b94acceSBarry Smith 9792999313aSBarry Smith .seealso: KSPGetPC(), SNESCreate(), KSPCreate(), SNESSetKSP() 9809b94acceSBarry Smith @*/ 9817087cfbeSBarry Smith PetscErrorCode SNESGetKSP(SNES snes,KSP *ksp) 9829b94acceSBarry Smith { 9831cee3971SBarry Smith PetscErrorCode ierr; 9841cee3971SBarry Smith 9853a40ed3dSBarry Smith PetscFunctionBegin; 9860700a824SBarry Smith PetscValidHeaderSpecific(snes,SNES_CLASSID,1); 9874482741eSBarry Smith PetscValidPointer(ksp,2); 9881cee3971SBarry Smith 9891cee3971SBarry Smith if (!snes->ksp) { 9901cee3971SBarry Smith ierr = KSPCreate(((PetscObject)snes)->comm,&snes->ksp);CHKERRQ(ierr); 9911cee3971SBarry Smith ierr = PetscObjectIncrementTabLevel((PetscObject)snes->ksp,(PetscObject)snes,1);CHKERRQ(ierr); 9921cee3971SBarry Smith ierr = PetscLogObjectParent(snes,snes->ksp);CHKERRQ(ierr); 9931cee3971SBarry Smith } 99494b7f48cSBarry Smith *ksp = snes->ksp; 9953a40ed3dSBarry Smith PetscFunctionReturn(0); 9969b94acceSBarry Smith } 99782bf6240SBarry Smith 9984a2ae208SSatish Balay #undef __FUNCT__ 9992999313aSBarry Smith #define __FUNCT__ "SNESSetKSP" 10002999313aSBarry Smith /*@ 10012999313aSBarry Smith SNESSetKSP - Sets a KSP context for the SNES object to use 10022999313aSBarry Smith 10032999313aSBarry Smith Not Collective, but the SNES and KSP objects must live on the same MPI_Comm 10042999313aSBarry Smith 10052999313aSBarry Smith Input Parameters: 10062999313aSBarry Smith + snes - the SNES context 10072999313aSBarry Smith - ksp - the KSP context 10082999313aSBarry Smith 10092999313aSBarry Smith Notes: 10102999313aSBarry Smith The SNES object already has its KSP object, you can obtain with SNESGetKSP() 10112999313aSBarry Smith so this routine is rarely needed. 10122999313aSBarry Smith 10132999313aSBarry Smith The KSP object that is already in the SNES object has its reference count 10142999313aSBarry Smith decreased by one. 10152999313aSBarry Smith 10162999313aSBarry Smith Level: developer 10172999313aSBarry Smith 10182999313aSBarry Smith .keywords: SNES, nonlinear, get, KSP, context 10192999313aSBarry Smith 10202999313aSBarry Smith .seealso: KSPGetPC(), SNESCreate(), KSPCreate(), SNESSetKSP() 10212999313aSBarry Smith @*/ 10227087cfbeSBarry Smith PetscErrorCode SNESSetKSP(SNES snes,KSP ksp) 10232999313aSBarry Smith { 10242999313aSBarry Smith PetscErrorCode ierr; 10252999313aSBarry Smith 10262999313aSBarry Smith PetscFunctionBegin; 10270700a824SBarry Smith PetscValidHeaderSpecific(snes,SNES_CLASSID,1); 10280700a824SBarry Smith PetscValidHeaderSpecific(ksp,KSP_CLASSID,2); 10292999313aSBarry Smith PetscCheckSameComm(snes,1,ksp,2); 10307dcf0eaaSdalcinl ierr = PetscObjectReference((PetscObject)ksp);CHKERRQ(ierr); 1031906ed7ccSBarry Smith if (snes->ksp) {ierr = PetscObjectDereference((PetscObject)snes->ksp);CHKERRQ(ierr);} 10322999313aSBarry Smith snes->ksp = ksp; 10332999313aSBarry Smith PetscFunctionReturn(0); 10342999313aSBarry Smith } 10352999313aSBarry Smith 10367adad957SLisandro Dalcin #if 0 10372999313aSBarry Smith #undef __FUNCT__ 10384a2ae208SSatish Balay #define __FUNCT__ "SNESPublish_Petsc" 10396849ba73SBarry Smith static PetscErrorCode SNESPublish_Petsc(PetscObject obj) 1040e24b481bSBarry Smith { 1041e24b481bSBarry Smith PetscFunctionBegin; 1042e24b481bSBarry Smith PetscFunctionReturn(0); 1043e24b481bSBarry Smith } 10447adad957SLisandro Dalcin #endif 1045e24b481bSBarry Smith 10469b94acceSBarry Smith /* -----------------------------------------------------------*/ 10474a2ae208SSatish Balay #undef __FUNCT__ 10484a2ae208SSatish Balay #define __FUNCT__ "SNESCreate" 104952baeb72SSatish Balay /*@ 10509b94acceSBarry Smith SNESCreate - Creates a nonlinear solver context. 10519b94acceSBarry Smith 1052c7afd0dbSLois Curfman McInnes Collective on MPI_Comm 1053c7afd0dbSLois Curfman McInnes 1054c7afd0dbSLois Curfman McInnes Input Parameters: 1055906ed7ccSBarry Smith . comm - MPI communicator 10569b94acceSBarry Smith 10579b94acceSBarry Smith Output Parameter: 10589b94acceSBarry Smith . outsnes - the new SNES context 10599b94acceSBarry Smith 1060c7afd0dbSLois Curfman McInnes Options Database Keys: 1061c7afd0dbSLois Curfman McInnes + -snes_mf - Activates default matrix-free Jacobian-vector products, 1062c7afd0dbSLois Curfman McInnes and no preconditioning matrix 1063c7afd0dbSLois Curfman McInnes . -snes_mf_operator - Activates default matrix-free Jacobian-vector 1064c7afd0dbSLois Curfman McInnes products, and a user-provided preconditioning matrix 1065c7afd0dbSLois Curfman McInnes as set by SNESSetJacobian() 1066c7afd0dbSLois Curfman McInnes - -snes_fd - Uses (slow!) finite differences to compute Jacobian 1067c1f60f51SBarry Smith 106836851e7fSLois Curfman McInnes Level: beginner 106936851e7fSLois Curfman McInnes 10709b94acceSBarry Smith .keywords: SNES, nonlinear, create, context 10719b94acceSBarry Smith 1072a8054027SBarry Smith .seealso: SNESSolve(), SNESDestroy(), SNES, SNESSetLagPreconditioner() 1073a8054027SBarry Smith 10749b94acceSBarry Smith @*/ 10757087cfbeSBarry Smith PetscErrorCode SNESCreate(MPI_Comm comm,SNES *outsnes) 10769b94acceSBarry Smith { 1077dfbe8321SBarry Smith PetscErrorCode ierr; 10789b94acceSBarry Smith SNES snes; 1079fa9f3622SBarry Smith SNESKSPEW *kctx; 108037fcc0dbSBarry Smith 10813a40ed3dSBarry Smith PetscFunctionBegin; 1082ed1caa07SMatthew Knepley PetscValidPointer(outsnes,2); 10838ba1e511SMatthew Knepley *outsnes = PETSC_NULL; 10848ba1e511SMatthew Knepley #ifndef PETSC_USE_DYNAMIC_LIBRARIES 10858ba1e511SMatthew Knepley ierr = SNESInitializePackage(PETSC_NULL);CHKERRQ(ierr); 10868ba1e511SMatthew Knepley #endif 10878ba1e511SMatthew Knepley 10883194b578SJed Brown ierr = PetscHeaderCreate(snes,_p_SNES,struct _SNESOps,SNES_CLASSID,0,"SNES","Nonlinear solver","SNES",comm,SNESDestroy,SNESView);CHKERRQ(ierr); 10897adad957SLisandro Dalcin 109085385478SLisandro Dalcin snes->ops->converged = SNESDefaultConverged; 10912c155ee1SBarry Smith snes->usesksp = PETSC_TRUE; 10929b94acceSBarry Smith snes->max_its = 50; 10939750a799SBarry Smith snes->max_funcs = 10000; 10949b94acceSBarry Smith snes->norm = 0.0; 1095b4874afaSBarry Smith snes->rtol = 1.e-8; 1096b4874afaSBarry Smith snes->ttol = 0.0; 109770441072SBarry Smith snes->abstol = 1.e-50; 10989b94acceSBarry Smith snes->xtol = 1.e-8; 10994b27c08aSLois Curfman McInnes snes->deltatol = 1.e-12; 11009b94acceSBarry Smith snes->nfuncs = 0; 110150ffb88aSMatthew Knepley snes->numFailures = 0; 110250ffb88aSMatthew Knepley snes->maxFailures = 1; 11037a00f4a9SLois Curfman McInnes snes->linear_its = 0; 1104e35cf81dSBarry Smith snes->lagjacobian = 1; 1105a8054027SBarry Smith snes->lagpreconditioner = 1; 1106639f9d9dSBarry Smith snes->numbermonitors = 0; 11079b94acceSBarry Smith snes->data = 0; 11084dc4c822SBarry Smith snes->setupcalled = PETSC_FALSE; 1109186905e3SBarry Smith snes->ksp_ewconv = PETSC_FALSE; 11106f24a144SLois Curfman McInnes snes->nwork = 0; 111158c9b817SLisandro Dalcin snes->work = 0; 111258c9b817SLisandro Dalcin snes->nvwork = 0; 111358c9b817SLisandro Dalcin snes->vwork = 0; 1114758f92a0SBarry Smith snes->conv_hist_len = 0; 1115758f92a0SBarry Smith snes->conv_hist_max = 0; 1116758f92a0SBarry Smith snes->conv_hist = PETSC_NULL; 1117758f92a0SBarry Smith snes->conv_hist_its = PETSC_NULL; 1118758f92a0SBarry Smith snes->conv_hist_reset = PETSC_TRUE; 1119184914b5SBarry Smith snes->reason = SNES_CONVERGED_ITERATING; 11209b94acceSBarry Smith 1121ea630c6eSPeter Brune /* initialize the line search options */ 1122ea630c6eSPeter Brune snes->ls_type = SNES_LS_BASIC; 1123af60355fSPeter Brune snes->ls_its = 1; 1124ea630c6eSPeter Brune snes->damping = 1.0; 1125ea630c6eSPeter Brune snes->maxstep = 1e8; 1126ea630c6eSPeter Brune snes->steptol = 1e-12; 1127ea630c6eSPeter Brune snes->ls_alpha = 1e-4; 1128ea630c6eSPeter Brune snes->ls_monitor = PETSC_NULL; 1129ea630c6eSPeter Brune 1130ea630c6eSPeter Brune snes->ops->linesearch = PETSC_NULL; 1131ea630c6eSPeter Brune snes->precheck = PETSC_NULL; 1132ea630c6eSPeter Brune snes->ops->precheckstep = PETSC_NULL; 1133ea630c6eSPeter Brune snes->postcheck = PETSC_NULL; 1134ea630c6eSPeter Brune snes->ops->postcheckstep= PETSC_NULL; 1135ea630c6eSPeter Brune 11363d4c4710SBarry Smith snes->numLinearSolveFailures = 0; 11373d4c4710SBarry Smith snes->maxLinearSolveFailures = 1; 11383d4c4710SBarry Smith 11399b94acceSBarry Smith /* Create context to compute Eisenstat-Walker relative tolerance for KSP */ 114038f2d2fdSLisandro Dalcin ierr = PetscNewLog(snes,SNESKSPEW,&kctx);CHKERRQ(ierr); 11419b94acceSBarry Smith snes->kspconvctx = (void*)kctx; 11429b94acceSBarry Smith kctx->version = 2; 11439b94acceSBarry Smith kctx->rtol_0 = .3; /* Eisenstat and Walker suggest rtol_0=.5, but 11449b94acceSBarry Smith this was too large for some test cases */ 114575567043SBarry Smith kctx->rtol_last = 0.0; 11469b94acceSBarry Smith kctx->rtol_max = .9; 11479b94acceSBarry Smith kctx->gamma = 1.0; 114862d1f40fSBarry Smith kctx->alpha = .5*(1.0 + PetscSqrtReal(5.0)); 114971f87433Sdalcinl kctx->alpha2 = kctx->alpha; 11509b94acceSBarry Smith kctx->threshold = .1; 115175567043SBarry Smith kctx->lresid_last = 0.0; 115275567043SBarry Smith kctx->norm_last = 0.0; 11539b94acceSBarry Smith 11549b94acceSBarry Smith *outsnes = snes; 11553a40ed3dSBarry Smith PetscFunctionReturn(0); 11569b94acceSBarry Smith } 11579b94acceSBarry Smith 11584a2ae208SSatish Balay #undef __FUNCT__ 11594a2ae208SSatish Balay #define __FUNCT__ "SNESSetFunction" 11609b94acceSBarry Smith /*@C 11619b94acceSBarry Smith SNESSetFunction - Sets the function evaluation routine and function 11629b94acceSBarry Smith vector for use by the SNES routines in solving systems of nonlinear 11639b94acceSBarry Smith equations. 11649b94acceSBarry Smith 11653f9fe445SBarry Smith Logically Collective on SNES 1166fee21e36SBarry Smith 1167c7afd0dbSLois Curfman McInnes Input Parameters: 1168c7afd0dbSLois Curfman McInnes + snes - the SNES context 1169c7afd0dbSLois Curfman McInnes . r - vector to store function value 1170de044059SHong Zhang . func - function evaluation routine 1171c7afd0dbSLois Curfman McInnes - ctx - [optional] user-defined context for private data for the 1172c7afd0dbSLois Curfman McInnes function evaluation routine (may be PETSC_NULL) 11739b94acceSBarry Smith 1174c7afd0dbSLois Curfman McInnes Calling sequence of func: 11758d76a1e5SLois Curfman McInnes $ func (SNES snes,Vec x,Vec f,void *ctx); 1176c7afd0dbSLois Curfman McInnes 1177313e4042SLois Curfman McInnes . f - function vector 1178c7afd0dbSLois Curfman McInnes - ctx - optional user-defined function context 11799b94acceSBarry Smith 11809b94acceSBarry Smith Notes: 11819b94acceSBarry Smith The Newton-like methods typically solve linear systems of the form 11829b94acceSBarry Smith $ f'(x) x = -f(x), 1183c7afd0dbSLois Curfman McInnes where f'(x) denotes the Jacobian matrix and f(x) is the function. 11849b94acceSBarry Smith 118536851e7fSLois Curfman McInnes Level: beginner 118636851e7fSLois Curfman McInnes 11879b94acceSBarry Smith .keywords: SNES, nonlinear, set, function 11889b94acceSBarry Smith 11898b0a5094SBarry Smith .seealso: SNESGetFunction(), SNESComputeFunction(), SNESSetJacobian(), SNESSetPicard() 11909b94acceSBarry Smith @*/ 11917087cfbeSBarry Smith PetscErrorCode SNESSetFunction(SNES snes,Vec r,PetscErrorCode (*func)(SNES,Vec,Vec,void*),void *ctx) 11929b94acceSBarry Smith { 119385385478SLisandro Dalcin PetscErrorCode ierr; 11943a40ed3dSBarry Smith PetscFunctionBegin; 11950700a824SBarry Smith PetscValidHeaderSpecific(snes,SNES_CLASSID,1); 1196d2a683ecSLisandro Dalcin if (r) { 1197d2a683ecSLisandro Dalcin PetscValidHeaderSpecific(r,VEC_CLASSID,2); 1198d2a683ecSLisandro Dalcin PetscCheckSameComm(snes,1,r,2); 119985385478SLisandro Dalcin ierr = PetscObjectReference((PetscObject)r);CHKERRQ(ierr); 12006bf464f9SBarry Smith ierr = VecDestroy(&snes->vec_func);CHKERRQ(ierr); 120185385478SLisandro Dalcin snes->vec_func = r; 1202d2a683ecSLisandro Dalcin } else if (!snes->vec_func && snes->dm) { 1203d2a683ecSLisandro Dalcin ierr = DMCreateGlobalVector(snes->dm,&snes->vec_func);CHKERRQ(ierr); 1204d2a683ecSLisandro Dalcin } 1205d2a683ecSLisandro Dalcin if (func) snes->ops->computefunction = func; 1206d2a683ecSLisandro Dalcin if (ctx) snes->funP = ctx; 12073a40ed3dSBarry Smith PetscFunctionReturn(0); 12089b94acceSBarry Smith } 12099b94acceSBarry Smith 1210d25893d9SBarry Smith #undef __FUNCT__ 12118b0a5094SBarry Smith #define __FUNCT__ "SNESPicardComputeFunction" 12128b0a5094SBarry Smith PetscErrorCode SNESPicardComputeFunction(SNES snes,Vec x,Vec f,void *ctx) 12138b0a5094SBarry Smith { 12148b0a5094SBarry Smith PetscErrorCode ierr; 12158b0a5094SBarry Smith PetscFunctionBegin; 12168b0a5094SBarry Smith /* A(x)*x - b(x) */ 12178b0a5094SBarry Smith ierr = (*snes->ops->computepjacobian)(snes,x,&snes->jacobian,&snes->jacobian_pre,&snes->matstruct,snes->jacP);CHKERRQ(ierr); 12188b0a5094SBarry Smith ierr = (*snes->ops->computepfunction)(snes,x,f,snes->funP);CHKERRQ(ierr); 12198b0a5094SBarry Smith ierr = VecView(x,PETSC_VIEWER_BINARY_WORLD);CHKERRQ(ierr); 12208b0a5094SBarry Smith ierr = VecView(f,PETSC_VIEWER_BINARY_WORLD);CHKERRQ(ierr); 12218b0a5094SBarry Smith ierr = VecScale(f,-1.0);CHKERRQ(ierr); 12228b0a5094SBarry Smith ierr = MatMultAdd(snes->jacobian_pre,x,f,f);CHKERRQ(ierr); 12238b0a5094SBarry Smith PetscFunctionReturn(0); 12248b0a5094SBarry Smith } 12258b0a5094SBarry Smith 12268b0a5094SBarry Smith #undef __FUNCT__ 12278b0a5094SBarry Smith #define __FUNCT__ "SNESPicardComputeJacobian" 12288b0a5094SBarry Smith PetscErrorCode SNESPicardComputeJacobian(SNES snes,Vec x1,Mat *J,Mat *B,MatStructure *flag,void *ctx) 12298b0a5094SBarry Smith { 12308b0a5094SBarry Smith PetscFunctionBegin; 12318b0a5094SBarry Smith *flag = snes->matstruct; 12328b0a5094SBarry Smith PetscFunctionReturn(0); 12338b0a5094SBarry Smith } 12348b0a5094SBarry Smith 12358b0a5094SBarry Smith #undef __FUNCT__ 12368b0a5094SBarry Smith #define __FUNCT__ "SNESSetPicard" 12378b0a5094SBarry Smith /*@C 12388b0a5094SBarry Smith SNESSetPicard - Use SNES to solve the semilinear-system A(x) x = b(x) via a Picard type iteration 12398b0a5094SBarry Smith 12408b0a5094SBarry Smith Logically Collective on SNES 12418b0a5094SBarry Smith 12428b0a5094SBarry Smith Input Parameters: 12438b0a5094SBarry Smith + snes - the SNES context 12448b0a5094SBarry Smith . r - vector to store function value 12458b0a5094SBarry Smith . func - function evaluation routine 12468b0a5094SBarry Smith . jmat - normally the same as mat but you can pass another matrix for which you compute the Jacobian of A(x) x - b(x) (see jmat below) 12478b0a5094SBarry Smith . mat - matrix to store A 12488b0a5094SBarry Smith . mfunc - function to compute matrix value 12498b0a5094SBarry Smith - ctx - [optional] user-defined context for private data for the 12508b0a5094SBarry Smith function evaluation routine (may be PETSC_NULL) 12518b0a5094SBarry Smith 12528b0a5094SBarry Smith Calling sequence of func: 12538b0a5094SBarry Smith $ func (SNES snes,Vec x,Vec f,void *ctx); 12548b0a5094SBarry Smith 12558b0a5094SBarry Smith + f - function vector 12568b0a5094SBarry Smith - ctx - optional user-defined function context 12578b0a5094SBarry Smith 12588b0a5094SBarry Smith Calling sequence of mfunc: 12598b0a5094SBarry Smith $ mfunc (SNES snes,Vec x,Mat *jmat,Mat *mat,int *flag,void *ctx); 12608b0a5094SBarry Smith 12618b0a5094SBarry Smith + x - input vector 12628b0a5094SBarry Smith . jmat - Form Jacobian matrix of A(x) x - b(x) if available, not there is really no reason to use it in this way since then you can just use SNESSetJacobian(), 12638b0a5094SBarry Smith normally just pass mat in this location 12648b0a5094SBarry Smith . mat - form A(x) matrix 12658b0a5094SBarry Smith . flag - flag indicating information about the preconditioner matrix 12668b0a5094SBarry Smith structure (same as flag in KSPSetOperators()), one of SAME_NONZERO_PATTERN,DIFFERENT_NONZERO_PATTERN,SAME_PRECONDITIONER 12678b0a5094SBarry Smith - ctx - [optional] user-defined Jacobian context 12688b0a5094SBarry Smith 12698b0a5094SBarry Smith Notes: 12708b0a5094SBarry Smith One can call SNESSetPicard() or SNESSetFunction() (and possibly SNESSetJacobian()) but cannot call both 12718b0a5094SBarry Smith 12728b0a5094SBarry Smith $ Solves the equation A(x) x = b(x) via the defect correction algorithm A(x^{n}) (x^{n+1} - x^{n}) = b(x^{n}) - A(x^{n})x^{n} 12738b0a5094SBarry Smith $ Note that when an exact solver is used this corresponds to the "classic" Picard A(x^{n}) x^{n+1} = b(x^{n}) iteration. 12748b0a5094SBarry Smith 12758b0a5094SBarry Smith Run with -snes_mf_operator to solve the system with Newton's method using A(x^{n}) to construct the preconditioner. 12768b0a5094SBarry Smith 12778b0a5094SBarry Smith We implement the defect correction form of the Picard iteration because it converges much more generally when inexact linear solvers are used. 12788b0a5094SBarry Smith 12798b0a5094SBarry 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 12808b0a5094SBarry 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 12818b0a5094SBarry Smith different please contact us at petsc-dev@mcs.anl.gov and we'll have an entirely new argument :-). 12828b0a5094SBarry Smith 12838b0a5094SBarry Smith Level: beginner 12848b0a5094SBarry Smith 12858b0a5094SBarry Smith .keywords: SNES, nonlinear, set, function 12868b0a5094SBarry Smith 12878b0a5094SBarry Smith .seealso: SNESGetFunction(), SNESSetFunction(), SNESComputeFunction(), SNESSetJacobian(), SNESSetPicard() 12888b0a5094SBarry Smith @*/ 12898b0a5094SBarry Smith PetscErrorCode SNESSetPicard(SNES snes,Vec r,PetscErrorCode (*func)(SNES,Vec,Vec,void*),Mat jmat, Mat mat, PetscErrorCode (*mfunc)(SNES,Vec,Mat*,Mat*,MatStructure*,void*),void *ctx) 12908b0a5094SBarry Smith { 12918b0a5094SBarry Smith PetscErrorCode ierr; 12928b0a5094SBarry Smith PetscFunctionBegin; 12938b0a5094SBarry Smith PetscValidHeaderSpecific(snes,SNES_CLASSID,1); 12948b0a5094SBarry Smith snes->ops->computepfunction = func; 12958b0a5094SBarry Smith snes->ops->computepjacobian = mfunc; 12968b0a5094SBarry Smith ierr = SNESSetFunction(snes,r,SNESPicardComputeFunction,ctx);CHKERRQ(ierr); 12978b0a5094SBarry Smith ierr = SNESSetJacobian(snes,jmat,mat,SNESPicardComputeJacobian,ctx);CHKERRQ(ierr); 12988b0a5094SBarry Smith PetscFunctionReturn(0); 12998b0a5094SBarry Smith } 13008b0a5094SBarry Smith 13018b0a5094SBarry Smith #undef __FUNCT__ 1302d25893d9SBarry Smith #define __FUNCT__ "SNESSetComputeInitialGuess" 1303d25893d9SBarry Smith /*@C 1304d25893d9SBarry Smith SNESSetComputeInitialGuess - Sets a routine used to compute an initial guess for the problem 1305d25893d9SBarry Smith 1306d25893d9SBarry Smith Logically Collective on SNES 1307d25893d9SBarry Smith 1308d25893d9SBarry Smith Input Parameters: 1309d25893d9SBarry Smith + snes - the SNES context 1310d25893d9SBarry Smith . func - function evaluation routine 1311d25893d9SBarry Smith - ctx - [optional] user-defined context for private data for the 1312d25893d9SBarry Smith function evaluation routine (may be PETSC_NULL) 1313d25893d9SBarry Smith 1314d25893d9SBarry Smith Calling sequence of func: 1315d25893d9SBarry Smith $ func (SNES snes,Vec x,void *ctx); 1316d25893d9SBarry Smith 1317d25893d9SBarry Smith . f - function vector 1318d25893d9SBarry Smith - ctx - optional user-defined function context 1319d25893d9SBarry Smith 1320d25893d9SBarry Smith Level: intermediate 1321d25893d9SBarry Smith 1322d25893d9SBarry Smith .keywords: SNES, nonlinear, set, function 1323d25893d9SBarry Smith 1324d25893d9SBarry Smith .seealso: SNESGetFunction(), SNESComputeFunction(), SNESSetJacobian() 1325d25893d9SBarry Smith @*/ 1326d25893d9SBarry Smith PetscErrorCode SNESSetComputeInitialGuess(SNES snes,PetscErrorCode (*func)(SNES,Vec,void*),void *ctx) 1327d25893d9SBarry Smith { 1328d25893d9SBarry Smith PetscFunctionBegin; 1329d25893d9SBarry Smith PetscValidHeaderSpecific(snes,SNES_CLASSID,1); 1330d25893d9SBarry Smith if (func) snes->ops->computeinitialguess = func; 1331d25893d9SBarry Smith if (ctx) snes->initialguessP = ctx; 1332d25893d9SBarry Smith PetscFunctionReturn(0); 1333d25893d9SBarry Smith } 1334d25893d9SBarry Smith 13353ab0aad5SBarry Smith /* --------------------------------------------------------------- */ 13363ab0aad5SBarry Smith #undef __FUNCT__ 13371096aae1SMatthew Knepley #define __FUNCT__ "SNESGetRhs" 13381096aae1SMatthew Knepley /*@C 13391096aae1SMatthew Knepley SNESGetRhs - Gets the vector for solving F(x) = rhs. If rhs is not set 13401096aae1SMatthew Knepley it assumes a zero right hand side. 13411096aae1SMatthew Knepley 13423f9fe445SBarry Smith Logically Collective on SNES 13431096aae1SMatthew Knepley 13441096aae1SMatthew Knepley Input Parameter: 13451096aae1SMatthew Knepley . snes - the SNES context 13461096aae1SMatthew Knepley 13471096aae1SMatthew Knepley Output Parameter: 1348bc08b0f1SBarry Smith . rhs - the right hand side vector or PETSC_NULL if the right hand side vector is null 13491096aae1SMatthew Knepley 13501096aae1SMatthew Knepley Level: intermediate 13511096aae1SMatthew Knepley 13521096aae1SMatthew Knepley .keywords: SNES, nonlinear, get, function, right hand side 13531096aae1SMatthew Knepley 135485385478SLisandro Dalcin .seealso: SNESGetSolution(), SNESGetFunction(), SNESComputeFunction(), SNESSetJacobian(), SNESSetFunction() 13551096aae1SMatthew Knepley @*/ 13567087cfbeSBarry Smith PetscErrorCode SNESGetRhs(SNES snes,Vec *rhs) 13571096aae1SMatthew Knepley { 13581096aae1SMatthew Knepley PetscFunctionBegin; 13590700a824SBarry Smith PetscValidHeaderSpecific(snes,SNES_CLASSID,1); 13601096aae1SMatthew Knepley PetscValidPointer(rhs,2); 136185385478SLisandro Dalcin *rhs = snes->vec_rhs; 13621096aae1SMatthew Knepley PetscFunctionReturn(0); 13631096aae1SMatthew Knepley } 13641096aae1SMatthew Knepley 13651096aae1SMatthew Knepley #undef __FUNCT__ 13664a2ae208SSatish Balay #define __FUNCT__ "SNESComputeFunction" 13679b94acceSBarry Smith /*@ 136836851e7fSLois Curfman McInnes SNESComputeFunction - Calls the function that has been set with 13699b94acceSBarry Smith SNESSetFunction(). 13709b94acceSBarry Smith 1371c7afd0dbSLois Curfman McInnes Collective on SNES 1372c7afd0dbSLois Curfman McInnes 13739b94acceSBarry Smith Input Parameters: 1374c7afd0dbSLois Curfman McInnes + snes - the SNES context 1375c7afd0dbSLois Curfman McInnes - x - input vector 13769b94acceSBarry Smith 13779b94acceSBarry Smith Output Parameter: 13783638b69dSLois Curfman McInnes . y - function vector, as set by SNESSetFunction() 13799b94acceSBarry Smith 13801bffabb2SLois Curfman McInnes Notes: 138136851e7fSLois Curfman McInnes SNESComputeFunction() is typically used within nonlinear solvers 138236851e7fSLois Curfman McInnes implementations, so most users would not generally call this routine 138336851e7fSLois Curfman McInnes themselves. 138436851e7fSLois Curfman McInnes 138536851e7fSLois Curfman McInnes Level: developer 138636851e7fSLois Curfman McInnes 13879b94acceSBarry Smith .keywords: SNES, nonlinear, compute, function 13889b94acceSBarry Smith 1389a86d99e1SLois Curfman McInnes .seealso: SNESSetFunction(), SNESGetFunction() 13909b94acceSBarry Smith @*/ 13917087cfbeSBarry Smith PetscErrorCode SNESComputeFunction(SNES snes,Vec x,Vec y) 13929b94acceSBarry Smith { 1393dfbe8321SBarry Smith PetscErrorCode ierr; 13949b94acceSBarry Smith 13953a40ed3dSBarry Smith PetscFunctionBegin; 13960700a824SBarry Smith PetscValidHeaderSpecific(snes,SNES_CLASSID,1); 13970700a824SBarry Smith PetscValidHeaderSpecific(x,VEC_CLASSID,2); 13980700a824SBarry Smith PetscValidHeaderSpecific(y,VEC_CLASSID,3); 1399c9780b6fSBarry Smith PetscCheckSameComm(snes,1,x,2); 1400c9780b6fSBarry Smith PetscCheckSameComm(snes,1,y,3); 1401184914b5SBarry Smith 1402d5ba7fb7SMatthew Knepley ierr = PetscLogEventBegin(SNES_FunctionEval,snes,x,y,0);CHKERRQ(ierr); 1403e7788613SBarry Smith if (snes->ops->computefunction) { 1404d64ed03dSBarry Smith PetscStackPush("SNES user function"); 140539d508bbSBarry Smith ierr = (*snes->ops->computefunction)(snes,x,y,snes->funP);CHKERRQ(ierr); 1406d64ed03dSBarry Smith PetscStackPop; 140773250ac0SBarry Smith } else if (snes->dm) { 1408644e2e5bSBarry Smith ierr = DMComputeFunction(snes->dm,x,y);CHKERRQ(ierr); 1409c90fad12SPeter Brune } else if (snes->vec_rhs) { 1410c90fad12SPeter Brune ierr = MatMult(snes->jacobian, x, y);CHKERRQ(ierr); 1411644e2e5bSBarry Smith } else SETERRQ(PETSC_COMM_SELF,PETSC_ERR_ARG_WRONGSTATE, "Must call SNESSetFunction() or SNESSetDM() before SNESComputeFunction(), likely called from SNESSolve()."); 141285385478SLisandro Dalcin if (snes->vec_rhs) { 141385385478SLisandro Dalcin ierr = VecAXPY(y,-1.0,snes->vec_rhs);CHKERRQ(ierr); 14143ab0aad5SBarry Smith } 1415ae3c334cSLois Curfman McInnes snes->nfuncs++; 1416d5ba7fb7SMatthew Knepley ierr = PetscLogEventEnd(SNES_FunctionEval,snes,x,y,0);CHKERRQ(ierr); 14173a40ed3dSBarry Smith PetscFunctionReturn(0); 14189b94acceSBarry Smith } 14199b94acceSBarry Smith 14204a2ae208SSatish Balay #undef __FUNCT__ 14214a2ae208SSatish Balay #define __FUNCT__ "SNESComputeJacobian" 142262fef451SLois Curfman McInnes /*@ 142362fef451SLois Curfman McInnes SNESComputeJacobian - Computes the Jacobian matrix that has been 142462fef451SLois Curfman McInnes set with SNESSetJacobian(). 142562fef451SLois Curfman McInnes 1426c7afd0dbSLois Curfman McInnes Collective on SNES and Mat 1427c7afd0dbSLois Curfman McInnes 142862fef451SLois Curfman McInnes Input Parameters: 1429c7afd0dbSLois Curfman McInnes + snes - the SNES context 1430c7afd0dbSLois Curfman McInnes - x - input vector 143162fef451SLois Curfman McInnes 143262fef451SLois Curfman McInnes Output Parameters: 1433c7afd0dbSLois Curfman McInnes + A - Jacobian matrix 143462fef451SLois Curfman McInnes . B - optional preconditioning matrix 14352b668275SBarry Smith - flag - flag indicating matrix structure (one of, SAME_NONZERO_PATTERN,DIFFERENT_NONZERO_PATTERN,SAME_PRECONDITIONER) 1436fee21e36SBarry Smith 1437e35cf81dSBarry Smith Options Database Keys: 1438e35cf81dSBarry Smith + -snes_lag_preconditioner <lag> 1439693365a8SJed Brown . -snes_lag_jacobian <lag> 1440693365a8SJed Brown . -snes_compare_explicit - Compare the computed Jacobian to the finite difference Jacobian and output the differences 1441693365a8SJed Brown . -snes_compare_explicit_draw - Compare the computed Jacobian to the finite difference Jacobian and draw the result 1442693365a8SJed Brown . -snes_compare_explicit_contour - Compare the computed Jacobian to the finite difference Jacobian and draw a contour plot with the result 14434c30e9fbSJed Brown . -snes_compare_operator - Make the comparison options above use the operator instead of the preconditioning matrix 1444c01495d3SJed Brown . -snes_compare_coloring - Compute the finite differece Jacobian using coloring and display norms of difference 1445c01495d3SJed Brown . -snes_compare_coloring_display - Compute the finite differece Jacobian using coloring and display verbose differences 1446c01495d3SJed Brown . -snes_compare_coloring_threshold - Display only those matrix entries that differ by more than a given threshold 1447c01495d3SJed Brown . -snes_compare_coloring_threshold_atol - Absolute tolerance for difference in matrix entries to be displayed by -snes_compare_coloring_threshold 1448c01495d3SJed Brown . -snes_compare_coloring_threshold_rtol - Relative tolerance for difference in matrix entries to be displayed by -snes_compare_coloring_threshold 14494c30e9fbSJed Brown . -snes_compare_coloring_draw - Compute the finite differece Jacobian using coloring and draw differences 1450c01495d3SJed Brown - -snes_compare_coloring_draw_contour - Compute the finite differece Jacobian using coloring and show contours of matrices and differences 1451c01495d3SJed Brown 1452e35cf81dSBarry Smith 145362fef451SLois Curfman McInnes Notes: 145462fef451SLois Curfman McInnes Most users should not need to explicitly call this routine, as it 145562fef451SLois Curfman McInnes is used internally within the nonlinear solvers. 145662fef451SLois Curfman McInnes 145794b7f48cSBarry Smith See KSPSetOperators() for important information about setting the 1458dc5a77f8SLois Curfman McInnes flag parameter. 145962fef451SLois Curfman McInnes 146036851e7fSLois Curfman McInnes Level: developer 146136851e7fSLois Curfman McInnes 146262fef451SLois Curfman McInnes .keywords: SNES, compute, Jacobian, matrix 146362fef451SLois Curfman McInnes 1464e35cf81dSBarry Smith .seealso: SNESSetJacobian(), KSPSetOperators(), MatStructure, SNESSetLagPreconditioner(), SNESSetLagJacobian() 146562fef451SLois Curfman McInnes @*/ 14667087cfbeSBarry Smith PetscErrorCode SNESComputeJacobian(SNES snes,Vec X,Mat *A,Mat *B,MatStructure *flg) 14679b94acceSBarry Smith { 1468dfbe8321SBarry Smith PetscErrorCode ierr; 1469ace3abfcSBarry Smith PetscBool flag; 14703a40ed3dSBarry Smith 14713a40ed3dSBarry Smith PetscFunctionBegin; 14720700a824SBarry Smith PetscValidHeaderSpecific(snes,SNES_CLASSID,1); 14730700a824SBarry Smith PetscValidHeaderSpecific(X,VEC_CLASSID,2); 14744482741eSBarry Smith PetscValidPointer(flg,5); 1475c9780b6fSBarry Smith PetscCheckSameComm(snes,1,X,2); 1476e7788613SBarry Smith if (!snes->ops->computejacobian) PetscFunctionReturn(0); 1477ebd3b9afSBarry Smith 1478ebd3b9afSBarry Smith /* make sure that MatAssemblyBegin/End() is called on A matrix if it is matrix free */ 1479ebd3b9afSBarry Smith 1480fe3ffe1eSBarry Smith if (snes->lagjacobian == -2) { 1481fe3ffe1eSBarry Smith snes->lagjacobian = -1; 1482fe3ffe1eSBarry Smith ierr = PetscInfo(snes,"Recomputing Jacobian/preconditioner because lag is -2 (means compute Jacobian, but then never again) \n");CHKERRQ(ierr); 1483fe3ffe1eSBarry Smith } else if (snes->lagjacobian == -1) { 1484e35cf81dSBarry Smith *flg = SAME_PRECONDITIONER; 1485e35cf81dSBarry Smith ierr = PetscInfo(snes,"Reusing Jacobian/preconditioner because lag is -1\n");CHKERRQ(ierr); 1486ebd3b9afSBarry Smith ierr = PetscTypeCompare((PetscObject)*A,MATMFFD,&flag);CHKERRQ(ierr); 1487ebd3b9afSBarry Smith if (flag) { 1488ebd3b9afSBarry Smith ierr = MatAssemblyBegin(*A,MAT_FINAL_ASSEMBLY);CHKERRQ(ierr); 1489ebd3b9afSBarry Smith ierr = MatAssemblyEnd(*A,MAT_FINAL_ASSEMBLY);CHKERRQ(ierr); 1490ebd3b9afSBarry Smith } 1491e35cf81dSBarry Smith PetscFunctionReturn(0); 1492e35cf81dSBarry Smith } else if (snes->lagjacobian > 1 && snes->iter % snes->lagjacobian) { 1493e35cf81dSBarry Smith *flg = SAME_PRECONDITIONER; 1494e35cf81dSBarry Smith ierr = PetscInfo2(snes,"Reusing Jacobian/preconditioner because lag is %D and SNES iteration is %D\n",snes->lagjacobian,snes->iter);CHKERRQ(ierr); 1495ebd3b9afSBarry Smith ierr = PetscTypeCompare((PetscObject)*A,MATMFFD,&flag);CHKERRQ(ierr); 1496ebd3b9afSBarry Smith if (flag) { 1497ebd3b9afSBarry Smith ierr = MatAssemblyBegin(*A,MAT_FINAL_ASSEMBLY);CHKERRQ(ierr); 1498ebd3b9afSBarry Smith ierr = MatAssemblyEnd(*A,MAT_FINAL_ASSEMBLY);CHKERRQ(ierr); 1499ebd3b9afSBarry Smith } 1500e35cf81dSBarry Smith PetscFunctionReturn(0); 1501e35cf81dSBarry Smith } 1502e35cf81dSBarry Smith 1503c4fc05e7SBarry Smith *flg = DIFFERENT_NONZERO_PATTERN; 1504e35cf81dSBarry Smith ierr = PetscLogEventBegin(SNES_JacobianEval,snes,X,*A,*B);CHKERRQ(ierr); 1505d64ed03dSBarry Smith PetscStackPush("SNES user Jacobian function"); 1506e7788613SBarry Smith ierr = (*snes->ops->computejacobian)(snes,X,A,B,flg,snes->jacP);CHKERRQ(ierr); 1507d64ed03dSBarry Smith PetscStackPop; 1508d5ba7fb7SMatthew Knepley ierr = PetscLogEventEnd(SNES_JacobianEval,snes,X,*A,*B);CHKERRQ(ierr); 1509a8054027SBarry Smith 15103b4f5425SBarry Smith if (snes->lagpreconditioner == -2) { 15113b4f5425SBarry Smith ierr = PetscInfo(snes,"Rebuilding preconditioner exactly once since lag is -2\n");CHKERRQ(ierr); 15123b4f5425SBarry Smith snes->lagpreconditioner = -1; 15133b4f5425SBarry Smith } else if (snes->lagpreconditioner == -1) { 1514a8054027SBarry Smith *flg = SAME_PRECONDITIONER; 1515a8054027SBarry Smith ierr = PetscInfo(snes,"Reusing preconditioner because lag is -1\n");CHKERRQ(ierr); 1516a8054027SBarry Smith } else if (snes->lagpreconditioner > 1 && snes->iter % snes->lagpreconditioner) { 1517a8054027SBarry Smith *flg = SAME_PRECONDITIONER; 1518a8054027SBarry Smith ierr = PetscInfo2(snes,"Reusing preconditioner because lag is %D and SNES iteration is %D\n",snes->lagpreconditioner,snes->iter);CHKERRQ(ierr); 1519a8054027SBarry Smith } 1520a8054027SBarry Smith 15216d84be18SBarry Smith /* make sure user returned a correct Jacobian and preconditioner */ 15220700a824SBarry Smith /* PetscValidHeaderSpecific(*A,MAT_CLASSID,3); 15230700a824SBarry Smith PetscValidHeaderSpecific(*B,MAT_CLASSID,4); */ 1524693365a8SJed Brown { 1525693365a8SJed Brown PetscBool flag = PETSC_FALSE,flag_draw = PETSC_FALSE,flag_contour = PETSC_FALSE,flag_operator = PETSC_FALSE; 1526693365a8SJed Brown ierr = PetscOptionsGetBool(((PetscObject)snes)->prefix,"-snes_compare_explicit",&flag,PETSC_NULL);CHKERRQ(ierr); 1527693365a8SJed Brown ierr = PetscOptionsGetBool(((PetscObject)snes)->prefix,"-snes_compare_explicit_draw",&flag_draw,PETSC_NULL);CHKERRQ(ierr); 1528693365a8SJed Brown ierr = PetscOptionsGetBool(((PetscObject)snes)->prefix,"-snes_compare_explicit_draw_contour",&flag_contour,PETSC_NULL);CHKERRQ(ierr); 1529693365a8SJed Brown ierr = PetscOptionsGetBool(((PetscObject)snes)->prefix,"-snes_compare_operator",&flag_operator,PETSC_NULL);CHKERRQ(ierr); 1530693365a8SJed Brown if (flag || flag_draw || flag_contour) { 1531693365a8SJed Brown Mat Bexp_mine = PETSC_NULL,Bexp,FDexp; 1532693365a8SJed Brown MatStructure mstruct; 1533693365a8SJed Brown PetscViewer vdraw,vstdout; 15346b3a5b13SJed Brown PetscBool flg; 1535693365a8SJed Brown if (flag_operator) { 1536693365a8SJed Brown ierr = MatComputeExplicitOperator(*A,&Bexp_mine);CHKERRQ(ierr); 1537693365a8SJed Brown Bexp = Bexp_mine; 1538693365a8SJed Brown } else { 1539693365a8SJed Brown /* See if the preconditioning matrix can be viewed and added directly */ 1540693365a8SJed Brown ierr = PetscTypeCompareAny((PetscObject)*B,&flg,MATSEQAIJ,MATMPIAIJ,MATSEQDENSE,MATMPIDENSE,MATSEQBAIJ,MATMPIBAIJ,MATSEQSBAIJ,MATMPIBAIJ,"");CHKERRQ(ierr); 1541693365a8SJed Brown if (flg) Bexp = *B; 1542693365a8SJed Brown else { 1543693365a8SJed Brown /* If the "preconditioning" matrix is itself MATSHELL or some other type without direct support */ 1544693365a8SJed Brown ierr = MatComputeExplicitOperator(*B,&Bexp_mine);CHKERRQ(ierr); 1545693365a8SJed Brown Bexp = Bexp_mine; 1546693365a8SJed Brown } 1547693365a8SJed Brown } 1548693365a8SJed Brown ierr = MatConvert(Bexp,MATSAME,MAT_INITIAL_MATRIX,&FDexp);CHKERRQ(ierr); 1549693365a8SJed Brown ierr = SNESDefaultComputeJacobian(snes,X,&FDexp,&FDexp,&mstruct,NULL);CHKERRQ(ierr); 1550693365a8SJed Brown ierr = PetscViewerASCIIGetStdout(((PetscObject)snes)->comm,&vstdout);CHKERRQ(ierr); 1551693365a8SJed Brown if (flag_draw || flag_contour) { 1552693365a8SJed Brown ierr = PetscViewerDrawOpen(((PetscObject)snes)->comm,0,"Explicit Jacobians",PETSC_DECIDE,PETSC_DECIDE,300,300,&vdraw);CHKERRQ(ierr); 1553693365a8SJed Brown if (flag_contour) {ierr = PetscViewerPushFormat(vdraw,PETSC_VIEWER_DRAW_CONTOUR);CHKERRQ(ierr);} 1554693365a8SJed Brown } else vdraw = PETSC_NULL; 1555693365a8SJed Brown ierr = PetscViewerASCIIPrintf(vstdout,"Explicit %s\n",flag_operator?"Jacobian":"preconditioning Jacobian");CHKERRQ(ierr); 1556693365a8SJed Brown if (flag) {ierr = MatView(Bexp,vstdout);CHKERRQ(ierr);} 1557693365a8SJed Brown if (vdraw) {ierr = MatView(Bexp,vdraw);CHKERRQ(ierr);} 1558693365a8SJed Brown ierr = PetscViewerASCIIPrintf(vstdout,"Finite difference Jacobian\n");CHKERRQ(ierr); 1559693365a8SJed Brown if (flag) {ierr = MatView(FDexp,vstdout);CHKERRQ(ierr);} 1560693365a8SJed Brown if (vdraw) {ierr = MatView(FDexp,vdraw);CHKERRQ(ierr);} 1561693365a8SJed Brown ierr = MatAYPX(FDexp,-1.0,Bexp,SAME_NONZERO_PATTERN);CHKERRQ(ierr); 1562693365a8SJed Brown ierr = PetscViewerASCIIPrintf(vstdout,"User-provided matrix minus finite difference Jacobian\n");CHKERRQ(ierr); 1563693365a8SJed Brown if (flag) {ierr = MatView(FDexp,vstdout);CHKERRQ(ierr);} 1564693365a8SJed Brown if (vdraw) { /* Always use contour for the difference */ 1565693365a8SJed Brown ierr = PetscViewerPushFormat(vdraw,PETSC_VIEWER_DRAW_CONTOUR);CHKERRQ(ierr); 1566693365a8SJed Brown ierr = MatView(FDexp,vdraw);CHKERRQ(ierr); 1567693365a8SJed Brown ierr = PetscViewerPopFormat(vdraw);CHKERRQ(ierr); 1568693365a8SJed Brown } 1569693365a8SJed Brown if (flag_contour) {ierr = PetscViewerPopFormat(vdraw);CHKERRQ(ierr);} 1570693365a8SJed Brown ierr = PetscViewerDestroy(&vdraw);CHKERRQ(ierr); 1571693365a8SJed Brown ierr = MatDestroy(&Bexp_mine);CHKERRQ(ierr); 1572693365a8SJed Brown ierr = MatDestroy(&FDexp);CHKERRQ(ierr); 1573693365a8SJed Brown } 1574693365a8SJed Brown } 15754c30e9fbSJed Brown { 15766719d8e4SJed Brown PetscBool flag = PETSC_FALSE,flag_display = PETSC_FALSE,flag_draw = PETSC_FALSE,flag_contour = PETSC_FALSE,flag_threshold = PETSC_FALSE; 15776719d8e4SJed Brown PetscReal threshold_atol = PETSC_SQRT_MACHINE_EPSILON,threshold_rtol = 10*PETSC_SQRT_MACHINE_EPSILON; 15784c30e9fbSJed Brown ierr = PetscOptionsGetBool(((PetscObject)snes)->prefix,"-snes_compare_coloring",&flag,PETSC_NULL);CHKERRQ(ierr); 15796719d8e4SJed Brown ierr = PetscOptionsGetBool(((PetscObject)snes)->prefix,"-snes_compare_coloring_display",&flag_display,PETSC_NULL);CHKERRQ(ierr); 15804c30e9fbSJed Brown ierr = PetscOptionsGetBool(((PetscObject)snes)->prefix,"-snes_compare_coloring_draw",&flag_draw,PETSC_NULL);CHKERRQ(ierr); 15814c30e9fbSJed Brown ierr = PetscOptionsGetBool(((PetscObject)snes)->prefix,"-snes_compare_coloring_draw_contour",&flag_contour,PETSC_NULL);CHKERRQ(ierr); 15826719d8e4SJed Brown ierr = PetscOptionsGetBool(((PetscObject)snes)->prefix,"-snes_compare_coloring_threshold",&flag_threshold,PETSC_NULL);CHKERRQ(ierr); 15836719d8e4SJed Brown ierr = PetscOptionsGetReal(((PetscObject)snes)->prefix,"-snes_compare_coloring_threshold_rtol",&threshold_rtol,PETSC_NULL);CHKERRQ(ierr); 15846719d8e4SJed Brown ierr = PetscOptionsGetReal(((PetscObject)snes)->prefix,"-snes_compare_coloring_threshold_atol",&threshold_atol,PETSC_NULL);CHKERRQ(ierr); 15856719d8e4SJed Brown if (flag || flag_display || flag_draw || flag_contour || flag_threshold) { 15864c30e9fbSJed Brown Mat Bfd; 15874c30e9fbSJed Brown MatStructure mstruct; 15884c30e9fbSJed Brown PetscViewer vdraw,vstdout; 15894c30e9fbSJed Brown ISColoring iscoloring; 15904c30e9fbSJed Brown MatFDColoring matfdcoloring; 15914c30e9fbSJed Brown PetscErrorCode (*func)(SNES,Vec,Vec,void*); 15924c30e9fbSJed Brown void *funcctx; 15936719d8e4SJed Brown PetscReal norm1,norm2,normmax; 15944c30e9fbSJed Brown 15954c30e9fbSJed Brown ierr = MatDuplicate(*B,MAT_DO_NOT_COPY_VALUES,&Bfd);CHKERRQ(ierr); 15964c30e9fbSJed Brown ierr = MatGetColoring(Bfd,MATCOLORINGSL,&iscoloring);CHKERRQ(ierr); 15974c30e9fbSJed Brown ierr = MatFDColoringCreate(Bfd,iscoloring,&matfdcoloring);CHKERRQ(ierr); 15984c30e9fbSJed Brown ierr = ISColoringDestroy(&iscoloring);CHKERRQ(ierr); 15994c30e9fbSJed Brown 16004c30e9fbSJed Brown /* This method of getting the function is currently unreliable since it doesn't work for DM local functions. */ 16014c30e9fbSJed Brown ierr = SNESGetFunction(snes,PETSC_NULL,&func,&funcctx);CHKERRQ(ierr); 16024c30e9fbSJed Brown ierr = MatFDColoringSetFunction(matfdcoloring,(PetscErrorCode(*)(void))func,funcctx);CHKERRQ(ierr); 16034c30e9fbSJed Brown ierr = PetscObjectSetOptionsPrefix((PetscObject)matfdcoloring,((PetscObject)snes)->prefix);CHKERRQ(ierr); 16044c30e9fbSJed Brown ierr = PetscObjectAppendOptionsPrefix((PetscObject)matfdcoloring,"coloring_");CHKERRQ(ierr); 16054c30e9fbSJed Brown ierr = MatFDColoringSetFromOptions(matfdcoloring);CHKERRQ(ierr); 16064c30e9fbSJed Brown ierr = MatFDColoringApply(Bfd,matfdcoloring,X,&mstruct,snes);CHKERRQ(ierr); 16074c30e9fbSJed Brown ierr = MatFDColoringDestroy(&matfdcoloring);CHKERRQ(ierr); 16084c30e9fbSJed Brown 16094c30e9fbSJed Brown ierr = PetscViewerASCIIGetStdout(((PetscObject)snes)->comm,&vstdout);CHKERRQ(ierr); 16104c30e9fbSJed Brown if (flag_draw || flag_contour) { 16114c30e9fbSJed Brown ierr = PetscViewerDrawOpen(((PetscObject)snes)->comm,0,"Colored Jacobians",PETSC_DECIDE,PETSC_DECIDE,300,300,&vdraw);CHKERRQ(ierr); 16124c30e9fbSJed Brown if (flag_contour) {ierr = PetscViewerPushFormat(vdraw,PETSC_VIEWER_DRAW_CONTOUR);CHKERRQ(ierr);} 16134c30e9fbSJed Brown } else vdraw = PETSC_NULL; 16144c30e9fbSJed Brown ierr = PetscViewerASCIIPrintf(vstdout,"Explicit preconditioning Jacobian\n");CHKERRQ(ierr); 16156719d8e4SJed Brown if (flag_display) {ierr = MatView(*B,vstdout);CHKERRQ(ierr);} 16164c30e9fbSJed Brown if (vdraw) {ierr = MatView(*B,vdraw);CHKERRQ(ierr);} 16174c30e9fbSJed Brown ierr = PetscViewerASCIIPrintf(vstdout,"Colored Finite difference Jacobian\n");CHKERRQ(ierr); 16186719d8e4SJed Brown if (flag_display) {ierr = MatView(Bfd,vstdout);CHKERRQ(ierr);} 16194c30e9fbSJed Brown if (vdraw) {ierr = MatView(Bfd,vdraw);CHKERRQ(ierr);} 16204c30e9fbSJed Brown ierr = MatAYPX(Bfd,-1.0,*B,SAME_NONZERO_PATTERN);CHKERRQ(ierr); 16214c30e9fbSJed Brown ierr = MatNorm(Bfd,NORM_1,&norm1);CHKERRQ(ierr); 16226719d8e4SJed Brown ierr = MatNorm(Bfd,NORM_FROBENIUS,&norm2);CHKERRQ(ierr); 16234c30e9fbSJed Brown ierr = MatNorm(Bfd,NORM_MAX,&normmax);CHKERRQ(ierr); 16246719d8e4SJed Brown ierr = PetscViewerASCIIPrintf(vstdout,"User-provided matrix minus finite difference Jacobian, norm1=%G normFrob=%G normmax=%G\n",norm1,norm2,normmax);CHKERRQ(ierr); 16256719d8e4SJed Brown if (flag_display) {ierr = MatView(Bfd,vstdout);CHKERRQ(ierr);} 16264c30e9fbSJed Brown if (vdraw) { /* Always use contour for the difference */ 16274c30e9fbSJed Brown ierr = PetscViewerPushFormat(vdraw,PETSC_VIEWER_DRAW_CONTOUR);CHKERRQ(ierr); 16284c30e9fbSJed Brown ierr = MatView(Bfd,vdraw);CHKERRQ(ierr); 16294c30e9fbSJed Brown ierr = PetscViewerPopFormat(vdraw);CHKERRQ(ierr); 16304c30e9fbSJed Brown } 16314c30e9fbSJed Brown if (flag_contour) {ierr = PetscViewerPopFormat(vdraw);CHKERRQ(ierr);} 16326719d8e4SJed Brown 16336719d8e4SJed Brown if (flag_threshold) { 16346719d8e4SJed Brown PetscInt bs,rstart,rend,i; 16356719d8e4SJed Brown ierr = MatGetBlockSize(*B,&bs);CHKERRQ(ierr); 16366719d8e4SJed Brown ierr = MatGetOwnershipRange(*B,&rstart,&rend);CHKERRQ(ierr); 16376719d8e4SJed Brown for (i=rstart; i<rend; i++) { 16386719d8e4SJed Brown const PetscScalar *ba,*ca; 16396719d8e4SJed Brown const PetscInt *bj,*cj; 16406719d8e4SJed Brown PetscInt bn,cn,j,maxentrycol = -1,maxdiffcol = -1,maxrdiffcol = -1; 16416719d8e4SJed Brown PetscReal maxentry = 0,maxdiff = 0,maxrdiff = 0; 16426719d8e4SJed Brown ierr = MatGetRow(*B,i,&bn,&bj,&ba);CHKERRQ(ierr); 16436719d8e4SJed Brown ierr = MatGetRow(Bfd,i,&cn,&cj,&ca);CHKERRQ(ierr); 16446719d8e4SJed Brown if (bn != cn) SETERRQ(((PetscObject)*A)->comm,PETSC_ERR_PLIB,"Unexpected different nonzero pattern in -snes_compare_coloring_threshold"); 16456719d8e4SJed Brown for (j=0; j<bn; j++) { 16466719d8e4SJed Brown PetscReal rdiff = PetscAbsScalar(ca[j]) / (threshold_atol + threshold_rtol*PetscAbsScalar(ba[j])); 16476719d8e4SJed Brown if (PetscAbsScalar(ba[j]) > PetscAbs(maxentry)) { 16486719d8e4SJed Brown maxentrycol = bj[j]; 16496719d8e4SJed Brown maxentry = PetscRealPart(ba[j]); 16506719d8e4SJed Brown } 16516719d8e4SJed Brown if (PetscAbsScalar(ca[j]) > PetscAbs(maxdiff)) { 16526719d8e4SJed Brown maxdiffcol = bj[j]; 16536719d8e4SJed Brown maxdiff = PetscRealPart(ca[j]); 16546719d8e4SJed Brown } 16556719d8e4SJed Brown if (rdiff > maxrdiff) { 16566719d8e4SJed Brown maxrdiffcol = bj[j]; 16576719d8e4SJed Brown maxrdiff = rdiff; 16586719d8e4SJed Brown } 16596719d8e4SJed Brown } 16606719d8e4SJed Brown if (maxrdiff > 1) { 16616719d8e4SJed Brown ierr = PetscViewerASCIIPrintf(vstdout,"row %D (maxentry=%G at %D, maxdiff=%G at %D, maxrdiff=%G at %D):",i,maxentry,maxentrycol,maxdiff,maxdiffcol,maxrdiff,maxrdiffcol);CHKERRQ(ierr); 16626719d8e4SJed Brown for (j=0; j<bn; j++) { 16636719d8e4SJed Brown PetscReal rdiff; 16646719d8e4SJed Brown rdiff = PetscAbsScalar(ca[j]) / (threshold_atol + threshold_rtol*PetscAbsScalar(ba[j])); 16656719d8e4SJed Brown if (rdiff > 1) { 16666719d8e4SJed Brown ierr = PetscViewerASCIIPrintf(vstdout," (%D,%G:%G)",bj[j],PetscRealPart(ba[j]),PetscRealPart(ca[j]));CHKERRQ(ierr); 16676719d8e4SJed Brown } 16686719d8e4SJed Brown } 16696719d8e4SJed Brown ierr = PetscViewerASCIIPrintf(vstdout,"\n",i,maxentry,maxdiff,maxrdiff);CHKERRQ(ierr); 16706719d8e4SJed Brown } 16716719d8e4SJed Brown ierr = MatRestoreRow(*B,i,&bn,&bj,&ba);CHKERRQ(ierr); 16726719d8e4SJed Brown ierr = MatRestoreRow(Bfd,i,&cn,&cj,&ca);CHKERRQ(ierr); 16736719d8e4SJed Brown } 16746719d8e4SJed Brown } 16754c30e9fbSJed Brown ierr = PetscViewerDestroy(&vdraw);CHKERRQ(ierr); 16764c30e9fbSJed Brown ierr = MatDestroy(&Bfd);CHKERRQ(ierr); 16774c30e9fbSJed Brown } 16784c30e9fbSJed Brown } 16793a40ed3dSBarry Smith PetscFunctionReturn(0); 16809b94acceSBarry Smith } 16819b94acceSBarry Smith 16824a2ae208SSatish Balay #undef __FUNCT__ 16834a2ae208SSatish Balay #define __FUNCT__ "SNESSetJacobian" 16849b94acceSBarry Smith /*@C 16859b94acceSBarry Smith SNESSetJacobian - Sets the function to compute Jacobian as well as the 1686044dda88SLois Curfman McInnes location to store the matrix. 16879b94acceSBarry Smith 16883f9fe445SBarry Smith Logically Collective on SNES and Mat 1689c7afd0dbSLois Curfman McInnes 16909b94acceSBarry Smith Input Parameters: 1691c7afd0dbSLois Curfman McInnes + snes - the SNES context 16929b94acceSBarry Smith . A - Jacobian matrix 16939b94acceSBarry Smith . B - preconditioner matrix (usually same as the Jacobian) 1694efd51863SBarry Smith . func - Jacobian evaluation routine (if PETSC_NULL then SNES retains any previously set value) 1695c7afd0dbSLois Curfman McInnes - ctx - [optional] user-defined context for private data for the 1696efd51863SBarry Smith Jacobian evaluation routine (may be PETSC_NULL) (if PETSC_NULL then SNES retains any previously set value) 16979b94acceSBarry Smith 16989b94acceSBarry Smith Calling sequence of func: 16998d76a1e5SLois Curfman McInnes $ func (SNES snes,Vec x,Mat *A,Mat *B,int *flag,void *ctx); 17009b94acceSBarry Smith 1701c7afd0dbSLois Curfman McInnes + x - input vector 17029b94acceSBarry Smith . A - Jacobian matrix 17039b94acceSBarry Smith . B - preconditioner matrix, usually the same as A 1704ac21db08SLois Curfman McInnes . flag - flag indicating information about the preconditioner matrix 17052b668275SBarry Smith structure (same as flag in KSPSetOperators()), one of SAME_NONZERO_PATTERN,DIFFERENT_NONZERO_PATTERN,SAME_PRECONDITIONER 1706c7afd0dbSLois Curfman McInnes - ctx - [optional] user-defined Jacobian context 17079b94acceSBarry Smith 17089b94acceSBarry Smith Notes: 170994b7f48cSBarry Smith See KSPSetOperators() for important information about setting the flag 17102cd2dfdcSLois Curfman McInnes output parameter in the routine func(). Be sure to read this information! 1711ac21db08SLois Curfman McInnes 1712ac21db08SLois Curfman McInnes The routine func() takes Mat * as the matrix arguments rather than Mat. 17139b94acceSBarry Smith This allows the Jacobian evaluation routine to replace A and/or B with a 17149b94acceSBarry Smith completely new new matrix structure (not just different matrix elements) 17159b94acceSBarry Smith when appropriate, for instance, if the nonzero structure is changing 17169b94acceSBarry Smith throughout the global iterations. 17179b94acceSBarry Smith 171816913363SBarry Smith If the A matrix and B matrix are different you must call MatAssemblyBegin/End() on 171916913363SBarry Smith each matrix. 172016913363SBarry Smith 1721a8a26c1eSJed Brown If using SNESDefaultComputeJacobianColor() to assemble a Jacobian, the ctx argument 1722a8a26c1eSJed Brown must be a MatFDColoring. 1723a8a26c1eSJed Brown 1724c3cc8fd1SJed Brown Other defect-correction schemes can be used by computing a different matrix in place of the Jacobian. One common 1725c3cc8fd1SJed Brown example is to use the "Picard linearization" which only differentiates through the highest order parts of each term. 1726c3cc8fd1SJed Brown 172736851e7fSLois Curfman McInnes Level: beginner 172836851e7fSLois Curfman McInnes 17299b94acceSBarry Smith .keywords: SNES, nonlinear, set, Jacobian, matrix 17309b94acceSBarry Smith 17313ec795f1SBarry Smith .seealso: KSPSetOperators(), SNESSetFunction(), MatMFFDComputeJacobian(), SNESDefaultComputeJacobianColor(), MatStructure 17329b94acceSBarry Smith @*/ 17337087cfbeSBarry Smith PetscErrorCode SNESSetJacobian(SNES snes,Mat A,Mat B,PetscErrorCode (*func)(SNES,Vec,Mat*,Mat*,MatStructure*,void*),void *ctx) 17349b94acceSBarry Smith { 1735dfbe8321SBarry Smith PetscErrorCode ierr; 17363a7fca6bSBarry Smith 17373a40ed3dSBarry Smith PetscFunctionBegin; 17380700a824SBarry Smith PetscValidHeaderSpecific(snes,SNES_CLASSID,1); 17390700a824SBarry Smith if (A) PetscValidHeaderSpecific(A,MAT_CLASSID,2); 17400700a824SBarry Smith if (B) PetscValidHeaderSpecific(B,MAT_CLASSID,3); 1741c9780b6fSBarry Smith if (A) PetscCheckSameComm(snes,1,A,2); 174206975374SJed Brown if (B) PetscCheckSameComm(snes,1,B,3); 1743e7788613SBarry Smith if (func) snes->ops->computejacobian = func; 17443a7fca6bSBarry Smith if (ctx) snes->jacP = ctx; 17453a7fca6bSBarry Smith if (A) { 17467dcf0eaaSdalcinl ierr = PetscObjectReference((PetscObject)A);CHKERRQ(ierr); 17476bf464f9SBarry Smith ierr = MatDestroy(&snes->jacobian);CHKERRQ(ierr); 17489b94acceSBarry Smith snes->jacobian = A; 17493a7fca6bSBarry Smith } 17503a7fca6bSBarry Smith if (B) { 17517dcf0eaaSdalcinl ierr = PetscObjectReference((PetscObject)B);CHKERRQ(ierr); 17526bf464f9SBarry Smith ierr = MatDestroy(&snes->jacobian_pre);CHKERRQ(ierr); 17539b94acceSBarry Smith snes->jacobian_pre = B; 17543a7fca6bSBarry Smith } 17553a40ed3dSBarry Smith PetscFunctionReturn(0); 17569b94acceSBarry Smith } 175762fef451SLois Curfman McInnes 17584a2ae208SSatish Balay #undef __FUNCT__ 17594a2ae208SSatish Balay #define __FUNCT__ "SNESGetJacobian" 1760c2aafc4cSSatish Balay /*@C 1761b4fd4287SBarry Smith SNESGetJacobian - Returns the Jacobian matrix and optionally the user 1762b4fd4287SBarry Smith provided context for evaluating the Jacobian. 1763b4fd4287SBarry Smith 1764c7afd0dbSLois Curfman McInnes Not Collective, but Mat object will be parallel if SNES object is 1765c7afd0dbSLois Curfman McInnes 1766b4fd4287SBarry Smith Input Parameter: 1767b4fd4287SBarry Smith . snes - the nonlinear solver context 1768b4fd4287SBarry Smith 1769b4fd4287SBarry Smith Output Parameters: 1770c7afd0dbSLois Curfman McInnes + A - location to stash Jacobian matrix (or PETSC_NULL) 1771b4fd4287SBarry Smith . B - location to stash preconditioner matrix (or PETSC_NULL) 177270e92668SMatthew Knepley . func - location to put Jacobian function (or PETSC_NULL) 177370e92668SMatthew Knepley - ctx - location to stash Jacobian ctx (or PETSC_NULL) 1774fee21e36SBarry Smith 177536851e7fSLois Curfman McInnes Level: advanced 177636851e7fSLois Curfman McInnes 1777b4fd4287SBarry Smith .seealso: SNESSetJacobian(), SNESComputeJacobian() 1778b4fd4287SBarry Smith @*/ 17797087cfbeSBarry Smith PetscErrorCode SNESGetJacobian(SNES snes,Mat *A,Mat *B,PetscErrorCode (**func)(SNES,Vec,Mat*,Mat*,MatStructure*,void*),void **ctx) 1780b4fd4287SBarry Smith { 17813a40ed3dSBarry Smith PetscFunctionBegin; 17820700a824SBarry Smith PetscValidHeaderSpecific(snes,SNES_CLASSID,1); 1783b4fd4287SBarry Smith if (A) *A = snes->jacobian; 1784b4fd4287SBarry Smith if (B) *B = snes->jacobian_pre; 1785e7788613SBarry Smith if (func) *func = snes->ops->computejacobian; 178670e92668SMatthew Knepley if (ctx) *ctx = snes->jacP; 17873a40ed3dSBarry Smith PetscFunctionReturn(0); 1788b4fd4287SBarry Smith } 1789b4fd4287SBarry Smith 17909b94acceSBarry Smith /* ----- Routines to initialize and destroy a nonlinear solver ---- */ 17919b94acceSBarry Smith 17924a2ae208SSatish Balay #undef __FUNCT__ 17934a2ae208SSatish Balay #define __FUNCT__ "SNESSetUp" 17949b94acceSBarry Smith /*@ 17959b94acceSBarry Smith SNESSetUp - Sets up the internal data structures for the later use 1796272ac6f2SLois Curfman McInnes of a nonlinear solver. 17979b94acceSBarry Smith 1798fee21e36SBarry Smith Collective on SNES 1799fee21e36SBarry Smith 1800c7afd0dbSLois Curfman McInnes Input Parameters: 180170e92668SMatthew Knepley . snes - the SNES context 1802c7afd0dbSLois Curfman McInnes 1803272ac6f2SLois Curfman McInnes Notes: 1804272ac6f2SLois Curfman McInnes For basic use of the SNES solvers the user need not explicitly call 1805272ac6f2SLois Curfman McInnes SNESSetUp(), since these actions will automatically occur during 1806272ac6f2SLois Curfman McInnes the call to SNESSolve(). However, if one wishes to control this 1807272ac6f2SLois Curfman McInnes phase separately, SNESSetUp() should be called after SNESCreate() 1808272ac6f2SLois Curfman McInnes and optional routines of the form SNESSetXXX(), but before SNESSolve(). 1809272ac6f2SLois Curfman McInnes 181036851e7fSLois Curfman McInnes Level: advanced 181136851e7fSLois Curfman McInnes 18129b94acceSBarry Smith .keywords: SNES, nonlinear, setup 18139b94acceSBarry Smith 18149b94acceSBarry Smith .seealso: SNESCreate(), SNESSolve(), SNESDestroy() 18159b94acceSBarry Smith @*/ 18167087cfbeSBarry Smith PetscErrorCode SNESSetUp(SNES snes) 18179b94acceSBarry Smith { 1818dfbe8321SBarry Smith PetscErrorCode ierr; 18193a40ed3dSBarry Smith 18203a40ed3dSBarry Smith PetscFunctionBegin; 18210700a824SBarry Smith PetscValidHeaderSpecific(snes,SNES_CLASSID,1); 18224dc4c822SBarry Smith if (snes->setupcalled) PetscFunctionReturn(0); 18239b94acceSBarry Smith 18247adad957SLisandro Dalcin if (!((PetscObject)snes)->type_name) { 182585385478SLisandro Dalcin ierr = SNESSetType(snes,SNESLS);CHKERRQ(ierr); 182685385478SLisandro Dalcin } 182785385478SLisandro Dalcin 1828c9b9fda1SJed Brown if (!snes->vec_func) { 1829c9b9fda1SJed Brown if (snes->vec_rhs) { 1830c9b9fda1SJed Brown ierr = VecDuplicate(snes->vec_rhs,&snes->vec_func);CHKERRQ(ierr); 1831c9b9fda1SJed Brown } else if (snes->vec_sol) { 1832c9b9fda1SJed Brown ierr = VecDuplicate(snes->vec_sol,&snes->vec_func);CHKERRQ(ierr); 1833c9b9fda1SJed Brown } else if (snes->dm) { 1834efd51863SBarry Smith ierr = DMCreateGlobalVector(snes->dm,&snes->vec_func);CHKERRQ(ierr); 1835efd51863SBarry Smith } 1836c9b9fda1SJed Brown } 183717186662SBarry Smith if (snes->vec_func == snes->vec_sol) SETERRQ(PETSC_COMM_SELF,PETSC_ERR_ARG_IDN,"Solution vector cannot be function vector"); 183858c9b817SLisandro Dalcin if (snes->vec_rhs == snes->vec_sol) SETERRQ(PETSC_COMM_SELF,PETSC_ERR_ARG_IDN,"Solution vector cannot be right hand side vector"); 183958c9b817SLisandro Dalcin 184058c9b817SLisandro Dalcin if (!snes->vec_sol_update /* && snes->vec_sol */) { 184158c9b817SLisandro Dalcin ierr = VecDuplicate(snes->vec_sol,&snes->vec_sol_update);CHKERRQ(ierr); 184258c9b817SLisandro Dalcin ierr = PetscLogObjectParent(snes,snes->vec_sol_update);CHKERRQ(ierr); 184358c9b817SLisandro Dalcin } 184458c9b817SLisandro Dalcin 1845ef8dffc7SBarry Smith if (!snes->ops->computejacobian && snes->dm) { 1846ef8dffc7SBarry Smith Mat J; 1847ef8dffc7SBarry Smith ierr = DMGetMatrix(snes->dm,MATAIJ,&J);CHKERRQ(ierr); 1848cab2e9ccSBarry Smith ierr = SNESSetJacobian(snes,J,J,SNESDMComputeJacobian,PETSC_NULL);CHKERRQ(ierr); 1849cab2e9ccSBarry Smith ierr = MatDestroy(&J);CHKERRQ(ierr); 18502ef29e96SBarry Smith } else if (!snes->jacobian && snes->ops->computejacobian == MatMFFDComputeJacobian) { 1851a8248277SBarry Smith Mat J; 1852a8248277SBarry Smith ierr = MatCreateSNESMF(snes,&J);CHKERRQ(ierr); 1853a8248277SBarry Smith ierr = MatMFFDSetOptionsPrefix(J,((PetscObject)snes)->prefix);CHKERRQ(ierr); 1854a8248277SBarry Smith ierr = MatSetFromOptions(J);CHKERRQ(ierr); 1855a8248277SBarry Smith ierr = SNESSetJacobian(snes,J,J,MatMFFDComputeJacobian,snes->funP);CHKERRQ(ierr); 1856a8248277SBarry Smith ierr = MatDestroy(&J);CHKERRQ(ierr); 1857a8248277SBarry Smith } else if (snes->dm && snes->mf_operator && !snes->jacobian_pre && !snes->jacobian) { 1858a8248277SBarry Smith Mat J,B; 1859a8248277SBarry Smith ierr = MatCreateSNESMF(snes,&J);CHKERRQ(ierr); 1860a8248277SBarry Smith ierr = MatMFFDSetOptionsPrefix(J,((PetscObject)snes)->prefix);CHKERRQ(ierr); 1861a8248277SBarry Smith ierr = MatSetFromOptions(J);CHKERRQ(ierr); 1862a8248277SBarry Smith ierr = DMGetMatrix(snes->dm,MATAIJ,&B);CHKERRQ(ierr); 1863a8248277SBarry Smith ierr = SNESSetJacobian(snes,J,B,SNESDMComputeJacobian,snes->funP);CHKERRQ(ierr); 1864a8248277SBarry Smith ierr = MatDestroy(&J);CHKERRQ(ierr); 1865a8248277SBarry Smith ierr = MatDestroy(&B);CHKERRQ(ierr); 1866efd51863SBarry Smith } else if (snes->dm && !snes->jacobian_pre){ 1867efd51863SBarry Smith Mat J; 1868efd51863SBarry Smith ierr = DMGetMatrix(snes->dm,MATAIJ,&J);CHKERRQ(ierr); 18693cbb28f5SBarry Smith ierr = SNESSetJacobian(snes,J,J,PETSC_NULL,PETSC_NULL);CHKERRQ(ierr); 1870efd51863SBarry Smith ierr = MatDestroy(&J);CHKERRQ(ierr); 1871ef8dffc7SBarry Smith } 1872cfaf3a74SBarry Smith if (!snes->ops->computefunction && !snes->dm) SETERRQ(((PetscObject)snes)->comm,PETSC_ERR_ARG_WRONGSTATE,"Must provide a residual function with SNESSetFunction() or call SNESSetDM()"); 1873c9b9fda1SJed Brown if (!snes->vec_func) SETERRQ(((PetscObject)snes)->comm,PETSC_ERR_ARG_WRONGSTATE,"Must provide a vector when calling SNESSetFunction() or call SNESSetDM()"); 1874efd51863SBarry Smith 1875b710008aSBarry Smith if (!snes->ksp) {ierr = SNESGetKSP(snes, &snes->ksp);CHKERRQ(ierr);} 1876b710008aSBarry Smith 1877d25893d9SBarry Smith if (snes->ops->usercompute && !snes->user) { 1878d25893d9SBarry Smith ierr = (*snes->ops->usercompute)(snes,(void**)&snes->user);CHKERRQ(ierr); 1879d25893d9SBarry Smith } 1880d25893d9SBarry Smith 1881410397dcSLisandro Dalcin if (snes->ops->setup) { 1882410397dcSLisandro Dalcin ierr = (*snes->ops->setup)(snes);CHKERRQ(ierr); 1883410397dcSLisandro Dalcin } 188458c9b817SLisandro Dalcin 18857aaed0d8SBarry Smith snes->setupcalled = PETSC_TRUE; 18863a40ed3dSBarry Smith PetscFunctionReturn(0); 18879b94acceSBarry Smith } 18889b94acceSBarry Smith 18894a2ae208SSatish Balay #undef __FUNCT__ 189037596af1SLisandro Dalcin #define __FUNCT__ "SNESReset" 189137596af1SLisandro Dalcin /*@ 189237596af1SLisandro Dalcin SNESReset - Resets a SNES context to the snessetupcalled = 0 state and removes any allocated Vecs and Mats 189337596af1SLisandro Dalcin 189437596af1SLisandro Dalcin Collective on SNES 189537596af1SLisandro Dalcin 189637596af1SLisandro Dalcin Input Parameter: 189737596af1SLisandro Dalcin . snes - iterative context obtained from SNESCreate() 189837596af1SLisandro Dalcin 1899d25893d9SBarry Smith Level: intermediate 1900d25893d9SBarry Smith 1901d25893d9SBarry Smith Notes: Also calls the application context destroy routine set with SNESSetComputeApplicationContext() 190237596af1SLisandro Dalcin 190337596af1SLisandro Dalcin .keywords: SNES, destroy 190437596af1SLisandro Dalcin 190537596af1SLisandro Dalcin .seealso: SNESCreate(), SNESSetUp(), SNESSolve() 190637596af1SLisandro Dalcin @*/ 190737596af1SLisandro Dalcin PetscErrorCode SNESReset(SNES snes) 190837596af1SLisandro Dalcin { 190937596af1SLisandro Dalcin PetscErrorCode ierr; 191037596af1SLisandro Dalcin 191137596af1SLisandro Dalcin PetscFunctionBegin; 191237596af1SLisandro Dalcin PetscValidHeaderSpecific(snes,SNES_CLASSID,1); 1913d25893d9SBarry Smith if (snes->ops->userdestroy && snes->user) { 1914d25893d9SBarry Smith ierr = (*snes->ops->userdestroy)((void**)&snes->user);CHKERRQ(ierr); 1915d25893d9SBarry Smith snes->user = PETSC_NULL; 1916d25893d9SBarry Smith } 19178a23116dSBarry Smith if (snes->pc) { 19188a23116dSBarry Smith ierr = SNESReset(snes->pc);CHKERRQ(ierr); 19198a23116dSBarry Smith } 19208a23116dSBarry Smith 192137596af1SLisandro Dalcin if (snes->ops->reset) { 192237596af1SLisandro Dalcin ierr = (*snes->ops->reset)(snes);CHKERRQ(ierr); 192337596af1SLisandro Dalcin } 192437596af1SLisandro Dalcin if (snes->ksp) {ierr = KSPReset(snes->ksp);CHKERRQ(ierr);} 19256bf464f9SBarry Smith ierr = VecDestroy(&snes->vec_rhs);CHKERRQ(ierr); 19266bf464f9SBarry Smith ierr = VecDestroy(&snes->vec_sol);CHKERRQ(ierr); 19276bf464f9SBarry Smith ierr = VecDestroy(&snes->vec_sol_update);CHKERRQ(ierr); 19286bf464f9SBarry Smith ierr = VecDestroy(&snes->vec_func);CHKERRQ(ierr); 19296bf464f9SBarry Smith ierr = MatDestroy(&snes->jacobian);CHKERRQ(ierr); 19306bf464f9SBarry Smith ierr = MatDestroy(&snes->jacobian_pre);CHKERRQ(ierr); 193137596af1SLisandro Dalcin if (snes->work) {ierr = VecDestroyVecs(snes->nwork,&snes->work);CHKERRQ(ierr);} 193237596af1SLisandro Dalcin if (snes->vwork) {ierr = VecDestroyVecs(snes->nvwork,&snes->vwork);CHKERRQ(ierr);} 193337596af1SLisandro Dalcin snes->nwork = snes->nvwork = 0; 193437596af1SLisandro Dalcin snes->setupcalled = PETSC_FALSE; 193537596af1SLisandro Dalcin PetscFunctionReturn(0); 193637596af1SLisandro Dalcin } 193737596af1SLisandro Dalcin 193837596af1SLisandro Dalcin #undef __FUNCT__ 19394a2ae208SSatish Balay #define __FUNCT__ "SNESDestroy" 194052baeb72SSatish Balay /*@ 19419b94acceSBarry Smith SNESDestroy - Destroys the nonlinear solver context that was created 19429b94acceSBarry Smith with SNESCreate(). 19439b94acceSBarry Smith 1944c7afd0dbSLois Curfman McInnes Collective on SNES 1945c7afd0dbSLois Curfman McInnes 19469b94acceSBarry Smith Input Parameter: 19479b94acceSBarry Smith . snes - the SNES context 19489b94acceSBarry Smith 194936851e7fSLois Curfman McInnes Level: beginner 195036851e7fSLois Curfman McInnes 19519b94acceSBarry Smith .keywords: SNES, nonlinear, destroy 19529b94acceSBarry Smith 195363a78c88SLois Curfman McInnes .seealso: SNESCreate(), SNESSolve() 19549b94acceSBarry Smith @*/ 19556bf464f9SBarry Smith PetscErrorCode SNESDestroy(SNES *snes) 19569b94acceSBarry Smith { 19576849ba73SBarry Smith PetscErrorCode ierr; 19583a40ed3dSBarry Smith 19593a40ed3dSBarry Smith PetscFunctionBegin; 19606bf464f9SBarry Smith if (!*snes) PetscFunctionReturn(0); 19616bf464f9SBarry Smith PetscValidHeaderSpecific((*snes),SNES_CLASSID,1); 19626bf464f9SBarry Smith if (--((PetscObject)(*snes))->refct > 0) {*snes = 0; PetscFunctionReturn(0);} 1963d4bb536fSBarry Smith 19646bf464f9SBarry Smith ierr = SNESReset((*snes));CHKERRQ(ierr); 19658a23116dSBarry Smith ierr = SNESDestroy(&(*snes)->pc);CHKERRQ(ierr); 19666b8b9a38SLisandro Dalcin 1967be0abb6dSBarry Smith /* if memory was published with AMS then destroy it */ 19686bf464f9SBarry Smith ierr = PetscObjectDepublish((*snes));CHKERRQ(ierr); 19696bf464f9SBarry Smith if ((*snes)->ops->destroy) {ierr = (*((*snes))->ops->destroy)((*snes));CHKERRQ(ierr);} 19706d4c513bSLisandro Dalcin 19716bf464f9SBarry Smith ierr = DMDestroy(&(*snes)->dm);CHKERRQ(ierr); 19726bf464f9SBarry Smith ierr = KSPDestroy(&(*snes)->ksp);CHKERRQ(ierr); 19736b8b9a38SLisandro Dalcin 19746bf464f9SBarry Smith ierr = PetscFree((*snes)->kspconvctx);CHKERRQ(ierr); 19756bf464f9SBarry Smith if ((*snes)->ops->convergeddestroy) { 19766bf464f9SBarry Smith ierr = (*(*snes)->ops->convergeddestroy)((*snes)->cnvP);CHKERRQ(ierr); 19776b8b9a38SLisandro Dalcin } 19786bf464f9SBarry Smith if ((*snes)->conv_malloc) { 19796bf464f9SBarry Smith ierr = PetscFree((*snes)->conv_hist);CHKERRQ(ierr); 19806bf464f9SBarry Smith ierr = PetscFree((*snes)->conv_hist_its);CHKERRQ(ierr); 198158c9b817SLisandro Dalcin } 1982ea630c6eSPeter Brune ierr = PetscViewerDestroy(&(*snes)->ls_monitor);CHKERRQ(ierr); 19836bf464f9SBarry Smith ierr = SNESMonitorCancel((*snes));CHKERRQ(ierr); 1984a79aaaedSSatish Balay ierr = PetscHeaderDestroy(snes);CHKERRQ(ierr); 19853a40ed3dSBarry Smith PetscFunctionReturn(0); 19869b94acceSBarry Smith } 19879b94acceSBarry Smith 19889b94acceSBarry Smith /* ----------- Routines to set solver parameters ---------- */ 19899b94acceSBarry Smith 19904a2ae208SSatish Balay #undef __FUNCT__ 1991a8054027SBarry Smith #define __FUNCT__ "SNESSetLagPreconditioner" 1992a8054027SBarry Smith /*@ 1993a8054027SBarry Smith SNESSetLagPreconditioner - Determines when the preconditioner is rebuilt in the nonlinear solve. 1994a8054027SBarry Smith 19953f9fe445SBarry Smith Logically Collective on SNES 1996a8054027SBarry Smith 1997a8054027SBarry Smith Input Parameters: 1998a8054027SBarry Smith + snes - the SNES context 1999a8054027SBarry 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 20003b4f5425SBarry Smith the Jacobian is built etc. -2 indicates rebuild preconditioner at next chance but then never rebuild after that 2001a8054027SBarry Smith 2002a8054027SBarry Smith Options Database Keys: 2003a8054027SBarry Smith . -snes_lag_preconditioner <lag> 2004a8054027SBarry Smith 2005a8054027SBarry Smith Notes: 2006a8054027SBarry Smith The default is 1 2007a8054027SBarry Smith The preconditioner is ALWAYS built in the first iteration of a nonlinear solve unless lag is -1 2008a8054027SBarry Smith If -1 is used before the very first nonlinear solve the preconditioner is still built because there is no previous preconditioner to use 2009a8054027SBarry Smith 2010a8054027SBarry Smith Level: intermediate 2011a8054027SBarry Smith 2012a8054027SBarry Smith .keywords: SNES, nonlinear, set, convergence, tolerances 2013a8054027SBarry Smith 2014e35cf81dSBarry Smith .seealso: SNESSetTrustRegionTolerance(), SNESGetLagPreconditioner(), SNESSetLagJacobian(), SNESGetLagJacobian() 2015a8054027SBarry Smith 2016a8054027SBarry Smith @*/ 20177087cfbeSBarry Smith PetscErrorCode SNESSetLagPreconditioner(SNES snes,PetscInt lag) 2018a8054027SBarry Smith { 2019a8054027SBarry Smith PetscFunctionBegin; 20200700a824SBarry Smith PetscValidHeaderSpecific(snes,SNES_CLASSID,1); 2021e32f2f54SBarry Smith if (lag < -2) SETERRQ(PETSC_COMM_SELF,PETSC_ERR_ARG_OUTOFRANGE,"Lag must be -2, -1, 1 or greater"); 2022e32f2f54SBarry Smith if (!lag) SETERRQ(PETSC_COMM_SELF,PETSC_ERR_ARG_OUTOFRANGE,"Lag cannot be 0"); 2023c5eb9154SBarry Smith PetscValidLogicalCollectiveInt(snes,lag,2); 2024a8054027SBarry Smith snes->lagpreconditioner = lag; 2025a8054027SBarry Smith PetscFunctionReturn(0); 2026a8054027SBarry Smith } 2027a8054027SBarry Smith 2028a8054027SBarry Smith #undef __FUNCT__ 2029efd51863SBarry Smith #define __FUNCT__ "SNESSetGridSequence" 2030efd51863SBarry Smith /*@ 2031efd51863SBarry Smith SNESSetGridSequence - sets the number of steps of grid sequencing that SNES does 2032efd51863SBarry Smith 2033efd51863SBarry Smith Logically Collective on SNES 2034efd51863SBarry Smith 2035efd51863SBarry Smith Input Parameters: 2036efd51863SBarry Smith + snes - the SNES context 2037efd51863SBarry Smith - steps - the number of refinements to do, defaults to 0 2038efd51863SBarry Smith 2039efd51863SBarry Smith Options Database Keys: 2040efd51863SBarry Smith . -snes_grid_sequence <steps> 2041efd51863SBarry Smith 2042efd51863SBarry Smith Level: intermediate 2043efd51863SBarry Smith 2044c0df2a02SJed Brown Notes: 2045c0df2a02SJed Brown Use SNESGetSolution() to extract the fine grid solution after grid sequencing. 2046c0df2a02SJed Brown 2047efd51863SBarry Smith .keywords: SNES, nonlinear, set, convergence, tolerances 2048efd51863SBarry Smith 2049efd51863SBarry Smith .seealso: SNESSetTrustRegionTolerance(), SNESGetLagPreconditioner(), SNESSetLagJacobian(), SNESGetLagJacobian() 2050efd51863SBarry Smith 2051efd51863SBarry Smith @*/ 2052efd51863SBarry Smith PetscErrorCode SNESSetGridSequence(SNES snes,PetscInt steps) 2053efd51863SBarry Smith { 2054efd51863SBarry Smith PetscFunctionBegin; 2055efd51863SBarry Smith PetscValidHeaderSpecific(snes,SNES_CLASSID,1); 2056efd51863SBarry Smith PetscValidLogicalCollectiveInt(snes,steps,2); 2057efd51863SBarry Smith snes->gridsequence = steps; 2058efd51863SBarry Smith PetscFunctionReturn(0); 2059efd51863SBarry Smith } 2060efd51863SBarry Smith 2061efd51863SBarry Smith #undef __FUNCT__ 2062a8054027SBarry Smith #define __FUNCT__ "SNESGetLagPreconditioner" 2063a8054027SBarry Smith /*@ 2064a8054027SBarry Smith SNESGetLagPreconditioner - Indicates how often the preconditioner is rebuilt 2065a8054027SBarry Smith 20663f9fe445SBarry Smith Not Collective 2067a8054027SBarry Smith 2068a8054027SBarry Smith Input Parameter: 2069a8054027SBarry Smith . snes - the SNES context 2070a8054027SBarry Smith 2071a8054027SBarry Smith Output Parameter: 2072a8054027SBarry 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 20733b4f5425SBarry Smith the Jacobian is built etc. -2 indicates rebuild preconditioner at next chance but then never rebuild after that 2074a8054027SBarry Smith 2075a8054027SBarry Smith Options Database Keys: 2076a8054027SBarry Smith . -snes_lag_preconditioner <lag> 2077a8054027SBarry Smith 2078a8054027SBarry Smith Notes: 2079a8054027SBarry Smith The default is 1 2080a8054027SBarry Smith The preconditioner is ALWAYS built in the first iteration of a nonlinear solve unless lag is -1 2081a8054027SBarry Smith 2082a8054027SBarry Smith Level: intermediate 2083a8054027SBarry Smith 2084a8054027SBarry Smith .keywords: SNES, nonlinear, set, convergence, tolerances 2085a8054027SBarry Smith 2086a8054027SBarry Smith .seealso: SNESSetTrustRegionTolerance(), SNESSetLagPreconditioner() 2087a8054027SBarry Smith 2088a8054027SBarry Smith @*/ 20897087cfbeSBarry Smith PetscErrorCode SNESGetLagPreconditioner(SNES snes,PetscInt *lag) 2090a8054027SBarry Smith { 2091a8054027SBarry Smith PetscFunctionBegin; 20920700a824SBarry Smith PetscValidHeaderSpecific(snes,SNES_CLASSID,1); 2093a8054027SBarry Smith *lag = snes->lagpreconditioner; 2094a8054027SBarry Smith PetscFunctionReturn(0); 2095a8054027SBarry Smith } 2096a8054027SBarry Smith 2097a8054027SBarry Smith #undef __FUNCT__ 2098e35cf81dSBarry Smith #define __FUNCT__ "SNESSetLagJacobian" 2099e35cf81dSBarry Smith /*@ 2100e35cf81dSBarry Smith SNESSetLagJacobian - Determines when the Jacobian is rebuilt in the nonlinear solve. See SNESSetLagPreconditioner() for determining how 2101e35cf81dSBarry Smith often the preconditioner is rebuilt. 2102e35cf81dSBarry Smith 21033f9fe445SBarry Smith Logically Collective on SNES 2104e35cf81dSBarry Smith 2105e35cf81dSBarry Smith Input Parameters: 2106e35cf81dSBarry Smith + snes - the SNES context 2107e35cf81dSBarry 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 2108fe3ffe1eSBarry Smith the Jacobian is built etc. -2 means rebuild at next chance but then never again 2109e35cf81dSBarry Smith 2110e35cf81dSBarry Smith Options Database Keys: 2111e35cf81dSBarry Smith . -snes_lag_jacobian <lag> 2112e35cf81dSBarry Smith 2113e35cf81dSBarry Smith Notes: 2114e35cf81dSBarry Smith The default is 1 2115e35cf81dSBarry Smith The Jacobian is ALWAYS built in the first iteration of a nonlinear solve unless lag is -1 2116fe3ffe1eSBarry 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 2117fe3ffe1eSBarry Smith at the next Newton step but never again (unless it is reset to another value) 2118e35cf81dSBarry Smith 2119e35cf81dSBarry Smith Level: intermediate 2120e35cf81dSBarry Smith 2121e35cf81dSBarry Smith .keywords: SNES, nonlinear, set, convergence, tolerances 2122e35cf81dSBarry Smith 2123e35cf81dSBarry Smith .seealso: SNESSetTrustRegionTolerance(), SNESGetLagPreconditioner(), SNESSetLagPreconditioner(), SNESGetLagJacobian() 2124e35cf81dSBarry Smith 2125e35cf81dSBarry Smith @*/ 21267087cfbeSBarry Smith PetscErrorCode SNESSetLagJacobian(SNES snes,PetscInt lag) 2127e35cf81dSBarry Smith { 2128e35cf81dSBarry Smith PetscFunctionBegin; 21290700a824SBarry Smith PetscValidHeaderSpecific(snes,SNES_CLASSID,1); 2130e32f2f54SBarry Smith if (lag < -2) SETERRQ(PETSC_COMM_SELF,PETSC_ERR_ARG_OUTOFRANGE,"Lag must be -2, -1, 1 or greater"); 2131e32f2f54SBarry Smith if (!lag) SETERRQ(PETSC_COMM_SELF,PETSC_ERR_ARG_OUTOFRANGE,"Lag cannot be 0"); 2132c5eb9154SBarry Smith PetscValidLogicalCollectiveInt(snes,lag,2); 2133e35cf81dSBarry Smith snes->lagjacobian = lag; 2134e35cf81dSBarry Smith PetscFunctionReturn(0); 2135e35cf81dSBarry Smith } 2136e35cf81dSBarry Smith 2137e35cf81dSBarry Smith #undef __FUNCT__ 2138e35cf81dSBarry Smith #define __FUNCT__ "SNESGetLagJacobian" 2139e35cf81dSBarry Smith /*@ 2140e35cf81dSBarry Smith SNESGetLagJacobian - Indicates how often the Jacobian is rebuilt. See SNESGetLagPreconditioner() to determine when the preconditioner is rebuilt 2141e35cf81dSBarry Smith 21423f9fe445SBarry Smith Not Collective 2143e35cf81dSBarry Smith 2144e35cf81dSBarry Smith Input Parameter: 2145e35cf81dSBarry Smith . snes - the SNES context 2146e35cf81dSBarry Smith 2147e35cf81dSBarry Smith Output Parameter: 2148e35cf81dSBarry 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 2149e35cf81dSBarry Smith the Jacobian is built etc. 2150e35cf81dSBarry Smith 2151e35cf81dSBarry Smith Options Database Keys: 2152e35cf81dSBarry Smith . -snes_lag_jacobian <lag> 2153e35cf81dSBarry Smith 2154e35cf81dSBarry Smith Notes: 2155e35cf81dSBarry Smith The default is 1 2156e35cf81dSBarry Smith The jacobian is ALWAYS built in the first iteration of a nonlinear solve unless lag is -1 2157e35cf81dSBarry Smith 2158e35cf81dSBarry Smith Level: intermediate 2159e35cf81dSBarry Smith 2160e35cf81dSBarry Smith .keywords: SNES, nonlinear, set, convergence, tolerances 2161e35cf81dSBarry Smith 2162e35cf81dSBarry Smith .seealso: SNESSetTrustRegionTolerance(), SNESSetLagJacobian(), SNESSetLagPreconditioner(), SNESGetLagPreconditioner() 2163e35cf81dSBarry Smith 2164e35cf81dSBarry Smith @*/ 21657087cfbeSBarry Smith PetscErrorCode SNESGetLagJacobian(SNES snes,PetscInt *lag) 2166e35cf81dSBarry Smith { 2167e35cf81dSBarry Smith PetscFunctionBegin; 21680700a824SBarry Smith PetscValidHeaderSpecific(snes,SNES_CLASSID,1); 2169e35cf81dSBarry Smith *lag = snes->lagjacobian; 2170e35cf81dSBarry Smith PetscFunctionReturn(0); 2171e35cf81dSBarry Smith } 2172e35cf81dSBarry Smith 2173e35cf81dSBarry Smith #undef __FUNCT__ 21744a2ae208SSatish Balay #define __FUNCT__ "SNESSetTolerances" 21759b94acceSBarry Smith /*@ 2176d7a720efSLois Curfman McInnes SNESSetTolerances - Sets various parameters used in convergence tests. 21779b94acceSBarry Smith 21783f9fe445SBarry Smith Logically Collective on SNES 2179c7afd0dbSLois Curfman McInnes 21809b94acceSBarry Smith Input Parameters: 2181c7afd0dbSLois Curfman McInnes + snes - the SNES context 218270441072SBarry Smith . abstol - absolute convergence tolerance 218333174efeSLois Curfman McInnes . rtol - relative convergence tolerance 218433174efeSLois Curfman McInnes . stol - convergence tolerance in terms of the norm 218533174efeSLois Curfman McInnes of the change in the solution between steps 218633174efeSLois Curfman McInnes . maxit - maximum number of iterations 2187c7afd0dbSLois Curfman McInnes - maxf - maximum number of function evaluations 2188fee21e36SBarry Smith 218933174efeSLois Curfman McInnes Options Database Keys: 219070441072SBarry Smith + -snes_atol <abstol> - Sets abstol 2191c7afd0dbSLois Curfman McInnes . -snes_rtol <rtol> - Sets rtol 2192c7afd0dbSLois Curfman McInnes . -snes_stol <stol> - Sets stol 2193c7afd0dbSLois Curfman McInnes . -snes_max_it <maxit> - Sets maxit 2194c7afd0dbSLois Curfman McInnes - -snes_max_funcs <maxf> - Sets maxf 21959b94acceSBarry Smith 2196d7a720efSLois Curfman McInnes Notes: 21979b94acceSBarry Smith The default maximum number of iterations is 50. 21989b94acceSBarry Smith The default maximum number of function evaluations is 1000. 21999b94acceSBarry Smith 220036851e7fSLois Curfman McInnes Level: intermediate 220136851e7fSLois Curfman McInnes 220233174efeSLois Curfman McInnes .keywords: SNES, nonlinear, set, convergence, tolerances 22039b94acceSBarry Smith 22042492ecdbSBarry Smith .seealso: SNESSetTrustRegionTolerance() 22059b94acceSBarry Smith @*/ 22067087cfbeSBarry Smith PetscErrorCode SNESSetTolerances(SNES snes,PetscReal abstol,PetscReal rtol,PetscReal stol,PetscInt maxit,PetscInt maxf) 22079b94acceSBarry Smith { 22083a40ed3dSBarry Smith PetscFunctionBegin; 22090700a824SBarry Smith PetscValidHeaderSpecific(snes,SNES_CLASSID,1); 2210c5eb9154SBarry Smith PetscValidLogicalCollectiveReal(snes,abstol,2); 2211c5eb9154SBarry Smith PetscValidLogicalCollectiveReal(snes,rtol,3); 2212c5eb9154SBarry Smith PetscValidLogicalCollectiveReal(snes,stol,4); 2213c5eb9154SBarry Smith PetscValidLogicalCollectiveInt(snes,maxit,5); 2214c5eb9154SBarry Smith PetscValidLogicalCollectiveInt(snes,maxf,6); 2215c5eb9154SBarry Smith 2216ab54825eSJed Brown if (abstol != PETSC_DEFAULT) { 2217ab54825eSJed Brown if (abstol < 0.0) SETERRQ1(((PetscObject)snes)->comm,PETSC_ERR_ARG_OUTOFRANGE,"Absolute tolerance %G must be non-negative",abstol); 2218ab54825eSJed Brown snes->abstol = abstol; 2219ab54825eSJed Brown } 2220ab54825eSJed Brown if (rtol != PETSC_DEFAULT) { 2221ab54825eSJed Brown if (rtol < 0.0 || 1.0 <= rtol) SETERRQ1(((PetscObject)snes)->comm,PETSC_ERR_ARG_OUTOFRANGE,"Relative tolerance %G must be non-negative and less than 1.0",rtol); 2222ab54825eSJed Brown snes->rtol = rtol; 2223ab54825eSJed Brown } 2224ab54825eSJed Brown if (stol != PETSC_DEFAULT) { 2225ab54825eSJed Brown if (stol < 0.0) SETERRQ1(((PetscObject)snes)->comm,PETSC_ERR_ARG_OUTOFRANGE,"Step tolerance %G must be non-negative",stol); 2226ab54825eSJed Brown snes->xtol = stol; 2227ab54825eSJed Brown } 2228ab54825eSJed Brown if (maxit != PETSC_DEFAULT) { 2229ab54825eSJed Brown if (maxit < 0) SETERRQ1(((PetscObject)snes)->comm,PETSC_ERR_ARG_OUTOFRANGE,"Maximum number of iterations %D must be non-negative",maxit); 2230ab54825eSJed Brown snes->max_its = maxit; 2231ab54825eSJed Brown } 2232ab54825eSJed Brown if (maxf != PETSC_DEFAULT) { 2233ab54825eSJed Brown if (maxf < 0) SETERRQ1(((PetscObject)snes)->comm,PETSC_ERR_ARG_OUTOFRANGE,"Maximum number of function evaluations %D must be non-negative",maxf); 2234ab54825eSJed Brown snes->max_funcs = maxf; 2235ab54825eSJed Brown } 22363a40ed3dSBarry Smith PetscFunctionReturn(0); 22379b94acceSBarry Smith } 22389b94acceSBarry Smith 22394a2ae208SSatish Balay #undef __FUNCT__ 22404a2ae208SSatish Balay #define __FUNCT__ "SNESGetTolerances" 22419b94acceSBarry Smith /*@ 224233174efeSLois Curfman McInnes SNESGetTolerances - Gets various parameters used in convergence tests. 224333174efeSLois Curfman McInnes 2244c7afd0dbSLois Curfman McInnes Not Collective 2245c7afd0dbSLois Curfman McInnes 224633174efeSLois Curfman McInnes Input Parameters: 2247c7afd0dbSLois Curfman McInnes + snes - the SNES context 224885385478SLisandro Dalcin . atol - absolute convergence tolerance 224933174efeSLois Curfman McInnes . rtol - relative convergence tolerance 225033174efeSLois Curfman McInnes . stol - convergence tolerance in terms of the norm 225133174efeSLois Curfman McInnes of the change in the solution between steps 225233174efeSLois Curfman McInnes . maxit - maximum number of iterations 2253c7afd0dbSLois Curfman McInnes - maxf - maximum number of function evaluations 2254fee21e36SBarry Smith 225533174efeSLois Curfman McInnes Notes: 225633174efeSLois Curfman McInnes The user can specify PETSC_NULL for any parameter that is not needed. 225733174efeSLois Curfman McInnes 225836851e7fSLois Curfman McInnes Level: intermediate 225936851e7fSLois Curfman McInnes 226033174efeSLois Curfman McInnes .keywords: SNES, nonlinear, get, convergence, tolerances 226133174efeSLois Curfman McInnes 226233174efeSLois Curfman McInnes .seealso: SNESSetTolerances() 226333174efeSLois Curfman McInnes @*/ 22647087cfbeSBarry Smith PetscErrorCode SNESGetTolerances(SNES snes,PetscReal *atol,PetscReal *rtol,PetscReal *stol,PetscInt *maxit,PetscInt *maxf) 226533174efeSLois Curfman McInnes { 22663a40ed3dSBarry Smith PetscFunctionBegin; 22670700a824SBarry Smith PetscValidHeaderSpecific(snes,SNES_CLASSID,1); 226885385478SLisandro Dalcin if (atol) *atol = snes->abstol; 226933174efeSLois Curfman McInnes if (rtol) *rtol = snes->rtol; 227033174efeSLois Curfman McInnes if (stol) *stol = snes->xtol; 227133174efeSLois Curfman McInnes if (maxit) *maxit = snes->max_its; 227233174efeSLois Curfman McInnes if (maxf) *maxf = snes->max_funcs; 22733a40ed3dSBarry Smith PetscFunctionReturn(0); 227433174efeSLois Curfman McInnes } 227533174efeSLois Curfman McInnes 22764a2ae208SSatish Balay #undef __FUNCT__ 22774a2ae208SSatish Balay #define __FUNCT__ "SNESSetTrustRegionTolerance" 227833174efeSLois Curfman McInnes /*@ 22799b94acceSBarry Smith SNESSetTrustRegionTolerance - Sets the trust region parameter tolerance. 22809b94acceSBarry Smith 22813f9fe445SBarry Smith Logically Collective on SNES 2282fee21e36SBarry Smith 2283c7afd0dbSLois Curfman McInnes Input Parameters: 2284c7afd0dbSLois Curfman McInnes + snes - the SNES context 2285c7afd0dbSLois Curfman McInnes - tol - tolerance 2286c7afd0dbSLois Curfman McInnes 22879b94acceSBarry Smith Options Database Key: 2288c7afd0dbSLois Curfman McInnes . -snes_trtol <tol> - Sets tol 22899b94acceSBarry Smith 229036851e7fSLois Curfman McInnes Level: intermediate 229136851e7fSLois Curfman McInnes 22929b94acceSBarry Smith .keywords: SNES, nonlinear, set, trust region, tolerance 22939b94acceSBarry Smith 22942492ecdbSBarry Smith .seealso: SNESSetTolerances() 22959b94acceSBarry Smith @*/ 22967087cfbeSBarry Smith PetscErrorCode SNESSetTrustRegionTolerance(SNES snes,PetscReal tol) 22979b94acceSBarry Smith { 22983a40ed3dSBarry Smith PetscFunctionBegin; 22990700a824SBarry Smith PetscValidHeaderSpecific(snes,SNES_CLASSID,1); 2300c5eb9154SBarry Smith PetscValidLogicalCollectiveReal(snes,tol,2); 23019b94acceSBarry Smith snes->deltatol = tol; 23023a40ed3dSBarry Smith PetscFunctionReturn(0); 23039b94acceSBarry Smith } 23049b94acceSBarry Smith 2305df9fa365SBarry Smith /* 2306df9fa365SBarry Smith Duplicate the lg monitors for SNES from KSP; for some reason with 2307df9fa365SBarry Smith dynamic libraries things don't work under Sun4 if we just use 2308df9fa365SBarry Smith macros instead of functions 2309df9fa365SBarry Smith */ 23104a2ae208SSatish Balay #undef __FUNCT__ 2311a6570f20SBarry Smith #define __FUNCT__ "SNESMonitorLG" 23127087cfbeSBarry Smith PetscErrorCode SNESMonitorLG(SNES snes,PetscInt it,PetscReal norm,void *ctx) 2313ce1608b8SBarry Smith { 2314dfbe8321SBarry Smith PetscErrorCode ierr; 2315ce1608b8SBarry Smith 2316ce1608b8SBarry Smith PetscFunctionBegin; 23170700a824SBarry Smith PetscValidHeaderSpecific(snes,SNES_CLASSID,1); 2318a6570f20SBarry Smith ierr = KSPMonitorLG((KSP)snes,it,norm,ctx);CHKERRQ(ierr); 2319ce1608b8SBarry Smith PetscFunctionReturn(0); 2320ce1608b8SBarry Smith } 2321ce1608b8SBarry Smith 23224a2ae208SSatish Balay #undef __FUNCT__ 2323a6570f20SBarry Smith #define __FUNCT__ "SNESMonitorLGCreate" 23247087cfbeSBarry Smith PetscErrorCode SNESMonitorLGCreate(const char host[],const char label[],int x,int y,int m,int n,PetscDrawLG *draw) 2325df9fa365SBarry Smith { 2326dfbe8321SBarry Smith PetscErrorCode ierr; 2327df9fa365SBarry Smith 2328df9fa365SBarry Smith PetscFunctionBegin; 2329a6570f20SBarry Smith ierr = KSPMonitorLGCreate(host,label,x,y,m,n,draw);CHKERRQ(ierr); 2330df9fa365SBarry Smith PetscFunctionReturn(0); 2331df9fa365SBarry Smith } 2332df9fa365SBarry Smith 23334a2ae208SSatish Balay #undef __FUNCT__ 2334a6570f20SBarry Smith #define __FUNCT__ "SNESMonitorLGDestroy" 23356bf464f9SBarry Smith PetscErrorCode SNESMonitorLGDestroy(PetscDrawLG *draw) 2336df9fa365SBarry Smith { 2337dfbe8321SBarry Smith PetscErrorCode ierr; 2338df9fa365SBarry Smith 2339df9fa365SBarry Smith PetscFunctionBegin; 2340a6570f20SBarry Smith ierr = KSPMonitorLGDestroy(draw);CHKERRQ(ierr); 2341df9fa365SBarry Smith PetscFunctionReturn(0); 2342df9fa365SBarry Smith } 2343df9fa365SBarry Smith 23447087cfbeSBarry Smith extern PetscErrorCode SNESMonitorRange_Private(SNES,PetscInt,PetscReal*); 2345b271bb04SBarry Smith #undef __FUNCT__ 2346b271bb04SBarry Smith #define __FUNCT__ "SNESMonitorLGRange" 23477087cfbeSBarry Smith PetscErrorCode SNESMonitorLGRange(SNES snes,PetscInt n,PetscReal rnorm,void *monctx) 2348b271bb04SBarry Smith { 2349b271bb04SBarry Smith PetscDrawLG lg; 2350b271bb04SBarry Smith PetscErrorCode ierr; 2351b271bb04SBarry Smith PetscReal x,y,per; 2352b271bb04SBarry Smith PetscViewer v = (PetscViewer)monctx; 2353b271bb04SBarry Smith static PetscReal prev; /* should be in the context */ 2354b271bb04SBarry Smith PetscDraw draw; 2355b271bb04SBarry Smith PetscFunctionBegin; 2356b271bb04SBarry Smith if (!monctx) { 2357b271bb04SBarry Smith MPI_Comm comm; 2358b271bb04SBarry Smith 2359b271bb04SBarry Smith ierr = PetscObjectGetComm((PetscObject)snes,&comm);CHKERRQ(ierr); 2360b271bb04SBarry Smith v = PETSC_VIEWER_DRAW_(comm); 2361b271bb04SBarry Smith } 2362b271bb04SBarry Smith ierr = PetscViewerDrawGetDrawLG(v,0,&lg);CHKERRQ(ierr); 2363b271bb04SBarry Smith if (!n) {ierr = PetscDrawLGReset(lg);CHKERRQ(ierr);} 2364b271bb04SBarry Smith ierr = PetscDrawLGGetDraw(lg,&draw);CHKERRQ(ierr); 2365b271bb04SBarry Smith ierr = PetscDrawSetTitle(draw,"Residual norm");CHKERRQ(ierr); 2366b271bb04SBarry Smith x = (PetscReal) n; 2367b271bb04SBarry Smith if (rnorm > 0.0) y = log10(rnorm); else y = -15.0; 2368b271bb04SBarry Smith ierr = PetscDrawLGAddPoint(lg,&x,&y);CHKERRQ(ierr); 2369b271bb04SBarry Smith if (n < 20 || !(n % 5)) { 2370b271bb04SBarry Smith ierr = PetscDrawLGDraw(lg);CHKERRQ(ierr); 2371b271bb04SBarry Smith } 2372b271bb04SBarry Smith 2373b271bb04SBarry Smith ierr = PetscViewerDrawGetDrawLG(v,1,&lg);CHKERRQ(ierr); 2374b271bb04SBarry Smith if (!n) {ierr = PetscDrawLGReset(lg);CHKERRQ(ierr);} 2375b271bb04SBarry Smith ierr = PetscDrawLGGetDraw(lg,&draw);CHKERRQ(ierr); 2376b271bb04SBarry Smith ierr = PetscDrawSetTitle(draw,"% elemts > .2*max elemt");CHKERRQ(ierr); 2377b271bb04SBarry Smith ierr = SNESMonitorRange_Private(snes,n,&per);CHKERRQ(ierr); 2378b271bb04SBarry Smith x = (PetscReal) n; 2379b271bb04SBarry Smith y = 100.0*per; 2380b271bb04SBarry Smith ierr = PetscDrawLGAddPoint(lg,&x,&y);CHKERRQ(ierr); 2381b271bb04SBarry Smith if (n < 20 || !(n % 5)) { 2382b271bb04SBarry Smith ierr = PetscDrawLGDraw(lg);CHKERRQ(ierr); 2383b271bb04SBarry Smith } 2384b271bb04SBarry Smith 2385b271bb04SBarry Smith ierr = PetscViewerDrawGetDrawLG(v,2,&lg);CHKERRQ(ierr); 2386b271bb04SBarry Smith if (!n) {prev = rnorm;ierr = PetscDrawLGReset(lg);CHKERRQ(ierr);} 2387b271bb04SBarry Smith ierr = PetscDrawLGGetDraw(lg,&draw);CHKERRQ(ierr); 2388b271bb04SBarry Smith ierr = PetscDrawSetTitle(draw,"(norm -oldnorm)/oldnorm");CHKERRQ(ierr); 2389b271bb04SBarry Smith x = (PetscReal) n; 2390b271bb04SBarry Smith y = (prev - rnorm)/prev; 2391b271bb04SBarry Smith ierr = PetscDrawLGAddPoint(lg,&x,&y);CHKERRQ(ierr); 2392b271bb04SBarry Smith if (n < 20 || !(n % 5)) { 2393b271bb04SBarry Smith ierr = PetscDrawLGDraw(lg);CHKERRQ(ierr); 2394b271bb04SBarry Smith } 2395b271bb04SBarry Smith 2396b271bb04SBarry Smith ierr = PetscViewerDrawGetDrawLG(v,3,&lg);CHKERRQ(ierr); 2397b271bb04SBarry Smith if (!n) {ierr = PetscDrawLGReset(lg);CHKERRQ(ierr);} 2398b271bb04SBarry Smith ierr = PetscDrawLGGetDraw(lg,&draw);CHKERRQ(ierr); 2399b271bb04SBarry Smith ierr = PetscDrawSetTitle(draw,"(norm -oldnorm)/oldnorm*(% > .2 max)");CHKERRQ(ierr); 2400b271bb04SBarry Smith x = (PetscReal) n; 2401b271bb04SBarry Smith y = (prev - rnorm)/(prev*per); 2402b271bb04SBarry Smith if (n > 2) { /*skip initial crazy value */ 2403b271bb04SBarry Smith ierr = PetscDrawLGAddPoint(lg,&x,&y);CHKERRQ(ierr); 2404b271bb04SBarry Smith } 2405b271bb04SBarry Smith if (n < 20 || !(n % 5)) { 2406b271bb04SBarry Smith ierr = PetscDrawLGDraw(lg);CHKERRQ(ierr); 2407b271bb04SBarry Smith } 2408b271bb04SBarry Smith prev = rnorm; 2409b271bb04SBarry Smith PetscFunctionReturn(0); 2410b271bb04SBarry Smith } 2411b271bb04SBarry Smith 2412b271bb04SBarry Smith #undef __FUNCT__ 2413b271bb04SBarry Smith #define __FUNCT__ "SNESMonitorLGRangeCreate" 24147087cfbeSBarry Smith PetscErrorCode SNESMonitorLGRangeCreate(const char host[],const char label[],int x,int y,int m,int n,PetscDrawLG *draw) 2415b271bb04SBarry Smith { 2416b271bb04SBarry Smith PetscErrorCode ierr; 2417b271bb04SBarry Smith 2418b271bb04SBarry Smith PetscFunctionBegin; 2419b271bb04SBarry Smith ierr = KSPMonitorLGCreate(host,label,x,y,m,n,draw);CHKERRQ(ierr); 2420b271bb04SBarry Smith PetscFunctionReturn(0); 2421b271bb04SBarry Smith } 2422b271bb04SBarry Smith 2423b271bb04SBarry Smith #undef __FUNCT__ 2424b271bb04SBarry Smith #define __FUNCT__ "SNESMonitorLGRangeDestroy" 24256bf464f9SBarry Smith PetscErrorCode SNESMonitorLGRangeDestroy(PetscDrawLG *draw) 2426b271bb04SBarry Smith { 2427b271bb04SBarry Smith PetscErrorCode ierr; 2428b271bb04SBarry Smith 2429b271bb04SBarry Smith PetscFunctionBegin; 2430b271bb04SBarry Smith ierr = KSPMonitorLGDestroy(draw);CHKERRQ(ierr); 2431b271bb04SBarry Smith PetscFunctionReturn(0); 2432b271bb04SBarry Smith } 2433b271bb04SBarry Smith 24347a03ce2fSLisandro Dalcin #undef __FUNCT__ 24357a03ce2fSLisandro Dalcin #define __FUNCT__ "SNESMonitor" 2436228d79bcSJed Brown /*@ 2437228d79bcSJed Brown SNESMonitor - runs the user provided monitor routines, if they exist 2438228d79bcSJed Brown 2439228d79bcSJed Brown Collective on SNES 2440228d79bcSJed Brown 2441228d79bcSJed Brown Input Parameters: 2442228d79bcSJed Brown + snes - nonlinear solver context obtained from SNESCreate() 2443228d79bcSJed Brown . iter - iteration number 2444228d79bcSJed Brown - rnorm - relative norm of the residual 2445228d79bcSJed Brown 2446228d79bcSJed Brown Notes: 2447228d79bcSJed Brown This routine is called by the SNES implementations. 2448228d79bcSJed Brown It does not typically need to be called by the user. 2449228d79bcSJed Brown 2450228d79bcSJed Brown Level: developer 2451228d79bcSJed Brown 2452228d79bcSJed Brown .seealso: SNESMonitorSet() 2453228d79bcSJed Brown @*/ 24547a03ce2fSLisandro Dalcin PetscErrorCode SNESMonitor(SNES snes,PetscInt iter,PetscReal rnorm) 24557a03ce2fSLisandro Dalcin { 24567a03ce2fSLisandro Dalcin PetscErrorCode ierr; 24577a03ce2fSLisandro Dalcin PetscInt i,n = snes->numbermonitors; 24587a03ce2fSLisandro Dalcin 24597a03ce2fSLisandro Dalcin PetscFunctionBegin; 24607a03ce2fSLisandro Dalcin for (i=0; i<n; i++) { 24617a03ce2fSLisandro Dalcin ierr = (*snes->monitor[i])(snes,iter,rnorm,snes->monitorcontext[i]);CHKERRQ(ierr); 24627a03ce2fSLisandro Dalcin } 24637a03ce2fSLisandro Dalcin PetscFunctionReturn(0); 24647a03ce2fSLisandro Dalcin } 24657a03ce2fSLisandro Dalcin 24669b94acceSBarry Smith /* ------------ Routines to set performance monitoring options ----------- */ 24679b94acceSBarry Smith 24684a2ae208SSatish Balay #undef __FUNCT__ 2469a6570f20SBarry Smith #define __FUNCT__ "SNESMonitorSet" 24709b94acceSBarry Smith /*@C 2471a6570f20SBarry Smith SNESMonitorSet - Sets an ADDITIONAL function that is to be used at every 24729b94acceSBarry Smith iteration of the nonlinear solver to display the iteration's 24739b94acceSBarry Smith progress. 24749b94acceSBarry Smith 24753f9fe445SBarry Smith Logically Collective on SNES 2476fee21e36SBarry Smith 2477c7afd0dbSLois Curfman McInnes Input Parameters: 2478c7afd0dbSLois Curfman McInnes + snes - the SNES context 2479c7afd0dbSLois Curfman McInnes . func - monitoring routine 2480b8a78c4aSBarry Smith . mctx - [optional] user-defined context for private data for the 2481e8105e01SRichard Katz monitor routine (use PETSC_NULL if no context is desired) 2482b3006f0bSLois Curfman McInnes - monitordestroy - [optional] routine that frees monitor context 2483b3006f0bSLois Curfman McInnes (may be PETSC_NULL) 24849b94acceSBarry Smith 2485c7afd0dbSLois Curfman McInnes Calling sequence of func: 2486a7cc72afSBarry Smith $ int func(SNES snes,PetscInt its, PetscReal norm,void *mctx) 2487c7afd0dbSLois Curfman McInnes 2488c7afd0dbSLois Curfman McInnes + snes - the SNES context 2489c7afd0dbSLois Curfman McInnes . its - iteration number 2490c7afd0dbSLois Curfman McInnes . norm - 2-norm function value (may be estimated) 249140a0c1c6SLois Curfman McInnes - mctx - [optional] monitoring context 24929b94acceSBarry Smith 24939665c990SLois Curfman McInnes Options Database Keys: 2494a6570f20SBarry Smith + -snes_monitor - sets SNESMonitorDefault() 2495a6570f20SBarry Smith . -snes_monitor_draw - sets line graph monitor, 2496a6570f20SBarry Smith uses SNESMonitorLGCreate() 2497cca6129bSJed Brown - -snes_monitor_cancel - cancels all monitors that have 2498c7afd0dbSLois Curfman McInnes been hardwired into a code by 2499a6570f20SBarry Smith calls to SNESMonitorSet(), but 2500c7afd0dbSLois Curfman McInnes does not cancel those set via 2501c7afd0dbSLois Curfman McInnes the options database. 25029665c990SLois Curfman McInnes 2503639f9d9dSBarry Smith Notes: 25046bc08f3fSLois Curfman McInnes Several different monitoring routines may be set by calling 2505a6570f20SBarry Smith SNESMonitorSet() multiple times; all will be called in the 25066bc08f3fSLois Curfman McInnes order in which they were set. 2507639f9d9dSBarry Smith 2508025f1a04SBarry Smith Fortran notes: Only a single monitor function can be set for each SNES object 2509025f1a04SBarry Smith 251036851e7fSLois Curfman McInnes Level: intermediate 251136851e7fSLois Curfman McInnes 25129b94acceSBarry Smith .keywords: SNES, nonlinear, set, monitor 25139b94acceSBarry Smith 2514a6570f20SBarry Smith .seealso: SNESMonitorDefault(), SNESMonitorCancel() 25159b94acceSBarry Smith @*/ 2516c2efdce3SBarry Smith PetscErrorCode SNESMonitorSet(SNES snes,PetscErrorCode (*monitor)(SNES,PetscInt,PetscReal,void*),void *mctx,PetscErrorCode (*monitordestroy)(void**)) 25179b94acceSBarry Smith { 2518b90d0a6eSBarry Smith PetscInt i; 2519649052a6SBarry Smith PetscErrorCode ierr; 2520b90d0a6eSBarry Smith 25213a40ed3dSBarry Smith PetscFunctionBegin; 25220700a824SBarry Smith PetscValidHeaderSpecific(snes,SNES_CLASSID,1); 252317186662SBarry Smith if (snes->numbermonitors >= MAXSNESMONITORS) SETERRQ(PETSC_COMM_SELF,PETSC_ERR_ARG_OUTOFRANGE,"Too many monitors set"); 2524b90d0a6eSBarry Smith for (i=0; i<snes->numbermonitors;i++) { 2525649052a6SBarry Smith if (monitor == snes->monitor[i] && monitordestroy == snes->monitordestroy[i] && mctx == snes->monitorcontext[i]) { 2526649052a6SBarry Smith if (monitordestroy) { 2527c2efdce3SBarry Smith ierr = (*monitordestroy)(&mctx);CHKERRQ(ierr); 2528649052a6SBarry Smith } 2529b90d0a6eSBarry Smith PetscFunctionReturn(0); 2530b90d0a6eSBarry Smith } 2531b90d0a6eSBarry Smith } 2532b90d0a6eSBarry Smith snes->monitor[snes->numbermonitors] = monitor; 2533b8a78c4aSBarry Smith snes->monitordestroy[snes->numbermonitors] = monitordestroy; 2534639f9d9dSBarry Smith snes->monitorcontext[snes->numbermonitors++] = (void*)mctx; 25353a40ed3dSBarry Smith PetscFunctionReturn(0); 25369b94acceSBarry Smith } 25379b94acceSBarry Smith 25384a2ae208SSatish Balay #undef __FUNCT__ 2539a6570f20SBarry Smith #define __FUNCT__ "SNESMonitorCancel" 25405cd90555SBarry Smith /*@C 2541a6570f20SBarry Smith SNESMonitorCancel - Clears all the monitor functions for a SNES object. 25425cd90555SBarry Smith 25433f9fe445SBarry Smith Logically Collective on SNES 2544c7afd0dbSLois Curfman McInnes 25455cd90555SBarry Smith Input Parameters: 25465cd90555SBarry Smith . snes - the SNES context 25475cd90555SBarry Smith 25481a480d89SAdministrator Options Database Key: 2549a6570f20SBarry Smith . -snes_monitor_cancel - cancels all monitors that have been hardwired 2550a6570f20SBarry Smith into a code by calls to SNESMonitorSet(), but does not cancel those 2551c7afd0dbSLois Curfman McInnes set via the options database 25525cd90555SBarry Smith 25535cd90555SBarry Smith Notes: 25545cd90555SBarry Smith There is no way to clear one specific monitor from a SNES object. 25555cd90555SBarry Smith 255636851e7fSLois Curfman McInnes Level: intermediate 255736851e7fSLois Curfman McInnes 25585cd90555SBarry Smith .keywords: SNES, nonlinear, set, monitor 25595cd90555SBarry Smith 2560a6570f20SBarry Smith .seealso: SNESMonitorDefault(), SNESMonitorSet() 25615cd90555SBarry Smith @*/ 25627087cfbeSBarry Smith PetscErrorCode SNESMonitorCancel(SNES snes) 25635cd90555SBarry Smith { 2564d952e501SBarry Smith PetscErrorCode ierr; 2565d952e501SBarry Smith PetscInt i; 2566d952e501SBarry Smith 25675cd90555SBarry Smith PetscFunctionBegin; 25680700a824SBarry Smith PetscValidHeaderSpecific(snes,SNES_CLASSID,1); 2569d952e501SBarry Smith for (i=0; i<snes->numbermonitors; i++) { 2570d952e501SBarry Smith if (snes->monitordestroy[i]) { 25713c4aec1bSBarry Smith ierr = (*snes->monitordestroy[i])(&snes->monitorcontext[i]);CHKERRQ(ierr); 2572d952e501SBarry Smith } 2573d952e501SBarry Smith } 25745cd90555SBarry Smith snes->numbermonitors = 0; 25755cd90555SBarry Smith PetscFunctionReturn(0); 25765cd90555SBarry Smith } 25775cd90555SBarry Smith 25784a2ae208SSatish Balay #undef __FUNCT__ 25794a2ae208SSatish Balay #define __FUNCT__ "SNESSetConvergenceTest" 25809b94acceSBarry Smith /*@C 25819b94acceSBarry Smith SNESSetConvergenceTest - Sets the function that is to be used 25829b94acceSBarry Smith to test for convergence of the nonlinear iterative solution. 25839b94acceSBarry Smith 25843f9fe445SBarry Smith Logically Collective on SNES 2585fee21e36SBarry Smith 2586c7afd0dbSLois Curfman McInnes Input Parameters: 2587c7afd0dbSLois Curfman McInnes + snes - the SNES context 2588c7afd0dbSLois Curfman McInnes . func - routine to test for convergence 25897f7931b9SBarry Smith . cctx - [optional] context for private data for the convergence routine (may be PETSC_NULL) 25907f7931b9SBarry Smith - destroy - [optional] destructor for the context (may be PETSC_NULL; PETSC_NULL_FUNCTION in Fortran) 25919b94acceSBarry Smith 2592c7afd0dbSLois Curfman McInnes Calling sequence of func: 259306ee9f85SBarry Smith $ PetscErrorCode func (SNES snes,PetscInt it,PetscReal xnorm,PetscReal gnorm,PetscReal f,SNESConvergedReason *reason,void *cctx) 2594c7afd0dbSLois Curfman McInnes 2595c7afd0dbSLois Curfman McInnes + snes - the SNES context 259606ee9f85SBarry Smith . it - current iteration (0 is the first and is before any Newton step) 2597c7afd0dbSLois Curfman McInnes . cctx - [optional] convergence context 2598184914b5SBarry Smith . reason - reason for convergence/divergence 2599c7afd0dbSLois Curfman McInnes . xnorm - 2-norm of current iterate 26004b27c08aSLois Curfman McInnes . gnorm - 2-norm of current step 26014b27c08aSLois Curfman McInnes - f - 2-norm of function 26029b94acceSBarry Smith 260336851e7fSLois Curfman McInnes Level: advanced 260436851e7fSLois Curfman McInnes 26059b94acceSBarry Smith .keywords: SNES, nonlinear, set, convergence, test 26069b94acceSBarry Smith 260785385478SLisandro Dalcin .seealso: SNESDefaultConverged(), SNESSkipConverged() 26089b94acceSBarry Smith @*/ 26097087cfbeSBarry Smith PetscErrorCode SNESSetConvergenceTest(SNES snes,PetscErrorCode (*func)(SNES,PetscInt,PetscReal,PetscReal,PetscReal,SNESConvergedReason*,void*),void *cctx,PetscErrorCode (*destroy)(void*)) 26109b94acceSBarry Smith { 26117f7931b9SBarry Smith PetscErrorCode ierr; 26127f7931b9SBarry Smith 26133a40ed3dSBarry Smith PetscFunctionBegin; 26140700a824SBarry Smith PetscValidHeaderSpecific(snes,SNES_CLASSID,1); 261585385478SLisandro Dalcin if (!func) func = SNESSkipConverged; 26167f7931b9SBarry Smith if (snes->ops->convergeddestroy) { 26177f7931b9SBarry Smith ierr = (*snes->ops->convergeddestroy)(snes->cnvP);CHKERRQ(ierr); 26187f7931b9SBarry Smith } 261985385478SLisandro Dalcin snes->ops->converged = func; 26207f7931b9SBarry Smith snes->ops->convergeddestroy = destroy; 262185385478SLisandro Dalcin snes->cnvP = cctx; 26223a40ed3dSBarry Smith PetscFunctionReturn(0); 26239b94acceSBarry Smith } 26249b94acceSBarry Smith 26254a2ae208SSatish Balay #undef __FUNCT__ 26264a2ae208SSatish Balay #define __FUNCT__ "SNESGetConvergedReason" 262752baeb72SSatish Balay /*@ 2628184914b5SBarry Smith SNESGetConvergedReason - Gets the reason the SNES iteration was stopped. 2629184914b5SBarry Smith 2630184914b5SBarry Smith Not Collective 2631184914b5SBarry Smith 2632184914b5SBarry Smith Input Parameter: 2633184914b5SBarry Smith . snes - the SNES context 2634184914b5SBarry Smith 2635184914b5SBarry Smith Output Parameter: 26364d0a8057SBarry Smith . reason - negative value indicates diverged, positive value converged, see SNESConvergedReason or the 2637184914b5SBarry Smith manual pages for the individual convergence tests for complete lists 2638184914b5SBarry Smith 2639184914b5SBarry Smith Level: intermediate 2640184914b5SBarry Smith 2641184914b5SBarry Smith Notes: Can only be called after the call the SNESSolve() is complete. 2642184914b5SBarry Smith 2643184914b5SBarry Smith .keywords: SNES, nonlinear, set, convergence, test 2644184914b5SBarry Smith 264585385478SLisandro Dalcin .seealso: SNESSetConvergenceTest(), SNESConvergedReason 2646184914b5SBarry Smith @*/ 26477087cfbeSBarry Smith PetscErrorCode SNESGetConvergedReason(SNES snes,SNESConvergedReason *reason) 2648184914b5SBarry Smith { 2649184914b5SBarry Smith PetscFunctionBegin; 26500700a824SBarry Smith PetscValidHeaderSpecific(snes,SNES_CLASSID,1); 26514482741eSBarry Smith PetscValidPointer(reason,2); 2652184914b5SBarry Smith *reason = snes->reason; 2653184914b5SBarry Smith PetscFunctionReturn(0); 2654184914b5SBarry Smith } 2655184914b5SBarry Smith 26564a2ae208SSatish Balay #undef __FUNCT__ 26574a2ae208SSatish Balay #define __FUNCT__ "SNESSetConvergenceHistory" 2658c9005455SLois Curfman McInnes /*@ 2659c9005455SLois Curfman McInnes SNESSetConvergenceHistory - Sets the array used to hold the convergence history. 2660c9005455SLois Curfman McInnes 26613f9fe445SBarry Smith Logically Collective on SNES 2662fee21e36SBarry Smith 2663c7afd0dbSLois Curfman McInnes Input Parameters: 2664c7afd0dbSLois Curfman McInnes + snes - iterative context obtained from SNESCreate() 26658c7482ecSBarry Smith . a - array to hold history, this array will contain the function norms computed at each step 2666cd5578b5SBarry Smith . its - integer array holds the number of linear iterations for each solve. 2667758f92a0SBarry Smith . na - size of a and its 266864731454SLois Curfman McInnes - reset - PETSC_TRUE indicates each new nonlinear solve resets the history counter to zero, 2669758f92a0SBarry Smith else it continues storing new values for new nonlinear solves after the old ones 2670c7afd0dbSLois Curfman McInnes 2671308dcc3eSBarry Smith Notes: 2672308dcc3eSBarry Smith If 'a' and 'its' are PETSC_NULL then space is allocated for the history. If 'na' PETSC_DECIDE or PETSC_DEFAULT then a 2673308dcc3eSBarry Smith default array of length 10000 is allocated. 2674308dcc3eSBarry Smith 2675c9005455SLois Curfman McInnes This routine is useful, e.g., when running a code for purposes 2676c9005455SLois Curfman McInnes of accurate performance monitoring, when no I/O should be done 2677c9005455SLois Curfman McInnes during the section of code that is being timed. 2678c9005455SLois Curfman McInnes 267936851e7fSLois Curfman McInnes Level: intermediate 268036851e7fSLois Curfman McInnes 2681c9005455SLois Curfman McInnes .keywords: SNES, set, convergence, history 2682758f92a0SBarry Smith 268308405cd6SLois Curfman McInnes .seealso: SNESGetConvergenceHistory() 2684758f92a0SBarry Smith 2685c9005455SLois Curfman McInnes @*/ 26867087cfbeSBarry Smith PetscErrorCode SNESSetConvergenceHistory(SNES snes,PetscReal a[],PetscInt its[],PetscInt na,PetscBool reset) 2687c9005455SLois Curfman McInnes { 2688308dcc3eSBarry Smith PetscErrorCode ierr; 2689308dcc3eSBarry Smith 26903a40ed3dSBarry Smith PetscFunctionBegin; 26910700a824SBarry Smith PetscValidHeaderSpecific(snes,SNES_CLASSID,1); 26924482741eSBarry Smith if (na) PetscValidScalarPointer(a,2); 2693a562a398SLisandro Dalcin if (its) PetscValidIntPointer(its,3); 2694308dcc3eSBarry Smith if (na == PETSC_DECIDE || na == PETSC_DEFAULT || !a) { 2695308dcc3eSBarry Smith if (na == PETSC_DECIDE || na == PETSC_DEFAULT) na = 1000; 2696308dcc3eSBarry Smith ierr = PetscMalloc(na*sizeof(PetscReal),&a);CHKERRQ(ierr); 2697308dcc3eSBarry Smith ierr = PetscMalloc(na*sizeof(PetscInt),&its);CHKERRQ(ierr); 2698308dcc3eSBarry Smith snes->conv_malloc = PETSC_TRUE; 2699308dcc3eSBarry Smith } 2700c9005455SLois Curfman McInnes snes->conv_hist = a; 2701758f92a0SBarry Smith snes->conv_hist_its = its; 2702758f92a0SBarry Smith snes->conv_hist_max = na; 2703a12bc48fSLisandro Dalcin snes->conv_hist_len = 0; 2704758f92a0SBarry Smith snes->conv_hist_reset = reset; 2705758f92a0SBarry Smith PetscFunctionReturn(0); 2706758f92a0SBarry Smith } 2707758f92a0SBarry Smith 2708308dcc3eSBarry Smith #if defined(PETSC_HAVE_MATLAB_ENGINE) 2709c6db04a5SJed Brown #include <engine.h> /* MATLAB include file */ 2710c6db04a5SJed Brown #include <mex.h> /* MATLAB include file */ 2711308dcc3eSBarry Smith EXTERN_C_BEGIN 2712308dcc3eSBarry Smith #undef __FUNCT__ 2713308dcc3eSBarry Smith #define __FUNCT__ "SNESGetConvergenceHistoryMatlab" 2714308dcc3eSBarry Smith mxArray *SNESGetConvergenceHistoryMatlab(SNES snes) 2715308dcc3eSBarry Smith { 2716308dcc3eSBarry Smith mxArray *mat; 2717308dcc3eSBarry Smith PetscInt i; 2718308dcc3eSBarry Smith PetscReal *ar; 2719308dcc3eSBarry Smith 2720308dcc3eSBarry Smith PetscFunctionBegin; 2721308dcc3eSBarry Smith mat = mxCreateDoubleMatrix(snes->conv_hist_len,1,mxREAL); 2722308dcc3eSBarry Smith ar = (PetscReal*) mxGetData(mat); 2723308dcc3eSBarry Smith for (i=0; i<snes->conv_hist_len; i++) { 2724308dcc3eSBarry Smith ar[i] = snes->conv_hist[i]; 2725308dcc3eSBarry Smith } 2726308dcc3eSBarry Smith PetscFunctionReturn(mat); 2727308dcc3eSBarry Smith } 2728308dcc3eSBarry Smith EXTERN_C_END 2729308dcc3eSBarry Smith #endif 2730308dcc3eSBarry Smith 2731308dcc3eSBarry Smith 27324a2ae208SSatish Balay #undef __FUNCT__ 27334a2ae208SSatish Balay #define __FUNCT__ "SNESGetConvergenceHistory" 27340c4c9dddSBarry Smith /*@C 2735758f92a0SBarry Smith SNESGetConvergenceHistory - Gets the array used to hold the convergence history. 2736758f92a0SBarry Smith 27373f9fe445SBarry Smith Not Collective 2738758f92a0SBarry Smith 2739758f92a0SBarry Smith Input Parameter: 2740758f92a0SBarry Smith . snes - iterative context obtained from SNESCreate() 2741758f92a0SBarry Smith 2742758f92a0SBarry Smith Output Parameters: 2743758f92a0SBarry Smith . a - array to hold history 2744758f92a0SBarry Smith . its - integer array holds the number of linear iterations (or 2745758f92a0SBarry Smith negative if not converged) for each solve. 2746758f92a0SBarry Smith - na - size of a and its 2747758f92a0SBarry Smith 2748758f92a0SBarry Smith Notes: 2749758f92a0SBarry Smith The calling sequence for this routine in Fortran is 2750758f92a0SBarry Smith $ call SNESGetConvergenceHistory(SNES snes, integer na, integer ierr) 2751758f92a0SBarry Smith 2752758f92a0SBarry Smith This routine is useful, e.g., when running a code for purposes 2753758f92a0SBarry Smith of accurate performance monitoring, when no I/O should be done 2754758f92a0SBarry Smith during the section of code that is being timed. 2755758f92a0SBarry Smith 2756758f92a0SBarry Smith Level: intermediate 2757758f92a0SBarry Smith 2758758f92a0SBarry Smith .keywords: SNES, get, convergence, history 2759758f92a0SBarry Smith 2760758f92a0SBarry Smith .seealso: SNESSetConvergencHistory() 2761758f92a0SBarry Smith 2762758f92a0SBarry Smith @*/ 27637087cfbeSBarry Smith PetscErrorCode SNESGetConvergenceHistory(SNES snes,PetscReal *a[],PetscInt *its[],PetscInt *na) 2764758f92a0SBarry Smith { 2765758f92a0SBarry Smith PetscFunctionBegin; 27660700a824SBarry Smith PetscValidHeaderSpecific(snes,SNES_CLASSID,1); 2767758f92a0SBarry Smith if (a) *a = snes->conv_hist; 2768758f92a0SBarry Smith if (its) *its = snes->conv_hist_its; 2769758f92a0SBarry Smith if (na) *na = snes->conv_hist_len; 27703a40ed3dSBarry Smith PetscFunctionReturn(0); 2771c9005455SLois Curfman McInnes } 2772c9005455SLois Curfman McInnes 2773e74ef692SMatthew Knepley #undef __FUNCT__ 2774e74ef692SMatthew Knepley #define __FUNCT__ "SNESSetUpdate" 2775ac226902SBarry Smith /*@C 277676b2cf59SMatthew Knepley SNESSetUpdate - Sets the general-purpose update function called 2777eec8f646SJed Brown at the beginning of every iteration of the nonlinear solve. Specifically 27787e4bb74cSBarry Smith it is called just before the Jacobian is "evaluated". 277976b2cf59SMatthew Knepley 27803f9fe445SBarry Smith Logically Collective on SNES 278176b2cf59SMatthew Knepley 278276b2cf59SMatthew Knepley Input Parameters: 278376b2cf59SMatthew Knepley . snes - The nonlinear solver context 278476b2cf59SMatthew Knepley . func - The function 278576b2cf59SMatthew Knepley 278676b2cf59SMatthew Knepley Calling sequence of func: 2787b5d30489SBarry Smith . func (SNES snes, PetscInt step); 278876b2cf59SMatthew Knepley 278976b2cf59SMatthew Knepley . step - The current step of the iteration 279076b2cf59SMatthew Knepley 2791fe97e370SBarry Smith Level: advanced 2792fe97e370SBarry Smith 2793fe97e370SBarry Smith Note: This is NOT what one uses to update the ghost points before a function evaluation, that should be done at the beginning of your FormFunction() 2794fe97e370SBarry Smith This is not used by most users. 279576b2cf59SMatthew Knepley 279676b2cf59SMatthew Knepley .keywords: SNES, update 2797b5d30489SBarry Smith 279885385478SLisandro Dalcin .seealso SNESDefaultUpdate(), SNESSetJacobian(), SNESSolve() 279976b2cf59SMatthew Knepley @*/ 28007087cfbeSBarry Smith PetscErrorCode SNESSetUpdate(SNES snes, PetscErrorCode (*func)(SNES, PetscInt)) 280176b2cf59SMatthew Knepley { 280276b2cf59SMatthew Knepley PetscFunctionBegin; 28030700a824SBarry Smith PetscValidHeaderSpecific(snes, SNES_CLASSID,1); 2804e7788613SBarry Smith snes->ops->update = func; 280576b2cf59SMatthew Knepley PetscFunctionReturn(0); 280676b2cf59SMatthew Knepley } 280776b2cf59SMatthew Knepley 2808e74ef692SMatthew Knepley #undef __FUNCT__ 2809e74ef692SMatthew Knepley #define __FUNCT__ "SNESDefaultUpdate" 281076b2cf59SMatthew Knepley /*@ 281176b2cf59SMatthew Knepley SNESDefaultUpdate - The default update function which does nothing. 281276b2cf59SMatthew Knepley 281376b2cf59SMatthew Knepley Not collective 281476b2cf59SMatthew Knepley 281576b2cf59SMatthew Knepley Input Parameters: 281676b2cf59SMatthew Knepley . snes - The nonlinear solver context 281776b2cf59SMatthew Knepley . step - The current step of the iteration 281876b2cf59SMatthew Knepley 2819205452f4SMatthew Knepley Level: intermediate 2820205452f4SMatthew Knepley 282176b2cf59SMatthew Knepley .keywords: SNES, update 2822a6570f20SBarry Smith .seealso SNESSetUpdate(), SNESDefaultRhsBC(), SNESDefaultShortolutionBC() 282376b2cf59SMatthew Knepley @*/ 28247087cfbeSBarry Smith PetscErrorCode SNESDefaultUpdate(SNES snes, PetscInt step) 282576b2cf59SMatthew Knepley { 282676b2cf59SMatthew Knepley PetscFunctionBegin; 282776b2cf59SMatthew Knepley PetscFunctionReturn(0); 282876b2cf59SMatthew Knepley } 282976b2cf59SMatthew Knepley 28304a2ae208SSatish Balay #undef __FUNCT__ 28314a2ae208SSatish Balay #define __FUNCT__ "SNESScaleStep_Private" 28329b94acceSBarry Smith /* 28339b94acceSBarry Smith SNESScaleStep_Private - Scales a step so that its length is less than the 28349b94acceSBarry Smith positive parameter delta. 28359b94acceSBarry Smith 28369b94acceSBarry Smith Input Parameters: 2837c7afd0dbSLois Curfman McInnes + snes - the SNES context 28389b94acceSBarry Smith . y - approximate solution of linear system 28399b94acceSBarry Smith . fnorm - 2-norm of current function 2840c7afd0dbSLois Curfman McInnes - delta - trust region size 28419b94acceSBarry Smith 28429b94acceSBarry Smith Output Parameters: 2843c7afd0dbSLois Curfman McInnes + gpnorm - predicted function norm at the new point, assuming local 28449b94acceSBarry Smith linearization. The value is zero if the step lies within the trust 28459b94acceSBarry Smith region, and exceeds zero otherwise. 2846c7afd0dbSLois Curfman McInnes - ynorm - 2-norm of the step 28479b94acceSBarry Smith 28489b94acceSBarry Smith Note: 28494b27c08aSLois Curfman McInnes For non-trust region methods such as SNESLS, the parameter delta 28509b94acceSBarry Smith is set to be the maximum allowable step size. 28519b94acceSBarry Smith 28529b94acceSBarry Smith .keywords: SNES, nonlinear, scale, step 28539b94acceSBarry Smith */ 2854dfbe8321SBarry Smith PetscErrorCode SNESScaleStep_Private(SNES snes,Vec y,PetscReal *fnorm,PetscReal *delta,PetscReal *gpnorm,PetscReal *ynorm) 28559b94acceSBarry Smith { 2856064f8208SBarry Smith PetscReal nrm; 2857ea709b57SSatish Balay PetscScalar cnorm; 2858dfbe8321SBarry Smith PetscErrorCode ierr; 28593a40ed3dSBarry Smith 28603a40ed3dSBarry Smith PetscFunctionBegin; 28610700a824SBarry Smith PetscValidHeaderSpecific(snes,SNES_CLASSID,1); 28620700a824SBarry Smith PetscValidHeaderSpecific(y,VEC_CLASSID,2); 2863c9780b6fSBarry Smith PetscCheckSameComm(snes,1,y,2); 2864184914b5SBarry Smith 2865064f8208SBarry Smith ierr = VecNorm(y,NORM_2,&nrm);CHKERRQ(ierr); 2866064f8208SBarry Smith if (nrm > *delta) { 2867064f8208SBarry Smith nrm = *delta/nrm; 2868064f8208SBarry Smith *gpnorm = (1.0 - nrm)*(*fnorm); 2869064f8208SBarry Smith cnorm = nrm; 28702dcb1b2aSMatthew Knepley ierr = VecScale(y,cnorm);CHKERRQ(ierr); 28719b94acceSBarry Smith *ynorm = *delta; 28729b94acceSBarry Smith } else { 28739b94acceSBarry Smith *gpnorm = 0.0; 2874064f8208SBarry Smith *ynorm = nrm; 28759b94acceSBarry Smith } 28763a40ed3dSBarry Smith PetscFunctionReturn(0); 28779b94acceSBarry Smith } 28789b94acceSBarry Smith 28794a2ae208SSatish Balay #undef __FUNCT__ 28804a2ae208SSatish Balay #define __FUNCT__ "SNESSolve" 28816ce558aeSBarry Smith /*@C 2882f69a0ea3SMatthew Knepley SNESSolve - Solves a nonlinear system F(x) = b. 2883f69a0ea3SMatthew Knepley Call SNESSolve() after calling SNESCreate() and optional routines of the form SNESSetXXX(). 28849b94acceSBarry Smith 2885c7afd0dbSLois Curfman McInnes Collective on SNES 2886c7afd0dbSLois Curfman McInnes 2887b2002411SLois Curfman McInnes Input Parameters: 2888c7afd0dbSLois Curfman McInnes + snes - the SNES context 28893cebf274SJed Brown . b - the constant part of the equation F(x) = b, or PETSC_NULL to use zero. 289085385478SLisandro Dalcin - x - the solution vector. 28919b94acceSBarry Smith 2892b2002411SLois Curfman McInnes Notes: 28938ddd3da0SLois Curfman McInnes The user should initialize the vector,x, with the initial guess 28948ddd3da0SLois Curfman McInnes for the nonlinear solve prior to calling SNESSolve. In particular, 28958ddd3da0SLois Curfman McInnes to employ an initial guess of zero, the user should explicitly set 28968ddd3da0SLois Curfman McInnes this vector to zero by calling VecSet(). 28978ddd3da0SLois Curfman McInnes 289836851e7fSLois Curfman McInnes Level: beginner 289936851e7fSLois Curfman McInnes 29009b94acceSBarry Smith .keywords: SNES, nonlinear, solve 29019b94acceSBarry Smith 2902c0df2a02SJed Brown .seealso: SNESCreate(), SNESDestroy(), SNESSetFunction(), SNESSetJacobian(), SNESSetGridSequence(), SNESGetSolution() 29039b94acceSBarry Smith @*/ 29047087cfbeSBarry Smith PetscErrorCode SNESSolve(SNES snes,Vec b,Vec x) 29059b94acceSBarry Smith { 2906dfbe8321SBarry Smith PetscErrorCode ierr; 2907ace3abfcSBarry Smith PetscBool flg; 2908eabae89aSBarry Smith char filename[PETSC_MAX_PATH_LEN]; 2909eabae89aSBarry Smith PetscViewer viewer; 2910efd51863SBarry Smith PetscInt grid; 2911052efed2SBarry Smith 29123a40ed3dSBarry Smith PetscFunctionBegin; 29130700a824SBarry Smith PetscValidHeaderSpecific(snes,SNES_CLASSID,1); 29140700a824SBarry Smith PetscValidHeaderSpecific(x,VEC_CLASSID,3); 2915f69a0ea3SMatthew Knepley PetscCheckSameComm(snes,1,x,3); 29160700a824SBarry Smith if (b) PetscValidHeaderSpecific(b,VEC_CLASSID,2); 291785385478SLisandro Dalcin if (b) PetscCheckSameComm(snes,1,b,2); 291885385478SLisandro Dalcin 2919a8248277SBarry Smith for (grid=0; grid<snes->gridsequence; grid++) {ierr = PetscViewerASCIIPushTab(PETSC_VIEWER_STDOUT_(((PetscObject)snes)->comm));CHKERRQ(ierr);} 2920efd51863SBarry Smith for (grid=0; grid<snes->gridsequence+1; grid++) { 2921efd51863SBarry Smith 292285385478SLisandro Dalcin /* set solution vector */ 2923efd51863SBarry Smith if (!grid) {ierr = PetscObjectReference((PetscObject)x);CHKERRQ(ierr);} 29246bf464f9SBarry Smith ierr = VecDestroy(&snes->vec_sol);CHKERRQ(ierr); 292585385478SLisandro Dalcin snes->vec_sol = x; 292685385478SLisandro Dalcin /* set afine vector if provided */ 292785385478SLisandro Dalcin if (b) { ierr = PetscObjectReference((PetscObject)b);CHKERRQ(ierr); } 29286bf464f9SBarry Smith ierr = VecDestroy(&snes->vec_rhs);CHKERRQ(ierr); 292985385478SLisandro Dalcin snes->vec_rhs = b; 293085385478SLisandro Dalcin 293170e92668SMatthew Knepley ierr = SNESSetUp(snes);CHKERRQ(ierr); 29323f149594SLisandro Dalcin 2933d25893d9SBarry Smith if (!grid && snes->ops->computeinitialguess) { 2934d25893d9SBarry Smith ierr = (*snes->ops->computeinitialguess)(snes,snes->vec_sol,snes->initialguessP);CHKERRQ(ierr); 2935d25893d9SBarry Smith } 2936d25893d9SBarry Smith 2937abc0a331SBarry Smith if (snes->conv_hist_reset) snes->conv_hist_len = 0; 293850ffb88aSMatthew Knepley snes->nfuncs = 0; snes->linear_its = 0; snes->numFailures = 0; 2939d5e45103SBarry Smith 29403f149594SLisandro Dalcin ierr = PetscLogEventBegin(SNES_Solve,snes,0,0,0);CHKERRQ(ierr); 29414936397dSBarry Smith ierr = (*snes->ops->solve)(snes);CHKERRQ(ierr); 294285385478SLisandro Dalcin ierr = PetscLogEventEnd(SNES_Solve,snes,0,0,0);CHKERRQ(ierr); 29434936397dSBarry Smith if (snes->domainerror){ 29444936397dSBarry Smith snes->reason = SNES_DIVERGED_FUNCTION_DOMAIN; 29454936397dSBarry Smith snes->domainerror = PETSC_FALSE; 29464936397dSBarry Smith } 294717186662SBarry Smith if (!snes->reason) SETERRQ(PETSC_COMM_SELF,PETSC_ERR_PLIB,"Internal error, solver returned without setting converged reason"); 29483f149594SLisandro Dalcin 29497adad957SLisandro Dalcin ierr = PetscOptionsGetString(((PetscObject)snes)->prefix,"-snes_view",filename,PETSC_MAX_PATH_LEN,&flg);CHKERRQ(ierr); 2950eabae89aSBarry Smith if (flg && !PetscPreLoadingOn) { 29517adad957SLisandro Dalcin ierr = PetscViewerASCIIOpen(((PetscObject)snes)->comm,filename,&viewer);CHKERRQ(ierr); 2952eabae89aSBarry Smith ierr = SNESView(snes,viewer);CHKERRQ(ierr); 29536bf464f9SBarry Smith ierr = PetscViewerDestroy(&viewer);CHKERRQ(ierr); 2954eabae89aSBarry Smith } 2955eabae89aSBarry Smith 295690d69ab7SBarry Smith flg = PETSC_FALSE; 2957acfcf0e5SJed Brown ierr = PetscOptionsGetBool(((PetscObject)snes)->prefix,"-snes_test_local_min",&flg,PETSC_NULL);CHKERRQ(ierr); 2958da9b6338SBarry Smith if (flg && !PetscPreLoadingOn) { ierr = SNESTestLocalMin(snes);CHKERRQ(ierr); } 29595968eb51SBarry Smith if (snes->printreason) { 2960a8248277SBarry Smith ierr = PetscViewerASCIIAddTab(PETSC_VIEWER_STDOUT_(((PetscObject)snes)->comm),((PetscObject)snes)->tablevel);CHKERRQ(ierr); 29615968eb51SBarry Smith if (snes->reason > 0) { 2962a8248277SBarry Smith ierr = PetscViewerASCIIPrintf(PETSC_VIEWER_STDOUT_(((PetscObject)snes)->comm),"Nonlinear solve converged due to %s\n",SNESConvergedReasons[snes->reason]);CHKERRQ(ierr); 29635968eb51SBarry Smith } else { 2964a8248277SBarry Smith ierr = PetscViewerASCIIPrintf(PETSC_VIEWER_STDOUT_(((PetscObject)snes)->comm),"Nonlinear solve did not converge due to %s\n",SNESConvergedReasons[snes->reason]);CHKERRQ(ierr); 29655968eb51SBarry Smith } 2966a8248277SBarry Smith ierr = PetscViewerASCIISubtractTab(PETSC_VIEWER_STDOUT_(((PetscObject)snes)->comm),((PetscObject)snes)->tablevel);CHKERRQ(ierr); 29675968eb51SBarry Smith } 29685968eb51SBarry Smith 29698501fc72SJed Brown flg = PETSC_FALSE; 29708501fc72SJed Brown ierr = PetscOptionsGetString(((PetscObject)snes)->prefix,"-snes_view_solution_vtk",filename,PETSC_MAX_PATH_LEN,&flg);CHKERRQ(ierr); 29718501fc72SJed Brown if (flg) { 29728501fc72SJed Brown PetscViewer viewer; 29738501fc72SJed Brown ierr = PetscViewerCreate(((PetscObject)snes)->comm,&viewer);CHKERRQ(ierr); 29748501fc72SJed Brown ierr = PetscViewerSetType(viewer,PETSCVIEWERVTK);CHKERRQ(ierr); 29758501fc72SJed Brown ierr = PetscViewerFileSetName(viewer,filename);CHKERRQ(ierr); 29768501fc72SJed Brown ierr = VecView(snes->vec_sol,viewer);CHKERRQ(ierr); 29778501fc72SJed Brown ierr = PetscViewerDestroy(&viewer);CHKERRQ(ierr); 29788501fc72SJed Brown } 29798501fc72SJed Brown 2980e113a28aSBarry Smith if (snes->errorifnotconverged && snes->reason < 0) SETERRQ(((PetscObject)snes)->comm,PETSC_ERR_NOT_CONVERGED,"SNESSolve has not converged"); 2981efd51863SBarry Smith if (grid < snes->gridsequence) { 2982efd51863SBarry Smith DM fine; 2983efd51863SBarry Smith Vec xnew; 2984efd51863SBarry Smith Mat interp; 2985efd51863SBarry Smith 2986efd51863SBarry Smith ierr = DMRefine(snes->dm,((PetscObject)snes)->comm,&fine);CHKERRQ(ierr); 2987efd51863SBarry Smith ierr = DMGetInterpolation(snes->dm,fine,&interp,PETSC_NULL);CHKERRQ(ierr); 2988efd51863SBarry Smith ierr = DMCreateGlobalVector(fine,&xnew);CHKERRQ(ierr); 2989efd51863SBarry Smith ierr = MatInterpolate(interp,x,xnew);CHKERRQ(ierr); 2990efd51863SBarry Smith ierr = MatDestroy(&interp);CHKERRQ(ierr); 2991efd51863SBarry Smith x = xnew; 2992efd51863SBarry Smith 2993efd51863SBarry Smith ierr = SNESReset(snes);CHKERRQ(ierr); 2994efd51863SBarry Smith ierr = SNESSetDM(snes,fine);CHKERRQ(ierr); 2995efd51863SBarry Smith ierr = DMDestroy(&fine);CHKERRQ(ierr); 2996a8248277SBarry Smith ierr = PetscViewerASCIIPopTab(PETSC_VIEWER_STDOUT_(((PetscObject)snes)->comm));CHKERRQ(ierr); 2997efd51863SBarry Smith } 2998efd51863SBarry Smith } 29993a40ed3dSBarry Smith PetscFunctionReturn(0); 30009b94acceSBarry Smith } 30019b94acceSBarry Smith 30029b94acceSBarry Smith /* --------- Internal routines for SNES Package --------- */ 30039b94acceSBarry Smith 30044a2ae208SSatish Balay #undef __FUNCT__ 30054a2ae208SSatish Balay #define __FUNCT__ "SNESSetType" 300682bf6240SBarry Smith /*@C 30074b0e389bSBarry Smith SNESSetType - Sets the method for the nonlinear solver. 30089b94acceSBarry Smith 3009fee21e36SBarry Smith Collective on SNES 3010fee21e36SBarry Smith 3011c7afd0dbSLois Curfman McInnes Input Parameters: 3012c7afd0dbSLois Curfman McInnes + snes - the SNES context 3013454a90a3SBarry Smith - type - a known method 3014c7afd0dbSLois Curfman McInnes 3015c7afd0dbSLois Curfman McInnes Options Database Key: 3016454a90a3SBarry Smith . -snes_type <type> - Sets the method; use -help for a list 3017c7afd0dbSLois Curfman McInnes of available methods (for instance, ls or tr) 3018ae12b187SLois Curfman McInnes 30199b94acceSBarry Smith Notes: 3020e090d566SSatish Balay See "petsc/include/petscsnes.h" for available methods (for instance) 30214b27c08aSLois Curfman McInnes + SNESLS - Newton's method with line search 3022c7afd0dbSLois Curfman McInnes (systems of nonlinear equations) 30234b27c08aSLois Curfman McInnes . SNESTR - Newton's method with trust region 3024c7afd0dbSLois Curfman McInnes (systems of nonlinear equations) 30259b94acceSBarry Smith 3026ae12b187SLois Curfman McInnes Normally, it is best to use the SNESSetFromOptions() command and then 3027ae12b187SLois Curfman McInnes set the SNES solver type from the options database rather than by using 3028ae12b187SLois Curfman McInnes this routine. Using the options database provides the user with 3029ae12b187SLois Curfman McInnes maximum flexibility in evaluating the many nonlinear solvers. 3030ae12b187SLois Curfman McInnes The SNESSetType() routine is provided for those situations where it 3031ae12b187SLois Curfman McInnes is necessary to set the nonlinear solver independently of the command 3032ae12b187SLois Curfman McInnes line or options database. This might be the case, for example, when 3033ae12b187SLois Curfman McInnes the choice of solver changes during the execution of the program, 3034ae12b187SLois Curfman McInnes and the user's application is taking responsibility for choosing the 3035b0a32e0cSBarry Smith appropriate method. 303636851e7fSLois Curfman McInnes 303736851e7fSLois Curfman McInnes Level: intermediate 3038a703fe33SLois Curfman McInnes 3039454a90a3SBarry Smith .keywords: SNES, set, type 3040435da068SBarry Smith 3041435da068SBarry Smith .seealso: SNESType, SNESCreate() 3042435da068SBarry Smith 30439b94acceSBarry Smith @*/ 30447087cfbeSBarry Smith PetscErrorCode SNESSetType(SNES snes,const SNESType type) 30459b94acceSBarry Smith { 3046dfbe8321SBarry Smith PetscErrorCode ierr,(*r)(SNES); 3047ace3abfcSBarry Smith PetscBool match; 30483a40ed3dSBarry Smith 30493a40ed3dSBarry Smith PetscFunctionBegin; 30500700a824SBarry Smith PetscValidHeaderSpecific(snes,SNES_CLASSID,1); 30514482741eSBarry Smith PetscValidCharPointer(type,2); 305282bf6240SBarry Smith 30536831982aSBarry Smith ierr = PetscTypeCompare((PetscObject)snes,type,&match);CHKERRQ(ierr); 30540f5bd95cSBarry Smith if (match) PetscFunctionReturn(0); 305592ff6ae8SBarry Smith 30564b91b6eaSBarry Smith ierr = PetscFListFind(SNESList,((PetscObject)snes)->comm,type,PETSC_TRUE,(void (**)(void)) &r);CHKERRQ(ierr); 3057e32f2f54SBarry Smith if (!r) SETERRQ1(PETSC_COMM_SELF,PETSC_ERR_ARG_UNKNOWN_TYPE,"Unable to find requested SNES type %s",type); 305875396ef9SLisandro Dalcin /* Destroy the previous private SNES context */ 305975396ef9SLisandro Dalcin if (snes->ops->destroy) { ierr = (*(snes)->ops->destroy)(snes);CHKERRQ(ierr); } 306075396ef9SLisandro Dalcin /* Reinitialize function pointers in SNESOps structure */ 306175396ef9SLisandro Dalcin snes->ops->setup = 0; 306275396ef9SLisandro Dalcin snes->ops->solve = 0; 306375396ef9SLisandro Dalcin snes->ops->view = 0; 306475396ef9SLisandro Dalcin snes->ops->setfromoptions = 0; 306575396ef9SLisandro Dalcin snes->ops->destroy = 0; 306675396ef9SLisandro Dalcin /* Call the SNESCreate_XXX routine for this particular Nonlinear solver */ 306775396ef9SLisandro Dalcin snes->setupcalled = PETSC_FALSE; 3068454a90a3SBarry Smith ierr = PetscObjectChangeTypeName((PetscObject)snes,type);CHKERRQ(ierr); 306903bfa161SLisandro Dalcin ierr = (*r)(snes);CHKERRQ(ierr); 30709fb22e1aSBarry Smith #if defined(PETSC_HAVE_AMS) 30719fb22e1aSBarry Smith if (PetscAMSPublishAll) { 30729fb22e1aSBarry Smith ierr = PetscObjectAMSPublish((PetscObject)snes);CHKERRQ(ierr); 30739fb22e1aSBarry Smith } 30749fb22e1aSBarry Smith #endif 30753a40ed3dSBarry Smith PetscFunctionReturn(0); 30769b94acceSBarry Smith } 30779b94acceSBarry Smith 3078a847f771SSatish Balay 30799b94acceSBarry Smith /* --------------------------------------------------------------------- */ 30804a2ae208SSatish Balay #undef __FUNCT__ 30814a2ae208SSatish Balay #define __FUNCT__ "SNESRegisterDestroy" 308252baeb72SSatish Balay /*@ 30839b94acceSBarry Smith SNESRegisterDestroy - Frees the list of nonlinear solvers that were 3084f1af5d2fSBarry Smith registered by SNESRegisterDynamic(). 30859b94acceSBarry Smith 3086fee21e36SBarry Smith Not Collective 3087fee21e36SBarry Smith 308836851e7fSLois Curfman McInnes Level: advanced 308936851e7fSLois Curfman McInnes 30909b94acceSBarry Smith .keywords: SNES, nonlinear, register, destroy 30919b94acceSBarry Smith 30929b94acceSBarry Smith .seealso: SNESRegisterAll(), SNESRegisterAll() 30939b94acceSBarry Smith @*/ 30947087cfbeSBarry Smith PetscErrorCode SNESRegisterDestroy(void) 30959b94acceSBarry Smith { 3096dfbe8321SBarry Smith PetscErrorCode ierr; 309782bf6240SBarry Smith 30983a40ed3dSBarry Smith PetscFunctionBegin; 30991441b1d3SBarry Smith ierr = PetscFListDestroy(&SNESList);CHKERRQ(ierr); 31004c49b128SBarry Smith SNESRegisterAllCalled = PETSC_FALSE; 31013a40ed3dSBarry Smith PetscFunctionReturn(0); 31029b94acceSBarry Smith } 31039b94acceSBarry Smith 31044a2ae208SSatish Balay #undef __FUNCT__ 31054a2ae208SSatish Balay #define __FUNCT__ "SNESGetType" 31069b94acceSBarry Smith /*@C 31079a28b0a6SLois Curfman McInnes SNESGetType - Gets the SNES method type and name (as a string). 31089b94acceSBarry Smith 3109c7afd0dbSLois Curfman McInnes Not Collective 3110c7afd0dbSLois Curfman McInnes 31119b94acceSBarry Smith Input Parameter: 31124b0e389bSBarry Smith . snes - nonlinear solver context 31139b94acceSBarry Smith 31149b94acceSBarry Smith Output Parameter: 31153a7fca6bSBarry Smith . type - SNES method (a character string) 31169b94acceSBarry Smith 311736851e7fSLois Curfman McInnes Level: intermediate 311836851e7fSLois Curfman McInnes 3119454a90a3SBarry Smith .keywords: SNES, nonlinear, get, type, name 31209b94acceSBarry Smith @*/ 31217087cfbeSBarry Smith PetscErrorCode SNESGetType(SNES snes,const SNESType *type) 31229b94acceSBarry Smith { 31233a40ed3dSBarry Smith PetscFunctionBegin; 31240700a824SBarry Smith PetscValidHeaderSpecific(snes,SNES_CLASSID,1); 31254482741eSBarry Smith PetscValidPointer(type,2); 31267adad957SLisandro Dalcin *type = ((PetscObject)snes)->type_name; 31273a40ed3dSBarry Smith PetscFunctionReturn(0); 31289b94acceSBarry Smith } 31299b94acceSBarry Smith 31304a2ae208SSatish Balay #undef __FUNCT__ 31314a2ae208SSatish Balay #define __FUNCT__ "SNESGetSolution" 313252baeb72SSatish Balay /*@ 31339b94acceSBarry Smith SNESGetSolution - Returns the vector where the approximate solution is 3134c0df2a02SJed Brown stored. This is the fine grid solution when using SNESSetGridSequence(). 31359b94acceSBarry Smith 3136c7afd0dbSLois Curfman McInnes Not Collective, but Vec is parallel if SNES is parallel 3137c7afd0dbSLois Curfman McInnes 31389b94acceSBarry Smith Input Parameter: 31399b94acceSBarry Smith . snes - the SNES context 31409b94acceSBarry Smith 31419b94acceSBarry Smith Output Parameter: 31429b94acceSBarry Smith . x - the solution 31439b94acceSBarry Smith 314470e92668SMatthew Knepley Level: intermediate 314536851e7fSLois Curfman McInnes 31469b94acceSBarry Smith .keywords: SNES, nonlinear, get, solution 31479b94acceSBarry Smith 314885385478SLisandro Dalcin .seealso: SNESGetSolutionUpdate(), SNESGetFunction() 31499b94acceSBarry Smith @*/ 31507087cfbeSBarry Smith PetscErrorCode SNESGetSolution(SNES snes,Vec *x) 31519b94acceSBarry Smith { 31523a40ed3dSBarry Smith PetscFunctionBegin; 31530700a824SBarry Smith PetscValidHeaderSpecific(snes,SNES_CLASSID,1); 31544482741eSBarry Smith PetscValidPointer(x,2); 315585385478SLisandro Dalcin *x = snes->vec_sol; 315670e92668SMatthew Knepley PetscFunctionReturn(0); 315770e92668SMatthew Knepley } 315870e92668SMatthew Knepley 315970e92668SMatthew Knepley #undef __FUNCT__ 31604a2ae208SSatish Balay #define __FUNCT__ "SNESGetSolutionUpdate" 316152baeb72SSatish Balay /*@ 31629b94acceSBarry Smith SNESGetSolutionUpdate - Returns the vector where the solution update is 31639b94acceSBarry Smith stored. 31649b94acceSBarry Smith 3165c7afd0dbSLois Curfman McInnes Not Collective, but Vec is parallel if SNES is parallel 3166c7afd0dbSLois Curfman McInnes 31679b94acceSBarry Smith Input Parameter: 31689b94acceSBarry Smith . snes - the SNES context 31699b94acceSBarry Smith 31709b94acceSBarry Smith Output Parameter: 31719b94acceSBarry Smith . x - the solution update 31729b94acceSBarry Smith 317336851e7fSLois Curfman McInnes Level: advanced 317436851e7fSLois Curfman McInnes 31759b94acceSBarry Smith .keywords: SNES, nonlinear, get, solution, update 31769b94acceSBarry Smith 317785385478SLisandro Dalcin .seealso: SNESGetSolution(), SNESGetFunction() 31789b94acceSBarry Smith @*/ 31797087cfbeSBarry Smith PetscErrorCode SNESGetSolutionUpdate(SNES snes,Vec *x) 31809b94acceSBarry Smith { 31813a40ed3dSBarry Smith PetscFunctionBegin; 31820700a824SBarry Smith PetscValidHeaderSpecific(snes,SNES_CLASSID,1); 31834482741eSBarry Smith PetscValidPointer(x,2); 318485385478SLisandro Dalcin *x = snes->vec_sol_update; 31853a40ed3dSBarry Smith PetscFunctionReturn(0); 31869b94acceSBarry Smith } 31879b94acceSBarry Smith 31884a2ae208SSatish Balay #undef __FUNCT__ 31894a2ae208SSatish Balay #define __FUNCT__ "SNESGetFunction" 31909b94acceSBarry Smith /*@C 31913638b69dSLois Curfman McInnes SNESGetFunction - Returns the vector where the function is stored. 31929b94acceSBarry Smith 3193c7afd0dbSLois Curfman McInnes Not Collective, but Vec is parallel if SNES is parallel 3194c7afd0dbSLois Curfman McInnes 31959b94acceSBarry Smith Input Parameter: 31969b94acceSBarry Smith . snes - the SNES context 31979b94acceSBarry Smith 31989b94acceSBarry Smith Output Parameter: 31997bf4e008SBarry Smith + r - the function (or PETSC_NULL) 320070e92668SMatthew Knepley . func - the function (or PETSC_NULL) 320170e92668SMatthew Knepley - ctx - the function context (or PETSC_NULL) 32029b94acceSBarry Smith 320336851e7fSLois Curfman McInnes Level: advanced 320436851e7fSLois Curfman McInnes 3205a86d99e1SLois Curfman McInnes .keywords: SNES, nonlinear, get, function 32069b94acceSBarry Smith 32074b27c08aSLois Curfman McInnes .seealso: SNESSetFunction(), SNESGetSolution() 32089b94acceSBarry Smith @*/ 32097087cfbeSBarry Smith PetscErrorCode SNESGetFunction(SNES snes,Vec *r,PetscErrorCode (**func)(SNES,Vec,Vec,void*),void **ctx) 32109b94acceSBarry Smith { 32113a40ed3dSBarry Smith PetscFunctionBegin; 32120700a824SBarry Smith PetscValidHeaderSpecific(snes,SNES_CLASSID,1); 321385385478SLisandro Dalcin if (r) *r = snes->vec_func; 3214e7788613SBarry Smith if (func) *func = snes->ops->computefunction; 321570e92668SMatthew Knepley if (ctx) *ctx = snes->funP; 32163a40ed3dSBarry Smith PetscFunctionReturn(0); 32179b94acceSBarry Smith } 32189b94acceSBarry Smith 32194a2ae208SSatish Balay #undef __FUNCT__ 32204a2ae208SSatish Balay #define __FUNCT__ "SNESSetOptionsPrefix" 32213c7409f5SSatish Balay /*@C 32223c7409f5SSatish Balay SNESSetOptionsPrefix - Sets the prefix used for searching for all 3223d850072dSLois Curfman McInnes SNES options in the database. 32243c7409f5SSatish Balay 32253f9fe445SBarry Smith Logically Collective on SNES 3226fee21e36SBarry Smith 3227c7afd0dbSLois Curfman McInnes Input Parameter: 3228c7afd0dbSLois Curfman McInnes + snes - the SNES context 3229c7afd0dbSLois Curfman McInnes - prefix - the prefix to prepend to all option names 3230c7afd0dbSLois Curfman McInnes 3231d850072dSLois Curfman McInnes Notes: 3232a83b1b31SSatish Balay A hyphen (-) must NOT be given at the beginning of the prefix name. 3233c7afd0dbSLois Curfman McInnes The first character of all runtime options is AUTOMATICALLY the hyphen. 3234d850072dSLois Curfman McInnes 323536851e7fSLois Curfman McInnes Level: advanced 323636851e7fSLois Curfman McInnes 32373c7409f5SSatish Balay .keywords: SNES, set, options, prefix, database 3238a86d99e1SLois Curfman McInnes 3239a86d99e1SLois Curfman McInnes .seealso: SNESSetFromOptions() 32403c7409f5SSatish Balay @*/ 32417087cfbeSBarry Smith PetscErrorCode SNESSetOptionsPrefix(SNES snes,const char prefix[]) 32423c7409f5SSatish Balay { 3243dfbe8321SBarry Smith PetscErrorCode ierr; 32443c7409f5SSatish Balay 32453a40ed3dSBarry Smith PetscFunctionBegin; 32460700a824SBarry Smith PetscValidHeaderSpecific(snes,SNES_CLASSID,1); 3247639f9d9dSBarry Smith ierr = PetscObjectSetOptionsPrefix((PetscObject)snes,prefix);CHKERRQ(ierr); 32481cee3971SBarry Smith if (!snes->ksp) {ierr = SNESGetKSP(snes,&snes->ksp);CHKERRQ(ierr);} 324994b7f48cSBarry Smith ierr = KSPSetOptionsPrefix(snes->ksp,prefix);CHKERRQ(ierr); 32503a40ed3dSBarry Smith PetscFunctionReturn(0); 32513c7409f5SSatish Balay } 32523c7409f5SSatish Balay 32534a2ae208SSatish Balay #undef __FUNCT__ 32544a2ae208SSatish Balay #define __FUNCT__ "SNESAppendOptionsPrefix" 32553c7409f5SSatish Balay /*@C 3256f525115eSLois Curfman McInnes SNESAppendOptionsPrefix - Appends to the prefix used for searching for all 3257d850072dSLois Curfman McInnes SNES options in the database. 32583c7409f5SSatish Balay 32593f9fe445SBarry Smith Logically Collective on SNES 3260fee21e36SBarry Smith 3261c7afd0dbSLois Curfman McInnes Input Parameters: 3262c7afd0dbSLois Curfman McInnes + snes - the SNES context 3263c7afd0dbSLois Curfman McInnes - prefix - the prefix to prepend to all option names 3264c7afd0dbSLois Curfman McInnes 3265d850072dSLois Curfman McInnes Notes: 3266a83b1b31SSatish Balay A hyphen (-) must NOT be given at the beginning of the prefix name. 3267c7afd0dbSLois Curfman McInnes The first character of all runtime options is AUTOMATICALLY the hyphen. 3268d850072dSLois Curfman McInnes 326936851e7fSLois Curfman McInnes Level: advanced 327036851e7fSLois Curfman McInnes 32713c7409f5SSatish Balay .keywords: SNES, append, options, prefix, database 3272a86d99e1SLois Curfman McInnes 3273a86d99e1SLois Curfman McInnes .seealso: SNESGetOptionsPrefix() 32743c7409f5SSatish Balay @*/ 32757087cfbeSBarry Smith PetscErrorCode SNESAppendOptionsPrefix(SNES snes,const char prefix[]) 32763c7409f5SSatish Balay { 3277dfbe8321SBarry Smith PetscErrorCode ierr; 32783c7409f5SSatish Balay 32793a40ed3dSBarry Smith PetscFunctionBegin; 32800700a824SBarry Smith PetscValidHeaderSpecific(snes,SNES_CLASSID,1); 3281639f9d9dSBarry Smith ierr = PetscObjectAppendOptionsPrefix((PetscObject)snes,prefix);CHKERRQ(ierr); 32821cee3971SBarry Smith if (!snes->ksp) {ierr = SNESGetKSP(snes,&snes->ksp);CHKERRQ(ierr);} 328394b7f48cSBarry Smith ierr = KSPAppendOptionsPrefix(snes->ksp,prefix);CHKERRQ(ierr); 32843a40ed3dSBarry Smith PetscFunctionReturn(0); 32853c7409f5SSatish Balay } 32863c7409f5SSatish Balay 32874a2ae208SSatish Balay #undef __FUNCT__ 32884a2ae208SSatish Balay #define __FUNCT__ "SNESGetOptionsPrefix" 32899ab63eb5SSatish Balay /*@C 32903c7409f5SSatish Balay SNESGetOptionsPrefix - Sets the prefix used for searching for all 32913c7409f5SSatish Balay SNES options in the database. 32923c7409f5SSatish Balay 3293c7afd0dbSLois Curfman McInnes Not Collective 3294c7afd0dbSLois Curfman McInnes 32953c7409f5SSatish Balay Input Parameter: 32963c7409f5SSatish Balay . snes - the SNES context 32973c7409f5SSatish Balay 32983c7409f5SSatish Balay Output Parameter: 32993c7409f5SSatish Balay . prefix - pointer to the prefix string used 33003c7409f5SSatish Balay 33014ef407dbSRichard Tran Mills Notes: On the fortran side, the user should pass in a string 'prefix' of 33029ab63eb5SSatish Balay sufficient length to hold the prefix. 33039ab63eb5SSatish Balay 330436851e7fSLois Curfman McInnes Level: advanced 330536851e7fSLois Curfman McInnes 33063c7409f5SSatish Balay .keywords: SNES, get, options, prefix, database 3307a86d99e1SLois Curfman McInnes 3308a86d99e1SLois Curfman McInnes .seealso: SNESAppendOptionsPrefix() 33093c7409f5SSatish Balay @*/ 33107087cfbeSBarry Smith PetscErrorCode SNESGetOptionsPrefix(SNES snes,const char *prefix[]) 33113c7409f5SSatish Balay { 3312dfbe8321SBarry Smith PetscErrorCode ierr; 33133c7409f5SSatish Balay 33143a40ed3dSBarry Smith PetscFunctionBegin; 33150700a824SBarry Smith PetscValidHeaderSpecific(snes,SNES_CLASSID,1); 3316639f9d9dSBarry Smith ierr = PetscObjectGetOptionsPrefix((PetscObject)snes,prefix);CHKERRQ(ierr); 33173a40ed3dSBarry Smith PetscFunctionReturn(0); 33183c7409f5SSatish Balay } 33193c7409f5SSatish Balay 3320b2002411SLois Curfman McInnes 33214a2ae208SSatish Balay #undef __FUNCT__ 33224a2ae208SSatish Balay #define __FUNCT__ "SNESRegister" 33233cea93caSBarry Smith /*@C 33243cea93caSBarry Smith SNESRegister - See SNESRegisterDynamic() 33253cea93caSBarry Smith 33267f6c08e0SMatthew Knepley Level: advanced 33273cea93caSBarry Smith @*/ 33287087cfbeSBarry Smith PetscErrorCode SNESRegister(const char sname[],const char path[],const char name[],PetscErrorCode (*function)(SNES)) 3329b2002411SLois Curfman McInnes { 3330e2d1d2b7SBarry Smith char fullname[PETSC_MAX_PATH_LEN]; 3331dfbe8321SBarry Smith PetscErrorCode ierr; 3332b2002411SLois Curfman McInnes 3333b2002411SLois Curfman McInnes PetscFunctionBegin; 3334b0a32e0cSBarry Smith ierr = PetscFListConcat(path,name,fullname);CHKERRQ(ierr); 3335c134de8dSSatish Balay ierr = PetscFListAdd(&SNESList,sname,fullname,(void (*)(void))function);CHKERRQ(ierr); 3336b2002411SLois Curfman McInnes PetscFunctionReturn(0); 3337b2002411SLois Curfman McInnes } 3338da9b6338SBarry Smith 3339da9b6338SBarry Smith #undef __FUNCT__ 3340da9b6338SBarry Smith #define __FUNCT__ "SNESTestLocalMin" 33417087cfbeSBarry Smith PetscErrorCode SNESTestLocalMin(SNES snes) 3342da9b6338SBarry Smith { 3343dfbe8321SBarry Smith PetscErrorCode ierr; 334477431f27SBarry Smith PetscInt N,i,j; 3345da9b6338SBarry Smith Vec u,uh,fh; 3346da9b6338SBarry Smith PetscScalar value; 3347da9b6338SBarry Smith PetscReal norm; 3348da9b6338SBarry Smith 3349da9b6338SBarry Smith PetscFunctionBegin; 3350da9b6338SBarry Smith ierr = SNESGetSolution(snes,&u);CHKERRQ(ierr); 3351da9b6338SBarry Smith ierr = VecDuplicate(u,&uh);CHKERRQ(ierr); 3352da9b6338SBarry Smith ierr = VecDuplicate(u,&fh);CHKERRQ(ierr); 3353da9b6338SBarry Smith 3354da9b6338SBarry Smith /* currently only works for sequential */ 3355da9b6338SBarry Smith ierr = PetscPrintf(PETSC_COMM_WORLD,"Testing FormFunction() for local min\n"); 3356da9b6338SBarry Smith ierr = VecGetSize(u,&N);CHKERRQ(ierr); 3357da9b6338SBarry Smith for (i=0; i<N; i++) { 3358da9b6338SBarry Smith ierr = VecCopy(u,uh);CHKERRQ(ierr); 335977431f27SBarry Smith ierr = PetscPrintf(PETSC_COMM_WORLD,"i = %D\n",i);CHKERRQ(ierr); 3360da9b6338SBarry Smith for (j=-10; j<11; j++) { 3361ccae9161SBarry Smith value = PetscSign(j)*exp(PetscAbs(j)-10.0); 3362da9b6338SBarry Smith ierr = VecSetValue(uh,i,value,ADD_VALUES);CHKERRQ(ierr); 33633ab0aad5SBarry Smith ierr = SNESComputeFunction(snes,uh,fh);CHKERRQ(ierr); 3364da9b6338SBarry Smith ierr = VecNorm(fh,NORM_2,&norm);CHKERRQ(ierr); 336577431f27SBarry Smith ierr = PetscPrintf(PETSC_COMM_WORLD," j norm %D %18.16e\n",j,norm);CHKERRQ(ierr); 3366da9b6338SBarry Smith value = -value; 3367da9b6338SBarry Smith ierr = VecSetValue(uh,i,value,ADD_VALUES);CHKERRQ(ierr); 3368da9b6338SBarry Smith } 3369da9b6338SBarry Smith } 33706bf464f9SBarry Smith ierr = VecDestroy(&uh);CHKERRQ(ierr); 33716bf464f9SBarry Smith ierr = VecDestroy(&fh);CHKERRQ(ierr); 3372da9b6338SBarry Smith PetscFunctionReturn(0); 3373da9b6338SBarry Smith } 337471f87433Sdalcinl 337571f87433Sdalcinl #undef __FUNCT__ 3376fa9f3622SBarry Smith #define __FUNCT__ "SNESKSPSetUseEW" 337771f87433Sdalcinl /*@ 3378fa9f3622SBarry Smith SNESKSPSetUseEW - Sets SNES use Eisenstat-Walker method for 337971f87433Sdalcinl computing relative tolerance for linear solvers within an inexact 338071f87433Sdalcinl Newton method. 338171f87433Sdalcinl 33823f9fe445SBarry Smith Logically Collective on SNES 338371f87433Sdalcinl 338471f87433Sdalcinl Input Parameters: 338571f87433Sdalcinl + snes - SNES context 338671f87433Sdalcinl - flag - PETSC_TRUE or PETSC_FALSE 338771f87433Sdalcinl 338864ba62caSBarry Smith Options Database: 338964ba62caSBarry Smith + -snes_ksp_ew - use Eisenstat-Walker method for determining linear system convergence 339064ba62caSBarry Smith . -snes_ksp_ew_version ver - version of Eisenstat-Walker method 339164ba62caSBarry Smith . -snes_ksp_ew_rtol0 <rtol0> - Sets rtol0 339264ba62caSBarry Smith . -snes_ksp_ew_rtolmax <rtolmax> - Sets rtolmax 339364ba62caSBarry Smith . -snes_ksp_ew_gamma <gamma> - Sets gamma 339464ba62caSBarry Smith . -snes_ksp_ew_alpha <alpha> - Sets alpha 339564ba62caSBarry Smith . -snes_ksp_ew_alpha2 <alpha2> - Sets alpha2 339664ba62caSBarry Smith - -snes_ksp_ew_threshold <threshold> - Sets threshold 339764ba62caSBarry Smith 339871f87433Sdalcinl Notes: 339971f87433Sdalcinl Currently, the default is to use a constant relative tolerance for 340071f87433Sdalcinl the inner linear solvers. Alternatively, one can use the 340171f87433Sdalcinl Eisenstat-Walker method, where the relative convergence tolerance 340271f87433Sdalcinl is reset at each Newton iteration according progress of the nonlinear 340371f87433Sdalcinl solver. 340471f87433Sdalcinl 340571f87433Sdalcinl Level: advanced 340671f87433Sdalcinl 340771f87433Sdalcinl Reference: 340871f87433Sdalcinl S. C. Eisenstat and H. F. Walker, "Choosing the forcing terms in an 340971f87433Sdalcinl inexact Newton method", SISC 17 (1), pp.16-32, 1996. 341071f87433Sdalcinl 341171f87433Sdalcinl .keywords: SNES, KSP, Eisenstat, Walker, convergence, test, inexact, Newton 341271f87433Sdalcinl 3413fa9f3622SBarry Smith .seealso: SNESKSPGetUseEW(), SNESKSPGetParametersEW(), SNESKSPSetParametersEW() 341471f87433Sdalcinl @*/ 34157087cfbeSBarry Smith PetscErrorCode SNESKSPSetUseEW(SNES snes,PetscBool flag) 341671f87433Sdalcinl { 341771f87433Sdalcinl PetscFunctionBegin; 34180700a824SBarry Smith PetscValidHeaderSpecific(snes,SNES_CLASSID,1); 3419acfcf0e5SJed Brown PetscValidLogicalCollectiveBool(snes,flag,2); 342071f87433Sdalcinl snes->ksp_ewconv = flag; 342171f87433Sdalcinl PetscFunctionReturn(0); 342271f87433Sdalcinl } 342371f87433Sdalcinl 342471f87433Sdalcinl #undef __FUNCT__ 3425fa9f3622SBarry Smith #define __FUNCT__ "SNESKSPGetUseEW" 342671f87433Sdalcinl /*@ 3427fa9f3622SBarry Smith SNESKSPGetUseEW - Gets if SNES is using Eisenstat-Walker method 342871f87433Sdalcinl for computing relative tolerance for linear solvers within an 342971f87433Sdalcinl inexact Newton method. 343071f87433Sdalcinl 343171f87433Sdalcinl Not Collective 343271f87433Sdalcinl 343371f87433Sdalcinl Input Parameter: 343471f87433Sdalcinl . snes - SNES context 343571f87433Sdalcinl 343671f87433Sdalcinl Output Parameter: 343771f87433Sdalcinl . flag - PETSC_TRUE or PETSC_FALSE 343871f87433Sdalcinl 343971f87433Sdalcinl Notes: 344071f87433Sdalcinl Currently, the default is to use a constant relative tolerance for 344171f87433Sdalcinl the inner linear solvers. Alternatively, one can use the 344271f87433Sdalcinl Eisenstat-Walker method, where the relative convergence tolerance 344371f87433Sdalcinl is reset at each Newton iteration according progress of the nonlinear 344471f87433Sdalcinl solver. 344571f87433Sdalcinl 344671f87433Sdalcinl Level: advanced 344771f87433Sdalcinl 344871f87433Sdalcinl Reference: 344971f87433Sdalcinl S. C. Eisenstat and H. F. Walker, "Choosing the forcing terms in an 345071f87433Sdalcinl inexact Newton method", SISC 17 (1), pp.16-32, 1996. 345171f87433Sdalcinl 345271f87433Sdalcinl .keywords: SNES, KSP, Eisenstat, Walker, convergence, test, inexact, Newton 345371f87433Sdalcinl 3454fa9f3622SBarry Smith .seealso: SNESKSPSetUseEW(), SNESKSPGetParametersEW(), SNESKSPSetParametersEW() 345571f87433Sdalcinl @*/ 34567087cfbeSBarry Smith PetscErrorCode SNESKSPGetUseEW(SNES snes, PetscBool *flag) 345771f87433Sdalcinl { 345871f87433Sdalcinl PetscFunctionBegin; 34590700a824SBarry Smith PetscValidHeaderSpecific(snes,SNES_CLASSID,1); 346071f87433Sdalcinl PetscValidPointer(flag,2); 346171f87433Sdalcinl *flag = snes->ksp_ewconv; 346271f87433Sdalcinl PetscFunctionReturn(0); 346371f87433Sdalcinl } 346471f87433Sdalcinl 346571f87433Sdalcinl #undef __FUNCT__ 3466fa9f3622SBarry Smith #define __FUNCT__ "SNESKSPSetParametersEW" 346771f87433Sdalcinl /*@ 3468fa9f3622SBarry Smith SNESKSPSetParametersEW - Sets parameters for Eisenstat-Walker 346971f87433Sdalcinl convergence criteria for the linear solvers within an inexact 347071f87433Sdalcinl Newton method. 347171f87433Sdalcinl 34723f9fe445SBarry Smith Logically Collective on SNES 347371f87433Sdalcinl 347471f87433Sdalcinl Input Parameters: 347571f87433Sdalcinl + snes - SNES context 347671f87433Sdalcinl . version - version 1, 2 (default is 2) or 3 347771f87433Sdalcinl . rtol_0 - initial relative tolerance (0 <= rtol_0 < 1) 347871f87433Sdalcinl . rtol_max - maximum relative tolerance (0 <= rtol_max < 1) 347971f87433Sdalcinl . gamma - multiplicative factor for version 2 rtol computation 348071f87433Sdalcinl (0 <= gamma2 <= 1) 348171f87433Sdalcinl . alpha - power for version 2 rtol computation (1 < alpha <= 2) 348271f87433Sdalcinl . alpha2 - power for safeguard 348371f87433Sdalcinl - threshold - threshold for imposing safeguard (0 < threshold < 1) 348471f87433Sdalcinl 348571f87433Sdalcinl Note: 348671f87433Sdalcinl Version 3 was contributed by Luis Chacon, June 2006. 348771f87433Sdalcinl 348871f87433Sdalcinl Use PETSC_DEFAULT to retain the default for any of the parameters. 348971f87433Sdalcinl 349071f87433Sdalcinl Level: advanced 349171f87433Sdalcinl 349271f87433Sdalcinl Reference: 349371f87433Sdalcinl S. C. Eisenstat and H. F. Walker, "Choosing the forcing terms in an 349471f87433Sdalcinl inexact Newton method", Utah State University Math. Stat. Dept. Res. 349571f87433Sdalcinl Report 6/94/75, June, 1994, to appear in SIAM J. Sci. Comput. 349671f87433Sdalcinl 349771f87433Sdalcinl .keywords: SNES, KSP, Eisenstat, Walker, set, parameters 349871f87433Sdalcinl 3499fa9f3622SBarry Smith .seealso: SNESKSPSetUseEW(), SNESKSPGetUseEW(), SNESKSPGetParametersEW() 350071f87433Sdalcinl @*/ 35017087cfbeSBarry Smith PetscErrorCode SNESKSPSetParametersEW(SNES snes,PetscInt version,PetscReal rtol_0,PetscReal rtol_max, 350271f87433Sdalcinl PetscReal gamma,PetscReal alpha,PetscReal alpha2,PetscReal threshold) 350371f87433Sdalcinl { 3504fa9f3622SBarry Smith SNESKSPEW *kctx; 350571f87433Sdalcinl PetscFunctionBegin; 35060700a824SBarry Smith PetscValidHeaderSpecific(snes,SNES_CLASSID,1); 3507fa9f3622SBarry Smith kctx = (SNESKSPEW*)snes->kspconvctx; 3508e32f2f54SBarry Smith if (!kctx) SETERRQ(PETSC_COMM_SELF,PETSC_ERR_ARG_WRONGSTATE,"No Eisenstat-Walker context existing"); 3509c5eb9154SBarry Smith PetscValidLogicalCollectiveInt(snes,version,2); 3510c5eb9154SBarry Smith PetscValidLogicalCollectiveReal(snes,rtol_0,3); 3511c5eb9154SBarry Smith PetscValidLogicalCollectiveReal(snes,rtol_max,4); 3512c5eb9154SBarry Smith PetscValidLogicalCollectiveReal(snes,gamma,5); 3513c5eb9154SBarry Smith PetscValidLogicalCollectiveReal(snes,alpha,6); 3514c5eb9154SBarry Smith PetscValidLogicalCollectiveReal(snes,alpha2,7); 3515c5eb9154SBarry Smith PetscValidLogicalCollectiveReal(snes,threshold,8); 351671f87433Sdalcinl 351771f87433Sdalcinl if (version != PETSC_DEFAULT) kctx->version = version; 351871f87433Sdalcinl if (rtol_0 != PETSC_DEFAULT) kctx->rtol_0 = rtol_0; 351971f87433Sdalcinl if (rtol_max != PETSC_DEFAULT) kctx->rtol_max = rtol_max; 352071f87433Sdalcinl if (gamma != PETSC_DEFAULT) kctx->gamma = gamma; 352171f87433Sdalcinl if (alpha != PETSC_DEFAULT) kctx->alpha = alpha; 352271f87433Sdalcinl if (alpha2 != PETSC_DEFAULT) kctx->alpha2 = alpha2; 352371f87433Sdalcinl if (threshold != PETSC_DEFAULT) kctx->threshold = threshold; 352471f87433Sdalcinl 352571f87433Sdalcinl if (kctx->version < 1 || kctx->version > 3) { 3526e32f2f54SBarry Smith SETERRQ1(PETSC_COMM_SELF,PETSC_ERR_ARG_OUTOFRANGE,"Only versions 1, 2 and 3 are supported: %D",kctx->version); 352771f87433Sdalcinl } 352871f87433Sdalcinl if (kctx->rtol_0 < 0.0 || kctx->rtol_0 >= 1.0) { 3529e32f2f54SBarry Smith SETERRQ1(PETSC_COMM_SELF,PETSC_ERR_ARG_OUTOFRANGE,"0.0 <= rtol_0 < 1.0: %G",kctx->rtol_0); 353071f87433Sdalcinl } 353171f87433Sdalcinl if (kctx->rtol_max < 0.0 || kctx->rtol_max >= 1.0) { 3532e32f2f54SBarry Smith SETERRQ1(PETSC_COMM_SELF,PETSC_ERR_ARG_OUTOFRANGE,"0.0 <= rtol_max (%G) < 1.0\n",kctx->rtol_max); 353371f87433Sdalcinl } 353471f87433Sdalcinl if (kctx->gamma < 0.0 || kctx->gamma > 1.0) { 3535e32f2f54SBarry Smith SETERRQ1(PETSC_COMM_SELF,PETSC_ERR_ARG_OUTOFRANGE,"0.0 <= gamma (%G) <= 1.0\n",kctx->gamma); 353671f87433Sdalcinl } 353771f87433Sdalcinl if (kctx->alpha <= 1.0 || kctx->alpha > 2.0) { 3538e32f2f54SBarry Smith SETERRQ1(PETSC_COMM_SELF,PETSC_ERR_ARG_OUTOFRANGE,"1.0 < alpha (%G) <= 2.0\n",kctx->alpha); 353971f87433Sdalcinl } 354071f87433Sdalcinl if (kctx->threshold <= 0.0 || kctx->threshold >= 1.0) { 3541e32f2f54SBarry Smith SETERRQ1(PETSC_COMM_SELF,PETSC_ERR_ARG_OUTOFRANGE,"0.0 < threshold (%G) < 1.0\n",kctx->threshold); 354271f87433Sdalcinl } 354371f87433Sdalcinl PetscFunctionReturn(0); 354471f87433Sdalcinl } 354571f87433Sdalcinl 354671f87433Sdalcinl #undef __FUNCT__ 3547fa9f3622SBarry Smith #define __FUNCT__ "SNESKSPGetParametersEW" 354871f87433Sdalcinl /*@ 3549fa9f3622SBarry Smith SNESKSPGetParametersEW - Gets parameters for Eisenstat-Walker 355071f87433Sdalcinl convergence criteria for the linear solvers within an inexact 355171f87433Sdalcinl Newton method. 355271f87433Sdalcinl 355371f87433Sdalcinl Not Collective 355471f87433Sdalcinl 355571f87433Sdalcinl Input Parameters: 355671f87433Sdalcinl snes - SNES context 355771f87433Sdalcinl 355871f87433Sdalcinl Output Parameters: 355971f87433Sdalcinl + version - version 1, 2 (default is 2) or 3 356071f87433Sdalcinl . rtol_0 - initial relative tolerance (0 <= rtol_0 < 1) 356171f87433Sdalcinl . rtol_max - maximum relative tolerance (0 <= rtol_max < 1) 356271f87433Sdalcinl . gamma - multiplicative factor for version 2 rtol computation 356371f87433Sdalcinl (0 <= gamma2 <= 1) 356471f87433Sdalcinl . alpha - power for version 2 rtol computation (1 < alpha <= 2) 356571f87433Sdalcinl . alpha2 - power for safeguard 356671f87433Sdalcinl - threshold - threshold for imposing safeguard (0 < threshold < 1) 356771f87433Sdalcinl 356871f87433Sdalcinl Level: advanced 356971f87433Sdalcinl 357071f87433Sdalcinl .keywords: SNES, KSP, Eisenstat, Walker, get, parameters 357171f87433Sdalcinl 3572fa9f3622SBarry Smith .seealso: SNESKSPSetUseEW(), SNESKSPGetUseEW(), SNESKSPSetParametersEW() 357371f87433Sdalcinl @*/ 35747087cfbeSBarry Smith PetscErrorCode SNESKSPGetParametersEW(SNES snes,PetscInt *version,PetscReal *rtol_0,PetscReal *rtol_max, 357571f87433Sdalcinl PetscReal *gamma,PetscReal *alpha,PetscReal *alpha2,PetscReal *threshold) 357671f87433Sdalcinl { 3577fa9f3622SBarry Smith SNESKSPEW *kctx; 357871f87433Sdalcinl PetscFunctionBegin; 35790700a824SBarry Smith PetscValidHeaderSpecific(snes,SNES_CLASSID,1); 3580fa9f3622SBarry Smith kctx = (SNESKSPEW*)snes->kspconvctx; 3581e32f2f54SBarry Smith if (!kctx) SETERRQ(PETSC_COMM_SELF,PETSC_ERR_ARG_WRONGSTATE,"No Eisenstat-Walker context existing"); 358271f87433Sdalcinl if(version) *version = kctx->version; 358371f87433Sdalcinl if(rtol_0) *rtol_0 = kctx->rtol_0; 358471f87433Sdalcinl if(rtol_max) *rtol_max = kctx->rtol_max; 358571f87433Sdalcinl if(gamma) *gamma = kctx->gamma; 358671f87433Sdalcinl if(alpha) *alpha = kctx->alpha; 358771f87433Sdalcinl if(alpha2) *alpha2 = kctx->alpha2; 358871f87433Sdalcinl if(threshold) *threshold = kctx->threshold; 358971f87433Sdalcinl PetscFunctionReturn(0); 359071f87433Sdalcinl } 359171f87433Sdalcinl 359271f87433Sdalcinl #undef __FUNCT__ 3593fa9f3622SBarry Smith #define __FUNCT__ "SNESKSPEW_PreSolve" 3594fa9f3622SBarry Smith static PetscErrorCode SNESKSPEW_PreSolve(SNES snes, KSP ksp, Vec b, Vec x) 359571f87433Sdalcinl { 359671f87433Sdalcinl PetscErrorCode ierr; 3597fa9f3622SBarry Smith SNESKSPEW *kctx = (SNESKSPEW*)snes->kspconvctx; 359871f87433Sdalcinl PetscReal rtol=PETSC_DEFAULT,stol; 359971f87433Sdalcinl 360071f87433Sdalcinl PetscFunctionBegin; 3601e32f2f54SBarry Smith if (!kctx) SETERRQ(PETSC_COMM_SELF,PETSC_ERR_ARG_WRONGSTATE,"No Eisenstat-Walker context exists"); 360271f87433Sdalcinl if (!snes->iter) { /* first time in, so use the original user rtol */ 360371f87433Sdalcinl rtol = kctx->rtol_0; 360471f87433Sdalcinl } else { 360571f87433Sdalcinl if (kctx->version == 1) { 360671f87433Sdalcinl rtol = (snes->norm - kctx->lresid_last)/kctx->norm_last; 360771f87433Sdalcinl if (rtol < 0.0) rtol = -rtol; 360871f87433Sdalcinl stol = pow(kctx->rtol_last,kctx->alpha2); 360971f87433Sdalcinl if (stol > kctx->threshold) rtol = PetscMax(rtol,stol); 361071f87433Sdalcinl } else if (kctx->version == 2) { 361171f87433Sdalcinl rtol = kctx->gamma * pow(snes->norm/kctx->norm_last,kctx->alpha); 361271f87433Sdalcinl stol = kctx->gamma * pow(kctx->rtol_last,kctx->alpha); 361371f87433Sdalcinl if (stol > kctx->threshold) rtol = PetscMax(rtol,stol); 361471f87433Sdalcinl } else if (kctx->version == 3) {/* contributed by Luis Chacon, June 2006. */ 361571f87433Sdalcinl rtol = kctx->gamma * pow(snes->norm/kctx->norm_last,kctx->alpha); 361671f87433Sdalcinl /* safeguard: avoid sharp decrease of rtol */ 361771f87433Sdalcinl stol = kctx->gamma*pow(kctx->rtol_last,kctx->alpha); 361871f87433Sdalcinl stol = PetscMax(rtol,stol); 361971f87433Sdalcinl rtol = PetscMin(kctx->rtol_0,stol); 362071f87433Sdalcinl /* safeguard: avoid oversolving */ 362171f87433Sdalcinl stol = kctx->gamma*(snes->ttol)/snes->norm; 362271f87433Sdalcinl stol = PetscMax(rtol,stol); 362371f87433Sdalcinl rtol = PetscMin(kctx->rtol_0,stol); 3624e32f2f54SBarry Smith } else SETERRQ1(PETSC_COMM_SELF,PETSC_ERR_ARG_OUTOFRANGE,"Only versions 1, 2 or 3 are supported: %D",kctx->version); 362571f87433Sdalcinl } 362671f87433Sdalcinl /* safeguard: avoid rtol greater than one */ 362771f87433Sdalcinl rtol = PetscMin(rtol,kctx->rtol_max); 362871f87433Sdalcinl ierr = KSPSetTolerances(ksp,rtol,PETSC_DEFAULT,PETSC_DEFAULT,PETSC_DEFAULT);CHKERRQ(ierr); 362971f87433Sdalcinl ierr = PetscInfo3(snes,"iter %D, Eisenstat-Walker (version %D) KSP rtol=%G\n",snes->iter,kctx->version,rtol);CHKERRQ(ierr); 363071f87433Sdalcinl PetscFunctionReturn(0); 363171f87433Sdalcinl } 363271f87433Sdalcinl 363371f87433Sdalcinl #undef __FUNCT__ 3634fa9f3622SBarry Smith #define __FUNCT__ "SNESKSPEW_PostSolve" 3635fa9f3622SBarry Smith static PetscErrorCode SNESKSPEW_PostSolve(SNES snes, KSP ksp, Vec b, Vec x) 363671f87433Sdalcinl { 363771f87433Sdalcinl PetscErrorCode ierr; 3638fa9f3622SBarry Smith SNESKSPEW *kctx = (SNESKSPEW*)snes->kspconvctx; 363971f87433Sdalcinl PCSide pcside; 364071f87433Sdalcinl Vec lres; 364171f87433Sdalcinl 364271f87433Sdalcinl PetscFunctionBegin; 3643e32f2f54SBarry Smith if (!kctx) SETERRQ(PETSC_COMM_SELF,PETSC_ERR_ARG_WRONGSTATE,"No Eisenstat-Walker context exists"); 364471f87433Sdalcinl ierr = KSPGetTolerances(ksp,&kctx->rtol_last,0,0,0);CHKERRQ(ierr); 364571f87433Sdalcinl ierr = SNESGetFunctionNorm(snes,&kctx->norm_last);CHKERRQ(ierr); 364671f87433Sdalcinl if (kctx->version == 1) { 3647b037da10SBarry Smith ierr = KSPGetPCSide(ksp,&pcside);CHKERRQ(ierr); 364871f87433Sdalcinl if (pcside == PC_RIGHT) { /* XXX Should we also test KSP_UNPRECONDITIONED_NORM ? */ 364971f87433Sdalcinl /* KSP residual is true linear residual */ 365071f87433Sdalcinl ierr = KSPGetResidualNorm(ksp,&kctx->lresid_last);CHKERRQ(ierr); 365171f87433Sdalcinl } else { 365271f87433Sdalcinl /* KSP residual is preconditioned residual */ 365371f87433Sdalcinl /* compute true linear residual norm */ 365471f87433Sdalcinl ierr = VecDuplicate(b,&lres);CHKERRQ(ierr); 365571f87433Sdalcinl ierr = MatMult(snes->jacobian,x,lres);CHKERRQ(ierr); 365671f87433Sdalcinl ierr = VecAYPX(lres,-1.0,b);CHKERRQ(ierr); 365771f87433Sdalcinl ierr = VecNorm(lres,NORM_2,&kctx->lresid_last);CHKERRQ(ierr); 36586bf464f9SBarry Smith ierr = VecDestroy(&lres);CHKERRQ(ierr); 365971f87433Sdalcinl } 366071f87433Sdalcinl } 366171f87433Sdalcinl PetscFunctionReturn(0); 366271f87433Sdalcinl } 366371f87433Sdalcinl 366471f87433Sdalcinl #undef __FUNCT__ 366571f87433Sdalcinl #define __FUNCT__ "SNES_KSPSolve" 366671f87433Sdalcinl PetscErrorCode SNES_KSPSolve(SNES snes, KSP ksp, Vec b, Vec x) 366771f87433Sdalcinl { 366871f87433Sdalcinl PetscErrorCode ierr; 366971f87433Sdalcinl 367071f87433Sdalcinl PetscFunctionBegin; 3671fa9f3622SBarry Smith if (snes->ksp_ewconv) { ierr = SNESKSPEW_PreSolve(snes,ksp,b,x);CHKERRQ(ierr); } 367271f87433Sdalcinl ierr = KSPSolve(ksp,b,x);CHKERRQ(ierr); 3673fa9f3622SBarry Smith if (snes->ksp_ewconv) { ierr = SNESKSPEW_PostSolve(snes,ksp,b,x);CHKERRQ(ierr); } 367471f87433Sdalcinl PetscFunctionReturn(0); 367571f87433Sdalcinl } 36766c699258SBarry Smith 36776c699258SBarry Smith #undef __FUNCT__ 36786c699258SBarry Smith #define __FUNCT__ "SNESSetDM" 36796c699258SBarry Smith /*@ 36806c699258SBarry Smith SNESSetDM - Sets the DM that may be used by some preconditioners 36816c699258SBarry Smith 36823f9fe445SBarry Smith Logically Collective on SNES 36836c699258SBarry Smith 36846c699258SBarry Smith Input Parameters: 36856c699258SBarry Smith + snes - the preconditioner context 36866c699258SBarry Smith - dm - the dm 36876c699258SBarry Smith 36886c699258SBarry Smith Level: intermediate 36896c699258SBarry Smith 36906c699258SBarry Smith 36916c699258SBarry Smith .seealso: SNESGetDM(), KSPSetDM(), KSPGetDM() 36926c699258SBarry Smith @*/ 36937087cfbeSBarry Smith PetscErrorCode SNESSetDM(SNES snes,DM dm) 36946c699258SBarry Smith { 36956c699258SBarry Smith PetscErrorCode ierr; 3696345fed2cSBarry Smith KSP ksp; 36976c699258SBarry Smith 36986c699258SBarry Smith PetscFunctionBegin; 36990700a824SBarry Smith PetscValidHeaderSpecific(snes,SNES_CLASSID,1); 3700d0660788SBarry Smith if (dm) {ierr = PetscObjectReference((PetscObject)dm);CHKERRQ(ierr);} 37016bf464f9SBarry Smith ierr = DMDestroy(&snes->dm);CHKERRQ(ierr); 37026c699258SBarry Smith snes->dm = dm; 3703345fed2cSBarry Smith ierr = SNESGetKSP(snes,&ksp);CHKERRQ(ierr); 3704345fed2cSBarry Smith ierr = KSPSetDM(ksp,dm);CHKERRQ(ierr); 3705f22f69f0SBarry Smith ierr = KSPSetDMActive(ksp,PETSC_FALSE);CHKERRQ(ierr); 37062c155ee1SBarry Smith if (snes->pc) { 37072c155ee1SBarry Smith ierr = SNESSetDM(snes->pc, snes->dm);CHKERRQ(ierr); 37082c155ee1SBarry Smith } 37096c699258SBarry Smith PetscFunctionReturn(0); 37106c699258SBarry Smith } 37116c699258SBarry Smith 37126c699258SBarry Smith #undef __FUNCT__ 37136c699258SBarry Smith #define __FUNCT__ "SNESGetDM" 37146c699258SBarry Smith /*@ 37156c699258SBarry Smith SNESGetDM - Gets the DM that may be used by some preconditioners 37166c699258SBarry Smith 37173f9fe445SBarry Smith Not Collective but DM obtained is parallel on SNES 37186c699258SBarry Smith 37196c699258SBarry Smith Input Parameter: 37206c699258SBarry Smith . snes - the preconditioner context 37216c699258SBarry Smith 37226c699258SBarry Smith Output Parameter: 37236c699258SBarry Smith . dm - the dm 37246c699258SBarry Smith 37256c699258SBarry Smith Level: intermediate 37266c699258SBarry Smith 37276c699258SBarry Smith 37286c699258SBarry Smith .seealso: SNESSetDM(), KSPSetDM(), KSPGetDM() 37296c699258SBarry Smith @*/ 37307087cfbeSBarry Smith PetscErrorCode SNESGetDM(SNES snes,DM *dm) 37316c699258SBarry Smith { 37326c699258SBarry Smith PetscFunctionBegin; 37330700a824SBarry Smith PetscValidHeaderSpecific(snes,SNES_CLASSID,1); 37346c699258SBarry Smith *dm = snes->dm; 37356c699258SBarry Smith PetscFunctionReturn(0); 37366c699258SBarry Smith } 37370807856dSBarry Smith 373831823bd8SMatthew G Knepley #undef __FUNCT__ 373931823bd8SMatthew G Knepley #define __FUNCT__ "SNESSetPC" 374031823bd8SMatthew G Knepley /*@ 3741fd4b34e9SJed Brown SNESSetPC - Sets the nonlinear preconditioner to be used. 374231823bd8SMatthew G Knepley 374331823bd8SMatthew G Knepley Collective on SNES 374431823bd8SMatthew G Knepley 374531823bd8SMatthew G Knepley Input Parameters: 374631823bd8SMatthew G Knepley + snes - iterative context obtained from SNESCreate() 374731823bd8SMatthew G Knepley - pc - the preconditioner object 374831823bd8SMatthew G Knepley 374931823bd8SMatthew G Knepley Notes: 375031823bd8SMatthew G Knepley Use SNESGetPC() to retrieve the preconditioner context (for example, 375131823bd8SMatthew G Knepley to configure it using the API). 375231823bd8SMatthew G Knepley 375331823bd8SMatthew G Knepley Level: developer 375431823bd8SMatthew G Knepley 375531823bd8SMatthew G Knepley .keywords: SNES, set, precondition 375631823bd8SMatthew G Knepley .seealso: SNESGetPC() 375731823bd8SMatthew G Knepley @*/ 375831823bd8SMatthew G Knepley PetscErrorCode SNESSetPC(SNES snes, SNES pc) 375931823bd8SMatthew G Knepley { 376031823bd8SMatthew G Knepley PetscErrorCode ierr; 376131823bd8SMatthew G Knepley 376231823bd8SMatthew G Knepley PetscFunctionBegin; 376331823bd8SMatthew G Knepley PetscValidHeaderSpecific(snes, SNES_CLASSID, 1); 376431823bd8SMatthew G Knepley PetscValidHeaderSpecific(pc, SNES_CLASSID, 2); 376531823bd8SMatthew G Knepley PetscCheckSameComm(snes, 1, pc, 2); 376631823bd8SMatthew G Knepley ierr = PetscObjectReference((PetscObject) pc);CHKERRQ(ierr); 3767bf11d3b6SBarry Smith ierr = SNESDestroy(&snes->pc);CHKERRQ(ierr); 376831823bd8SMatthew G Knepley snes->pc = pc; 376931823bd8SMatthew G Knepley ierr = PetscLogObjectParent(snes, snes->pc);CHKERRQ(ierr); 377031823bd8SMatthew G Knepley PetscFunctionReturn(0); 377131823bd8SMatthew G Knepley } 377231823bd8SMatthew G Knepley 377331823bd8SMatthew G Knepley #undef __FUNCT__ 377431823bd8SMatthew G Knepley #define __FUNCT__ "SNESGetPC" 377531823bd8SMatthew G Knepley /*@ 3776fd4b34e9SJed Brown SNESGetPC - Returns a pointer to the nonlinear preconditioning context set with SNESSetPC(). 377731823bd8SMatthew G Knepley 377831823bd8SMatthew G Knepley Not Collective 377931823bd8SMatthew G Knepley 378031823bd8SMatthew G Knepley Input Parameter: 378131823bd8SMatthew G Knepley . snes - iterative context obtained from SNESCreate() 378231823bd8SMatthew G Knepley 378331823bd8SMatthew G Knepley Output Parameter: 378431823bd8SMatthew G Knepley . pc - preconditioner context 378531823bd8SMatthew G Knepley 378631823bd8SMatthew G Knepley Level: developer 378731823bd8SMatthew G Knepley 378831823bd8SMatthew G Knepley .keywords: SNES, get, preconditioner 378931823bd8SMatthew G Knepley .seealso: SNESSetPC() 379031823bd8SMatthew G Knepley @*/ 379131823bd8SMatthew G Knepley PetscErrorCode SNESGetPC(SNES snes, SNES *pc) 379231823bd8SMatthew G Knepley { 379331823bd8SMatthew G Knepley PetscErrorCode ierr; 379431823bd8SMatthew G Knepley 379531823bd8SMatthew G Knepley PetscFunctionBegin; 379631823bd8SMatthew G Knepley PetscValidHeaderSpecific(snes, SNES_CLASSID, 1); 379731823bd8SMatthew G Knepley PetscValidPointer(pc, 2); 379831823bd8SMatthew G Knepley if (!snes->pc) { 379931823bd8SMatthew G Knepley ierr = SNESCreate(((PetscObject) snes)->comm, &snes->pc);CHKERRQ(ierr); 38004a0c5b0cSMatthew G Knepley ierr = PetscObjectIncrementTabLevel((PetscObject) snes->pc, (PetscObject) snes, 1);CHKERRQ(ierr); 380131823bd8SMatthew G Knepley ierr = PetscLogObjectParent(snes, snes->pc);CHKERRQ(ierr); 380231823bd8SMatthew G Knepley } 380331823bd8SMatthew G Knepley *pc = snes->pc; 380431823bd8SMatthew G Knepley PetscFunctionReturn(0); 380531823bd8SMatthew G Knepley } 380631823bd8SMatthew G Knepley 380769b4f73cSBarry Smith #if defined(PETSC_HAVE_MATLAB_ENGINE) 3808c6db04a5SJed Brown #include <mex.h> 380969b4f73cSBarry Smith 38108f6e6473SBarry Smith typedef struct {char *funcname; mxArray *ctx;} SNESMatlabContext; 38118f6e6473SBarry Smith 38120807856dSBarry Smith #undef __FUNCT__ 38130807856dSBarry Smith #define __FUNCT__ "SNESComputeFunction_Matlab" 38140807856dSBarry Smith /* 38150807856dSBarry Smith SNESComputeFunction_Matlab - Calls the function that has been set with 38160807856dSBarry Smith SNESSetFunctionMatlab(). 38170807856dSBarry Smith 38180807856dSBarry Smith Collective on SNES 38190807856dSBarry Smith 38200807856dSBarry Smith Input Parameters: 38210807856dSBarry Smith + snes - the SNES context 38220807856dSBarry Smith - x - input vector 38230807856dSBarry Smith 38240807856dSBarry Smith Output Parameter: 38250807856dSBarry Smith . y - function vector, as set by SNESSetFunction() 38260807856dSBarry Smith 38270807856dSBarry Smith Notes: 38280807856dSBarry Smith SNESComputeFunction() is typically used within nonlinear solvers 38290807856dSBarry Smith implementations, so most users would not generally call this routine 38300807856dSBarry Smith themselves. 38310807856dSBarry Smith 38320807856dSBarry Smith Level: developer 38330807856dSBarry Smith 38340807856dSBarry Smith .keywords: SNES, nonlinear, compute, function 38350807856dSBarry Smith 38360807856dSBarry Smith .seealso: SNESSetFunction(), SNESGetFunction() 383761b2408cSBarry Smith */ 38387087cfbeSBarry Smith PetscErrorCode SNESComputeFunction_Matlab(SNES snes,Vec x,Vec y, void *ctx) 38390807856dSBarry Smith { 3840e650e774SBarry Smith PetscErrorCode ierr; 38418f6e6473SBarry Smith SNESMatlabContext *sctx = (SNESMatlabContext *)ctx; 38428f6e6473SBarry Smith int nlhs = 1,nrhs = 5; 38438f6e6473SBarry Smith mxArray *plhs[1],*prhs[5]; 384491621f2eSBarry Smith long long int lx = 0,ly = 0,ls = 0; 3845e650e774SBarry Smith 38460807856dSBarry Smith PetscFunctionBegin; 38470807856dSBarry Smith PetscValidHeaderSpecific(snes,SNES_CLASSID,1); 38480807856dSBarry Smith PetscValidHeaderSpecific(x,VEC_CLASSID,2); 38490807856dSBarry Smith PetscValidHeaderSpecific(y,VEC_CLASSID,3); 38500807856dSBarry Smith PetscCheckSameComm(snes,1,x,2); 38510807856dSBarry Smith PetscCheckSameComm(snes,1,y,3); 38520807856dSBarry Smith 38530807856dSBarry Smith /* call Matlab function in ctx with arguments x and y */ 3854e650e774SBarry Smith 385591621f2eSBarry Smith ierr = PetscMemcpy(&ls,&snes,sizeof(snes));CHKERRQ(ierr); 3856e650e774SBarry Smith ierr = PetscMemcpy(&lx,&x,sizeof(x));CHKERRQ(ierr); 3857e650e774SBarry Smith ierr = PetscMemcpy(&ly,&y,sizeof(x));CHKERRQ(ierr); 385891621f2eSBarry Smith prhs[0] = mxCreateDoubleScalar((double)ls); 385991621f2eSBarry Smith prhs[1] = mxCreateDoubleScalar((double)lx); 386091621f2eSBarry Smith prhs[2] = mxCreateDoubleScalar((double)ly); 38618f6e6473SBarry Smith prhs[3] = mxCreateString(sctx->funcname); 38628f6e6473SBarry Smith prhs[4] = sctx->ctx; 3863b807a863SBarry Smith ierr = mexCallMATLAB(nlhs,plhs,nrhs,prhs,"PetscSNESComputeFunctionInternal");CHKERRQ(ierr); 3864e650e774SBarry Smith ierr = mxGetScalar(plhs[0]);CHKERRQ(ierr); 3865e650e774SBarry Smith mxDestroyArray(prhs[0]); 3866e650e774SBarry Smith mxDestroyArray(prhs[1]); 3867e650e774SBarry Smith mxDestroyArray(prhs[2]); 38688f6e6473SBarry Smith mxDestroyArray(prhs[3]); 3869e650e774SBarry Smith mxDestroyArray(plhs[0]); 38700807856dSBarry Smith PetscFunctionReturn(0); 38710807856dSBarry Smith } 38720807856dSBarry Smith 38730807856dSBarry Smith 38740807856dSBarry Smith #undef __FUNCT__ 38750807856dSBarry Smith #define __FUNCT__ "SNESSetFunctionMatlab" 387661b2408cSBarry Smith /* 38770807856dSBarry Smith SNESSetFunctionMatlab - Sets the function evaluation routine and function 38780807856dSBarry Smith vector for use by the SNES routines in solving systems of nonlinear 3879e3c5b3baSBarry Smith equations from MATLAB. Here the function is a string containing the name of a MATLAB function 38800807856dSBarry Smith 38810807856dSBarry Smith Logically Collective on SNES 38820807856dSBarry Smith 38830807856dSBarry Smith Input Parameters: 38840807856dSBarry Smith + snes - the SNES context 38850807856dSBarry Smith . r - vector to store function value 38860807856dSBarry Smith - func - function evaluation routine 38870807856dSBarry Smith 38880807856dSBarry Smith Calling sequence of func: 388961b2408cSBarry Smith $ func (SNES snes,Vec x,Vec f,void *ctx); 38900807856dSBarry Smith 38910807856dSBarry Smith 38920807856dSBarry Smith Notes: 38930807856dSBarry Smith The Newton-like methods typically solve linear systems of the form 38940807856dSBarry Smith $ f'(x) x = -f(x), 38950807856dSBarry Smith where f'(x) denotes the Jacobian matrix and f(x) is the function. 38960807856dSBarry Smith 38970807856dSBarry Smith Level: beginner 38980807856dSBarry Smith 38990807856dSBarry Smith .keywords: SNES, nonlinear, set, function 39000807856dSBarry Smith 39010807856dSBarry Smith .seealso: SNESGetFunction(), SNESComputeFunction(), SNESSetJacobian(), SNESSetFunction() 390261b2408cSBarry Smith */ 39037087cfbeSBarry Smith PetscErrorCode SNESSetFunctionMatlab(SNES snes,Vec r,const char *func,mxArray *ctx) 39040807856dSBarry Smith { 39050807856dSBarry Smith PetscErrorCode ierr; 39068f6e6473SBarry Smith SNESMatlabContext *sctx; 39070807856dSBarry Smith 39080807856dSBarry Smith PetscFunctionBegin; 39098f6e6473SBarry Smith /* currently sctx is memory bleed */ 39108f6e6473SBarry Smith ierr = PetscMalloc(sizeof(SNESMatlabContext),&sctx);CHKERRQ(ierr); 39118f6e6473SBarry Smith ierr = PetscStrallocpy(func,&sctx->funcname);CHKERRQ(ierr); 39128f6e6473SBarry Smith /* 39138f6e6473SBarry Smith This should work, but it doesn't 39148f6e6473SBarry Smith sctx->ctx = ctx; 39158f6e6473SBarry Smith mexMakeArrayPersistent(sctx->ctx); 39168f6e6473SBarry Smith */ 39178f6e6473SBarry Smith sctx->ctx = mxDuplicateArray(ctx); 39188f6e6473SBarry Smith ierr = SNESSetFunction(snes,r,SNESComputeFunction_Matlab,sctx);CHKERRQ(ierr); 39190807856dSBarry Smith PetscFunctionReturn(0); 39200807856dSBarry Smith } 392169b4f73cSBarry Smith 392261b2408cSBarry Smith #undef __FUNCT__ 392361b2408cSBarry Smith #define __FUNCT__ "SNESComputeJacobian_Matlab" 392461b2408cSBarry Smith /* 392561b2408cSBarry Smith SNESComputeJacobian_Matlab - Calls the function that has been set with 392661b2408cSBarry Smith SNESSetJacobianMatlab(). 392761b2408cSBarry Smith 392861b2408cSBarry Smith Collective on SNES 392961b2408cSBarry Smith 393061b2408cSBarry Smith Input Parameters: 393161b2408cSBarry Smith + snes - the SNES context 393261b2408cSBarry Smith . x - input vector 393361b2408cSBarry Smith . A, B - the matrices 393461b2408cSBarry Smith - ctx - user context 393561b2408cSBarry Smith 393661b2408cSBarry Smith Output Parameter: 393761b2408cSBarry Smith . flag - structure of the matrix 393861b2408cSBarry Smith 393961b2408cSBarry Smith Level: developer 394061b2408cSBarry Smith 394161b2408cSBarry Smith .keywords: SNES, nonlinear, compute, function 394261b2408cSBarry Smith 394361b2408cSBarry Smith .seealso: SNESSetFunction(), SNESGetFunction() 394461b2408cSBarry Smith @*/ 39457087cfbeSBarry Smith PetscErrorCode SNESComputeJacobian_Matlab(SNES snes,Vec x,Mat *A,Mat *B,MatStructure *flag, void *ctx) 394661b2408cSBarry Smith { 394761b2408cSBarry Smith PetscErrorCode ierr; 394861b2408cSBarry Smith SNESMatlabContext *sctx = (SNESMatlabContext *)ctx; 394961b2408cSBarry Smith int nlhs = 2,nrhs = 6; 395061b2408cSBarry Smith mxArray *plhs[2],*prhs[6]; 395161b2408cSBarry Smith long long int lx = 0,lA = 0,ls = 0, lB = 0; 395261b2408cSBarry Smith 395361b2408cSBarry Smith PetscFunctionBegin; 395461b2408cSBarry Smith PetscValidHeaderSpecific(snes,SNES_CLASSID,1); 395561b2408cSBarry Smith PetscValidHeaderSpecific(x,VEC_CLASSID,2); 395661b2408cSBarry Smith 395761b2408cSBarry Smith /* call Matlab function in ctx with arguments x and y */ 395861b2408cSBarry Smith 395961b2408cSBarry Smith ierr = PetscMemcpy(&ls,&snes,sizeof(snes));CHKERRQ(ierr); 396061b2408cSBarry Smith ierr = PetscMemcpy(&lx,&x,sizeof(x));CHKERRQ(ierr); 396161b2408cSBarry Smith ierr = PetscMemcpy(&lA,A,sizeof(x));CHKERRQ(ierr); 396261b2408cSBarry Smith ierr = PetscMemcpy(&lB,B,sizeof(x));CHKERRQ(ierr); 396361b2408cSBarry Smith prhs[0] = mxCreateDoubleScalar((double)ls); 396461b2408cSBarry Smith prhs[1] = mxCreateDoubleScalar((double)lx); 396561b2408cSBarry Smith prhs[2] = mxCreateDoubleScalar((double)lA); 396661b2408cSBarry Smith prhs[3] = mxCreateDoubleScalar((double)lB); 396761b2408cSBarry Smith prhs[4] = mxCreateString(sctx->funcname); 396861b2408cSBarry Smith prhs[5] = sctx->ctx; 3969b807a863SBarry Smith ierr = mexCallMATLAB(nlhs,plhs,nrhs,prhs,"PetscSNESComputeJacobianInternal");CHKERRQ(ierr); 397061b2408cSBarry Smith ierr = mxGetScalar(plhs[0]);CHKERRQ(ierr); 397161b2408cSBarry Smith *flag = (MatStructure) mxGetScalar(plhs[1]);CHKERRQ(ierr); 397261b2408cSBarry Smith mxDestroyArray(prhs[0]); 397361b2408cSBarry Smith mxDestroyArray(prhs[1]); 397461b2408cSBarry Smith mxDestroyArray(prhs[2]); 397561b2408cSBarry Smith mxDestroyArray(prhs[3]); 397661b2408cSBarry Smith mxDestroyArray(prhs[4]); 397761b2408cSBarry Smith mxDestroyArray(plhs[0]); 397861b2408cSBarry Smith mxDestroyArray(plhs[1]); 397961b2408cSBarry Smith PetscFunctionReturn(0); 398061b2408cSBarry Smith } 398161b2408cSBarry Smith 398261b2408cSBarry Smith 398361b2408cSBarry Smith #undef __FUNCT__ 398461b2408cSBarry Smith #define __FUNCT__ "SNESSetJacobianMatlab" 398561b2408cSBarry Smith /* 398661b2408cSBarry Smith SNESSetJacobianMatlab - Sets the Jacobian function evaluation routine and two empty Jacobian matrices 398761b2408cSBarry Smith vector for use by the SNES routines in solving systems of nonlinear 3988e3c5b3baSBarry Smith equations from MATLAB. Here the function is a string containing the name of a MATLAB function 398961b2408cSBarry Smith 399061b2408cSBarry Smith Logically Collective on SNES 399161b2408cSBarry Smith 399261b2408cSBarry Smith Input Parameters: 399361b2408cSBarry Smith + snes - the SNES context 399461b2408cSBarry Smith . A,B - Jacobian matrices 399561b2408cSBarry Smith . func - function evaluation routine 399661b2408cSBarry Smith - ctx - user context 399761b2408cSBarry Smith 399861b2408cSBarry Smith Calling sequence of func: 399961b2408cSBarry Smith $ flag = func (SNES snes,Vec x,Mat A,Mat B,void *ctx); 400061b2408cSBarry Smith 400161b2408cSBarry Smith 400261b2408cSBarry Smith Level: developer 400361b2408cSBarry Smith 400461b2408cSBarry Smith .keywords: SNES, nonlinear, set, function 400561b2408cSBarry Smith 400661b2408cSBarry Smith .seealso: SNESGetFunction(), SNESComputeFunction(), SNESSetJacobian(), SNESSetFunction() 400761b2408cSBarry Smith */ 40087087cfbeSBarry Smith PetscErrorCode SNESSetJacobianMatlab(SNES snes,Mat A,Mat B,const char *func,mxArray *ctx) 400961b2408cSBarry Smith { 401061b2408cSBarry Smith PetscErrorCode ierr; 401161b2408cSBarry Smith SNESMatlabContext *sctx; 401261b2408cSBarry Smith 401361b2408cSBarry Smith PetscFunctionBegin; 401461b2408cSBarry Smith /* currently sctx is memory bleed */ 401561b2408cSBarry Smith ierr = PetscMalloc(sizeof(SNESMatlabContext),&sctx);CHKERRQ(ierr); 401661b2408cSBarry Smith ierr = PetscStrallocpy(func,&sctx->funcname);CHKERRQ(ierr); 401761b2408cSBarry Smith /* 401861b2408cSBarry Smith This should work, but it doesn't 401961b2408cSBarry Smith sctx->ctx = ctx; 402061b2408cSBarry Smith mexMakeArrayPersistent(sctx->ctx); 402161b2408cSBarry Smith */ 402261b2408cSBarry Smith sctx->ctx = mxDuplicateArray(ctx); 402361b2408cSBarry Smith ierr = SNESSetJacobian(snes,A,B,SNESComputeJacobian_Matlab,sctx);CHKERRQ(ierr); 402461b2408cSBarry Smith PetscFunctionReturn(0); 402561b2408cSBarry Smith } 402669b4f73cSBarry Smith 4027f9eb7ae2SShri Abhyankar #undef __FUNCT__ 4028f9eb7ae2SShri Abhyankar #define __FUNCT__ "SNESMonitor_Matlab" 4029f9eb7ae2SShri Abhyankar /* 4030f9eb7ae2SShri Abhyankar SNESMonitor_Matlab - Calls the function that has been set with SNESMonitorSetMatlab(). 4031f9eb7ae2SShri Abhyankar 4032f9eb7ae2SShri Abhyankar Collective on SNES 4033f9eb7ae2SShri Abhyankar 4034f9eb7ae2SShri Abhyankar .seealso: SNESSetFunction(), SNESGetFunction() 4035f9eb7ae2SShri Abhyankar @*/ 40367087cfbeSBarry Smith PetscErrorCode SNESMonitor_Matlab(SNES snes,PetscInt it, PetscReal fnorm, void *ctx) 4037f9eb7ae2SShri Abhyankar { 4038f9eb7ae2SShri Abhyankar PetscErrorCode ierr; 403948f37e70SShri Abhyankar SNESMatlabContext *sctx = (SNESMatlabContext *)ctx; 4040f9eb7ae2SShri Abhyankar int nlhs = 1,nrhs = 6; 4041f9eb7ae2SShri Abhyankar mxArray *plhs[1],*prhs[6]; 4042f9eb7ae2SShri Abhyankar long long int lx = 0,ls = 0; 4043f9eb7ae2SShri Abhyankar Vec x=snes->vec_sol; 4044f9eb7ae2SShri Abhyankar 4045f9eb7ae2SShri Abhyankar PetscFunctionBegin; 4046f9eb7ae2SShri Abhyankar PetscValidHeaderSpecific(snes,SNES_CLASSID,1); 4047f9eb7ae2SShri Abhyankar 4048f9eb7ae2SShri Abhyankar ierr = PetscMemcpy(&ls,&snes,sizeof(snes));CHKERRQ(ierr); 4049f9eb7ae2SShri Abhyankar ierr = PetscMemcpy(&lx,&x,sizeof(x));CHKERRQ(ierr); 4050f9eb7ae2SShri Abhyankar prhs[0] = mxCreateDoubleScalar((double)ls); 4051f9eb7ae2SShri Abhyankar prhs[1] = mxCreateDoubleScalar((double)it); 4052f9eb7ae2SShri Abhyankar prhs[2] = mxCreateDoubleScalar((double)fnorm); 4053f9eb7ae2SShri Abhyankar prhs[3] = mxCreateDoubleScalar((double)lx); 4054f9eb7ae2SShri Abhyankar prhs[4] = mxCreateString(sctx->funcname); 4055f9eb7ae2SShri Abhyankar prhs[5] = sctx->ctx; 4056f9eb7ae2SShri Abhyankar ierr = mexCallMATLAB(nlhs,plhs,nrhs,prhs,"PetscSNESMonitorInternal");CHKERRQ(ierr); 4057f9eb7ae2SShri Abhyankar ierr = mxGetScalar(plhs[0]);CHKERRQ(ierr); 4058f9eb7ae2SShri Abhyankar mxDestroyArray(prhs[0]); 4059f9eb7ae2SShri Abhyankar mxDestroyArray(prhs[1]); 4060f9eb7ae2SShri Abhyankar mxDestroyArray(prhs[2]); 4061f9eb7ae2SShri Abhyankar mxDestroyArray(prhs[3]); 4062f9eb7ae2SShri Abhyankar mxDestroyArray(prhs[4]); 4063f9eb7ae2SShri Abhyankar mxDestroyArray(plhs[0]); 4064f9eb7ae2SShri Abhyankar PetscFunctionReturn(0); 4065f9eb7ae2SShri Abhyankar } 4066f9eb7ae2SShri Abhyankar 4067f9eb7ae2SShri Abhyankar 4068f9eb7ae2SShri Abhyankar #undef __FUNCT__ 4069f9eb7ae2SShri Abhyankar #define __FUNCT__ "SNESMonitorSetMatlab" 4070f9eb7ae2SShri Abhyankar /* 4071e3c5b3baSBarry Smith SNESMonitorSetMatlab - Sets the monitor function from MATLAB 4072f9eb7ae2SShri Abhyankar 4073f9eb7ae2SShri Abhyankar Level: developer 4074f9eb7ae2SShri Abhyankar 4075f9eb7ae2SShri Abhyankar .keywords: SNES, nonlinear, set, function 4076f9eb7ae2SShri Abhyankar 4077f9eb7ae2SShri Abhyankar .seealso: SNESGetFunction(), SNESComputeFunction(), SNESSetJacobian(), SNESSetFunction() 4078f9eb7ae2SShri Abhyankar */ 40797087cfbeSBarry Smith PetscErrorCode SNESMonitorSetMatlab(SNES snes,const char *func,mxArray *ctx) 4080f9eb7ae2SShri Abhyankar { 4081f9eb7ae2SShri Abhyankar PetscErrorCode ierr; 4082f9eb7ae2SShri Abhyankar SNESMatlabContext *sctx; 4083f9eb7ae2SShri Abhyankar 4084f9eb7ae2SShri Abhyankar PetscFunctionBegin; 4085f9eb7ae2SShri Abhyankar /* currently sctx is memory bleed */ 4086f9eb7ae2SShri Abhyankar ierr = PetscMalloc(sizeof(SNESMatlabContext),&sctx);CHKERRQ(ierr); 4087f9eb7ae2SShri Abhyankar ierr = PetscStrallocpy(func,&sctx->funcname);CHKERRQ(ierr); 4088f9eb7ae2SShri Abhyankar /* 4089f9eb7ae2SShri Abhyankar This should work, but it doesn't 4090f9eb7ae2SShri Abhyankar sctx->ctx = ctx; 4091f9eb7ae2SShri Abhyankar mexMakeArrayPersistent(sctx->ctx); 4092f9eb7ae2SShri Abhyankar */ 4093f9eb7ae2SShri Abhyankar sctx->ctx = mxDuplicateArray(ctx); 4094f9eb7ae2SShri Abhyankar ierr = SNESMonitorSet(snes,SNESMonitor_Matlab,sctx,PETSC_NULL);CHKERRQ(ierr); 4095f9eb7ae2SShri Abhyankar PetscFunctionReturn(0); 4096f9eb7ae2SShri Abhyankar } 4097f9eb7ae2SShri Abhyankar 409869b4f73cSBarry Smith #endif 4099