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 31550ffb88aSMatthew Knepley . -snes_max_fail <max_fail> - maximum number of failures 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); 546646217ecSPeter Brune ierr = SNESSetGS(snes->pc, snes->ops->computegs, snes->gsP);CHKERRQ(ierr); 5474a0c5b0cSMatthew G Knepley /* Should we make a duplicate vector and matrix? Leave the DM to make it? */ 5484a0c5b0cSMatthew G Knepley ierr = SNESSetFunction(snes->pc, snes->vec_func, snes->ops->computefunction, snes->funP);CHKERRQ(ierr); 5494a0c5b0cSMatthew G Knepley ierr = SNESSetJacobian(snes->pc, snes->jacobian, snes->jacobian_pre, snes->ops->computejacobian, snes->jacP);CHKERRQ(ierr); 5504a0c5b0cSMatthew G Knepley ierr = SNESSetFromOptions(snes->pc);CHKERRQ(ierr); 5514a0c5b0cSMatthew G Knepley } 5523a40ed3dSBarry Smith PetscFunctionReturn(0); 5539b94acceSBarry Smith } 5549b94acceSBarry Smith 555d25893d9SBarry Smith #undef __FUNCT__ 556d25893d9SBarry Smith #define __FUNCT__ "SNESSetComputeApplicationContext" 557d25893d9SBarry Smith /*@ 558d25893d9SBarry Smith SNESSetComputeApplicationContext - Sets an optional function to compute a user-defined context for 559d25893d9SBarry Smith the nonlinear solvers. 560d25893d9SBarry Smith 561d25893d9SBarry Smith Logically Collective on SNES 562d25893d9SBarry Smith 563d25893d9SBarry Smith Input Parameters: 564d25893d9SBarry Smith + snes - the SNES context 565d25893d9SBarry Smith . compute - function to compute the context 566d25893d9SBarry Smith - destroy - function to destroy the context 567d25893d9SBarry Smith 568d25893d9SBarry Smith Level: intermediate 569d25893d9SBarry Smith 570d25893d9SBarry Smith .keywords: SNES, nonlinear, set, application, context 571d25893d9SBarry Smith 572d25893d9SBarry Smith .seealso: SNESGetApplicationContext(), SNESSetComputeApplicationContext(), SNESGetApplicationContext() 573d25893d9SBarry Smith @*/ 574d25893d9SBarry Smith PetscErrorCode SNESSetComputeApplicationContext(SNES snes,PetscErrorCode (*compute)(SNES,void**),PetscErrorCode (*destroy)(void**)) 575d25893d9SBarry Smith { 576d25893d9SBarry Smith PetscFunctionBegin; 577d25893d9SBarry Smith PetscValidHeaderSpecific(snes,SNES_CLASSID,1); 578d25893d9SBarry Smith snes->ops->usercompute = compute; 579d25893d9SBarry Smith snes->ops->userdestroy = destroy; 580d25893d9SBarry Smith PetscFunctionReturn(0); 581d25893d9SBarry Smith } 582a847f771SSatish Balay 5834a2ae208SSatish Balay #undef __FUNCT__ 5844a2ae208SSatish Balay #define __FUNCT__ "SNESSetApplicationContext" 585b07ff414SBarry Smith /*@ 5869b94acceSBarry Smith SNESSetApplicationContext - Sets the optional user-defined context for 5879b94acceSBarry Smith the nonlinear solvers. 5889b94acceSBarry Smith 5893f9fe445SBarry Smith Logically Collective on SNES 590fee21e36SBarry Smith 591c7afd0dbSLois Curfman McInnes Input Parameters: 592c7afd0dbSLois Curfman McInnes + snes - the SNES context 593c7afd0dbSLois Curfman McInnes - usrP - optional user context 594c7afd0dbSLois Curfman McInnes 59536851e7fSLois Curfman McInnes Level: intermediate 59636851e7fSLois Curfman McInnes 5979b94acceSBarry Smith .keywords: SNES, nonlinear, set, application, context 5989b94acceSBarry Smith 599d25893d9SBarry Smith .seealso: SNESGetApplicationContext(), SNESSetApplicationContext() 6009b94acceSBarry Smith @*/ 6017087cfbeSBarry Smith PetscErrorCode SNESSetApplicationContext(SNES snes,void *usrP) 6029b94acceSBarry Smith { 6031b2093e4SBarry Smith PetscErrorCode ierr; 604b07ff414SBarry Smith KSP ksp; 6051b2093e4SBarry Smith 6063a40ed3dSBarry Smith PetscFunctionBegin; 6070700a824SBarry Smith PetscValidHeaderSpecific(snes,SNES_CLASSID,1); 608b07ff414SBarry Smith ierr = SNESGetKSP(snes,&ksp);CHKERRQ(ierr); 609b07ff414SBarry Smith ierr = KSPSetApplicationContext(ksp,usrP);CHKERRQ(ierr); 6109b94acceSBarry Smith snes->user = usrP; 6113a40ed3dSBarry Smith PetscFunctionReturn(0); 6129b94acceSBarry Smith } 61374679c65SBarry Smith 6144a2ae208SSatish Balay #undef __FUNCT__ 6154a2ae208SSatish Balay #define __FUNCT__ "SNESGetApplicationContext" 616b07ff414SBarry Smith /*@ 6179b94acceSBarry Smith SNESGetApplicationContext - Gets the user-defined context for the 6189b94acceSBarry Smith nonlinear solvers. 6199b94acceSBarry Smith 620c7afd0dbSLois Curfman McInnes Not Collective 621c7afd0dbSLois Curfman McInnes 6229b94acceSBarry Smith Input Parameter: 6239b94acceSBarry Smith . snes - SNES context 6249b94acceSBarry Smith 6259b94acceSBarry Smith Output Parameter: 6269b94acceSBarry Smith . usrP - user context 6279b94acceSBarry Smith 62836851e7fSLois Curfman McInnes Level: intermediate 62936851e7fSLois Curfman McInnes 6309b94acceSBarry Smith .keywords: SNES, nonlinear, get, application, context 6319b94acceSBarry Smith 6329b94acceSBarry Smith .seealso: SNESSetApplicationContext() 6339b94acceSBarry Smith @*/ 634e71120c6SJed Brown PetscErrorCode SNESGetApplicationContext(SNES snes,void *usrP) 6359b94acceSBarry Smith { 6363a40ed3dSBarry Smith PetscFunctionBegin; 6370700a824SBarry Smith PetscValidHeaderSpecific(snes,SNES_CLASSID,1); 638e71120c6SJed Brown *(void**)usrP = snes->user; 6393a40ed3dSBarry Smith PetscFunctionReturn(0); 6409b94acceSBarry Smith } 64174679c65SBarry Smith 6424a2ae208SSatish Balay #undef __FUNCT__ 6434a2ae208SSatish Balay #define __FUNCT__ "SNESGetIterationNumber" 6449b94acceSBarry Smith /*@ 645c8228a4eSBarry Smith SNESGetIterationNumber - Gets the number of nonlinear iterations completed 646c8228a4eSBarry Smith at this time. 6479b94acceSBarry Smith 648c7afd0dbSLois Curfman McInnes Not Collective 649c7afd0dbSLois Curfman McInnes 6509b94acceSBarry Smith Input Parameter: 6519b94acceSBarry Smith . snes - SNES context 6529b94acceSBarry Smith 6539b94acceSBarry Smith Output Parameter: 6549b94acceSBarry Smith . iter - iteration number 6559b94acceSBarry Smith 656c8228a4eSBarry Smith Notes: 657c8228a4eSBarry Smith For example, during the computation of iteration 2 this would return 1. 658c8228a4eSBarry Smith 659c8228a4eSBarry Smith This is useful for using lagged Jacobians (where one does not recompute the 66008405cd6SLois Curfman McInnes Jacobian at each SNES iteration). For example, the code 66108405cd6SLois Curfman McInnes .vb 66208405cd6SLois Curfman McInnes ierr = SNESGetIterationNumber(snes,&it); 66308405cd6SLois Curfman McInnes if (!(it % 2)) { 66408405cd6SLois Curfman McInnes [compute Jacobian here] 66508405cd6SLois Curfman McInnes } 66608405cd6SLois Curfman McInnes .ve 667c8228a4eSBarry Smith can be used in your ComputeJacobian() function to cause the Jacobian to be 66808405cd6SLois Curfman McInnes recomputed every second SNES iteration. 669c8228a4eSBarry Smith 67036851e7fSLois Curfman McInnes Level: intermediate 67136851e7fSLois Curfman McInnes 6722b668275SBarry Smith .keywords: SNES, nonlinear, get, iteration, number, 6732b668275SBarry Smith 674b850b91aSLisandro Dalcin .seealso: SNESGetFunctionNorm(), SNESGetLinearSolveIterations() 6759b94acceSBarry Smith @*/ 6767087cfbeSBarry Smith PetscErrorCode SNESGetIterationNumber(SNES snes,PetscInt* iter) 6779b94acceSBarry Smith { 6783a40ed3dSBarry Smith PetscFunctionBegin; 6790700a824SBarry Smith PetscValidHeaderSpecific(snes,SNES_CLASSID,1); 6804482741eSBarry Smith PetscValidIntPointer(iter,2); 6819b94acceSBarry Smith *iter = snes->iter; 6823a40ed3dSBarry Smith PetscFunctionReturn(0); 6839b94acceSBarry Smith } 68474679c65SBarry Smith 6854a2ae208SSatish Balay #undef __FUNCT__ 6864a2ae208SSatish Balay #define __FUNCT__ "SNESGetFunctionNorm" 6879b94acceSBarry Smith /*@ 6889b94acceSBarry Smith SNESGetFunctionNorm - Gets the norm of the current function that was set 6899b94acceSBarry Smith with SNESSSetFunction(). 6909b94acceSBarry Smith 691c7afd0dbSLois Curfman McInnes Collective on SNES 692c7afd0dbSLois Curfman McInnes 6939b94acceSBarry Smith Input Parameter: 6949b94acceSBarry Smith . snes - SNES context 6959b94acceSBarry Smith 6969b94acceSBarry Smith Output Parameter: 6979b94acceSBarry Smith . fnorm - 2-norm of function 6989b94acceSBarry Smith 69936851e7fSLois Curfman McInnes Level: intermediate 70036851e7fSLois Curfman McInnes 7019b94acceSBarry Smith .keywords: SNES, nonlinear, get, function, norm 702a86d99e1SLois Curfman McInnes 703b850b91aSLisandro Dalcin .seealso: SNESGetFunction(), SNESGetIterationNumber(), SNESGetLinearSolveIterations() 7049b94acceSBarry Smith @*/ 7057087cfbeSBarry Smith PetscErrorCode SNESGetFunctionNorm(SNES snes,PetscReal *fnorm) 7069b94acceSBarry Smith { 7073a40ed3dSBarry Smith PetscFunctionBegin; 7080700a824SBarry Smith PetscValidHeaderSpecific(snes,SNES_CLASSID,1); 7094482741eSBarry Smith PetscValidScalarPointer(fnorm,2); 7109b94acceSBarry Smith *fnorm = snes->norm; 7113a40ed3dSBarry Smith PetscFunctionReturn(0); 7129b94acceSBarry Smith } 71374679c65SBarry Smith 7144a2ae208SSatish Balay #undef __FUNCT__ 715b850b91aSLisandro Dalcin #define __FUNCT__ "SNESGetNonlinearStepFailures" 7169b94acceSBarry Smith /*@ 717b850b91aSLisandro Dalcin SNESGetNonlinearStepFailures - Gets the number of unsuccessful steps 7189b94acceSBarry Smith attempted by the nonlinear solver. 7199b94acceSBarry Smith 720c7afd0dbSLois Curfman McInnes Not Collective 721c7afd0dbSLois Curfman McInnes 7229b94acceSBarry Smith Input Parameter: 7239b94acceSBarry Smith . snes - SNES context 7249b94acceSBarry Smith 7259b94acceSBarry Smith Output Parameter: 7269b94acceSBarry Smith . nfails - number of unsuccessful steps attempted 7279b94acceSBarry Smith 728c96a6f78SLois Curfman McInnes Notes: 729c96a6f78SLois Curfman McInnes This counter is reset to zero for each successive call to SNESSolve(). 730c96a6f78SLois Curfman McInnes 73136851e7fSLois Curfman McInnes Level: intermediate 73236851e7fSLois Curfman McInnes 7339b94acceSBarry Smith .keywords: SNES, nonlinear, get, number, unsuccessful, steps 73458ebbce7SBarry Smith 735e1c61ce8SBarry Smith .seealso: SNESGetMaxLinearSolveFailures(), SNESGetLinearSolveIterations(), SNESSetMaxLinearSolveFailures(), SNESGetLinearSolveFailures(), 73658ebbce7SBarry Smith SNESSetMaxNonlinearStepFailures(), SNESGetMaxNonlinearStepFailures() 7379b94acceSBarry Smith @*/ 7387087cfbeSBarry Smith PetscErrorCode SNESGetNonlinearStepFailures(SNES snes,PetscInt* nfails) 7399b94acceSBarry Smith { 7403a40ed3dSBarry Smith PetscFunctionBegin; 7410700a824SBarry Smith PetscValidHeaderSpecific(snes,SNES_CLASSID,1); 7424482741eSBarry Smith PetscValidIntPointer(nfails,2); 74350ffb88aSMatthew Knepley *nfails = snes->numFailures; 74450ffb88aSMatthew Knepley PetscFunctionReturn(0); 74550ffb88aSMatthew Knepley } 74650ffb88aSMatthew Knepley 74750ffb88aSMatthew Knepley #undef __FUNCT__ 748b850b91aSLisandro Dalcin #define __FUNCT__ "SNESSetMaxNonlinearStepFailures" 74950ffb88aSMatthew Knepley /*@ 750b850b91aSLisandro Dalcin SNESSetMaxNonlinearStepFailures - Sets the maximum number of unsuccessful steps 75150ffb88aSMatthew Knepley attempted by the nonlinear solver before it gives up. 75250ffb88aSMatthew Knepley 75350ffb88aSMatthew Knepley Not Collective 75450ffb88aSMatthew Knepley 75550ffb88aSMatthew Knepley Input Parameters: 75650ffb88aSMatthew Knepley + snes - SNES context 75750ffb88aSMatthew Knepley - maxFails - maximum of unsuccessful steps 75850ffb88aSMatthew Knepley 75950ffb88aSMatthew Knepley Level: intermediate 76050ffb88aSMatthew Knepley 76150ffb88aSMatthew Knepley .keywords: SNES, nonlinear, set, maximum, unsuccessful, steps 76258ebbce7SBarry Smith 763e1c61ce8SBarry Smith .seealso: SNESGetMaxLinearSolveFailures(), SNESGetLinearSolveIterations(), SNESSetMaxLinearSolveFailures(), SNESGetLinearSolveFailures(), 76458ebbce7SBarry Smith SNESGetMaxNonlinearStepFailures(), SNESGetNonlinearStepFailures() 76550ffb88aSMatthew Knepley @*/ 7667087cfbeSBarry Smith PetscErrorCode SNESSetMaxNonlinearStepFailures(SNES snes, PetscInt maxFails) 76750ffb88aSMatthew Knepley { 76850ffb88aSMatthew Knepley PetscFunctionBegin; 7690700a824SBarry Smith PetscValidHeaderSpecific(snes,SNES_CLASSID,1); 77050ffb88aSMatthew Knepley snes->maxFailures = maxFails; 77150ffb88aSMatthew Knepley PetscFunctionReturn(0); 77250ffb88aSMatthew Knepley } 77350ffb88aSMatthew Knepley 77450ffb88aSMatthew Knepley #undef __FUNCT__ 775b850b91aSLisandro Dalcin #define __FUNCT__ "SNESGetMaxNonlinearStepFailures" 77650ffb88aSMatthew Knepley /*@ 777b850b91aSLisandro Dalcin SNESGetMaxNonlinearStepFailures - Gets the maximum number of unsuccessful steps 77850ffb88aSMatthew Knepley attempted by the nonlinear solver before it gives up. 77950ffb88aSMatthew Knepley 78050ffb88aSMatthew Knepley Not Collective 78150ffb88aSMatthew Knepley 78250ffb88aSMatthew Knepley Input Parameter: 78350ffb88aSMatthew Knepley . snes - SNES context 78450ffb88aSMatthew Knepley 78550ffb88aSMatthew Knepley Output Parameter: 78650ffb88aSMatthew Knepley . maxFails - maximum of unsuccessful steps 78750ffb88aSMatthew Knepley 78850ffb88aSMatthew Knepley Level: intermediate 78950ffb88aSMatthew Knepley 79050ffb88aSMatthew Knepley .keywords: SNES, nonlinear, get, maximum, unsuccessful, steps 79158ebbce7SBarry Smith 792e1c61ce8SBarry Smith .seealso: SNESGetMaxLinearSolveFailures(), SNESGetLinearSolveIterations(), SNESSetMaxLinearSolveFailures(), SNESGetLinearSolveFailures(), 79358ebbce7SBarry Smith SNESSetMaxNonlinearStepFailures(), SNESGetNonlinearStepFailures() 79458ebbce7SBarry Smith 79550ffb88aSMatthew Knepley @*/ 7967087cfbeSBarry Smith PetscErrorCode SNESGetMaxNonlinearStepFailures(SNES snes, PetscInt *maxFails) 79750ffb88aSMatthew Knepley { 79850ffb88aSMatthew Knepley PetscFunctionBegin; 7990700a824SBarry Smith PetscValidHeaderSpecific(snes,SNES_CLASSID,1); 8004482741eSBarry Smith PetscValidIntPointer(maxFails,2); 80150ffb88aSMatthew Knepley *maxFails = snes->maxFailures; 8023a40ed3dSBarry Smith PetscFunctionReturn(0); 8039b94acceSBarry Smith } 804a847f771SSatish Balay 8054a2ae208SSatish Balay #undef __FUNCT__ 8062541af92SBarry Smith #define __FUNCT__ "SNESGetNumberFunctionEvals" 8072541af92SBarry Smith /*@ 8082541af92SBarry Smith SNESGetNumberFunctionEvals - Gets the number of user provided function evaluations 8092541af92SBarry Smith done by SNES. 8102541af92SBarry Smith 8112541af92SBarry Smith Not Collective 8122541af92SBarry Smith 8132541af92SBarry Smith Input Parameter: 8142541af92SBarry Smith . snes - SNES context 8152541af92SBarry Smith 8162541af92SBarry Smith Output Parameter: 8172541af92SBarry Smith . nfuncs - number of evaluations 8182541af92SBarry Smith 8192541af92SBarry Smith Level: intermediate 8202541af92SBarry Smith 8212541af92SBarry Smith .keywords: SNES, nonlinear, get, maximum, unsuccessful, steps 82258ebbce7SBarry Smith 823e1c61ce8SBarry Smith .seealso: SNESGetMaxLinearSolveFailures(), SNESGetLinearSolveIterations(), SNESSetMaxLinearSolveFailures(), SNESGetLinearSolveFailures() 8242541af92SBarry Smith @*/ 8257087cfbeSBarry Smith PetscErrorCode SNESGetNumberFunctionEvals(SNES snes, PetscInt *nfuncs) 8262541af92SBarry Smith { 8272541af92SBarry Smith PetscFunctionBegin; 8280700a824SBarry Smith PetscValidHeaderSpecific(snes,SNES_CLASSID,1); 8292541af92SBarry Smith PetscValidIntPointer(nfuncs,2); 8302541af92SBarry Smith *nfuncs = snes->nfuncs; 8312541af92SBarry Smith PetscFunctionReturn(0); 8322541af92SBarry Smith } 8332541af92SBarry Smith 8342541af92SBarry Smith #undef __FUNCT__ 8353d4c4710SBarry Smith #define __FUNCT__ "SNESGetLinearSolveFailures" 8363d4c4710SBarry Smith /*@ 8373d4c4710SBarry Smith SNESGetLinearSolveFailures - Gets the number of failed (non-converged) 8383d4c4710SBarry Smith linear solvers. 8393d4c4710SBarry Smith 8403d4c4710SBarry Smith Not Collective 8413d4c4710SBarry Smith 8423d4c4710SBarry Smith Input Parameter: 8433d4c4710SBarry Smith . snes - SNES context 8443d4c4710SBarry Smith 8453d4c4710SBarry Smith Output Parameter: 8463d4c4710SBarry Smith . nfails - number of failed solves 8473d4c4710SBarry Smith 8483d4c4710SBarry Smith Notes: 8493d4c4710SBarry Smith This counter is reset to zero for each successive call to SNESSolve(). 8503d4c4710SBarry Smith 8513d4c4710SBarry Smith Level: intermediate 8523d4c4710SBarry Smith 8533d4c4710SBarry Smith .keywords: SNES, nonlinear, get, number, unsuccessful, steps 85458ebbce7SBarry Smith 855e1c61ce8SBarry Smith .seealso: SNESGetMaxLinearSolveFailures(), SNESGetLinearSolveIterations(), SNESSetMaxLinearSolveFailures() 8563d4c4710SBarry Smith @*/ 8577087cfbeSBarry Smith PetscErrorCode SNESGetLinearSolveFailures(SNES snes,PetscInt* nfails) 8583d4c4710SBarry Smith { 8593d4c4710SBarry Smith PetscFunctionBegin; 8600700a824SBarry Smith PetscValidHeaderSpecific(snes,SNES_CLASSID,1); 8613d4c4710SBarry Smith PetscValidIntPointer(nfails,2); 8623d4c4710SBarry Smith *nfails = snes->numLinearSolveFailures; 8633d4c4710SBarry Smith PetscFunctionReturn(0); 8643d4c4710SBarry Smith } 8653d4c4710SBarry Smith 8663d4c4710SBarry Smith #undef __FUNCT__ 8673d4c4710SBarry Smith #define __FUNCT__ "SNESSetMaxLinearSolveFailures" 8683d4c4710SBarry Smith /*@ 8693d4c4710SBarry Smith SNESSetMaxLinearSolveFailures - the number of failed linear solve attempts 8703d4c4710SBarry Smith allowed before SNES returns with a diverged reason of SNES_DIVERGED_LINEAR_SOLVE 8713d4c4710SBarry Smith 8723f9fe445SBarry Smith Logically Collective on SNES 8733d4c4710SBarry Smith 8743d4c4710SBarry Smith Input Parameters: 8753d4c4710SBarry Smith + snes - SNES context 8763d4c4710SBarry Smith - maxFails - maximum allowed linear solve failures 8773d4c4710SBarry Smith 8783d4c4710SBarry Smith Level: intermediate 8793d4c4710SBarry Smith 880a6796414SBarry Smith Notes: By default this is 0; that is SNES returns on the first failed linear solve 8813d4c4710SBarry Smith 8823d4c4710SBarry Smith .keywords: SNES, nonlinear, set, maximum, unsuccessful, steps 8833d4c4710SBarry Smith 88458ebbce7SBarry Smith .seealso: SNESGetLinearSolveFailures(), SNESGetMaxLinearSolveFailures(), SNESGetLinearSolveIterations() 8853d4c4710SBarry Smith @*/ 8867087cfbeSBarry Smith PetscErrorCode SNESSetMaxLinearSolveFailures(SNES snes, PetscInt maxFails) 8873d4c4710SBarry Smith { 8883d4c4710SBarry Smith PetscFunctionBegin; 8890700a824SBarry Smith PetscValidHeaderSpecific(snes,SNES_CLASSID,1); 890c5eb9154SBarry Smith PetscValidLogicalCollectiveInt(snes,maxFails,2); 8913d4c4710SBarry Smith snes->maxLinearSolveFailures = maxFails; 8923d4c4710SBarry Smith PetscFunctionReturn(0); 8933d4c4710SBarry Smith } 8943d4c4710SBarry Smith 8953d4c4710SBarry Smith #undef __FUNCT__ 8963d4c4710SBarry Smith #define __FUNCT__ "SNESGetMaxLinearSolveFailures" 8973d4c4710SBarry Smith /*@ 8983d4c4710SBarry Smith SNESGetMaxLinearSolveFailures - gets the maximum number of linear solve failures that 8993d4c4710SBarry Smith are allowed before SNES terminates 9003d4c4710SBarry Smith 9013d4c4710SBarry Smith Not Collective 9023d4c4710SBarry Smith 9033d4c4710SBarry Smith Input Parameter: 9043d4c4710SBarry Smith . snes - SNES context 9053d4c4710SBarry Smith 9063d4c4710SBarry Smith Output Parameter: 9073d4c4710SBarry Smith . maxFails - maximum of unsuccessful solves allowed 9083d4c4710SBarry Smith 9093d4c4710SBarry Smith Level: intermediate 9103d4c4710SBarry Smith 9113d4c4710SBarry Smith Notes: By default this is 1; that is SNES returns on the first failed linear solve 9123d4c4710SBarry Smith 9133d4c4710SBarry Smith .keywords: SNES, nonlinear, get, maximum, unsuccessful, steps 9143d4c4710SBarry Smith 915e1c61ce8SBarry Smith .seealso: SNESGetLinearSolveFailures(), SNESGetLinearSolveIterations(), SNESSetMaxLinearSolveFailures(), 9163d4c4710SBarry Smith @*/ 9177087cfbeSBarry Smith PetscErrorCode SNESGetMaxLinearSolveFailures(SNES snes, PetscInt *maxFails) 9183d4c4710SBarry Smith { 9193d4c4710SBarry Smith PetscFunctionBegin; 9200700a824SBarry Smith PetscValidHeaderSpecific(snes,SNES_CLASSID,1); 9213d4c4710SBarry Smith PetscValidIntPointer(maxFails,2); 9223d4c4710SBarry Smith *maxFails = snes->maxLinearSolveFailures; 9233d4c4710SBarry Smith PetscFunctionReturn(0); 9243d4c4710SBarry Smith } 9253d4c4710SBarry Smith 9263d4c4710SBarry Smith #undef __FUNCT__ 927b850b91aSLisandro Dalcin #define __FUNCT__ "SNESGetLinearSolveIterations" 928c96a6f78SLois Curfman McInnes /*@ 929b850b91aSLisandro Dalcin SNESGetLinearSolveIterations - Gets the total number of linear iterations 930c96a6f78SLois Curfman McInnes used by the nonlinear solver. 931c96a6f78SLois Curfman McInnes 932c7afd0dbSLois Curfman McInnes Not Collective 933c7afd0dbSLois Curfman McInnes 934c96a6f78SLois Curfman McInnes Input Parameter: 935c96a6f78SLois Curfman McInnes . snes - SNES context 936c96a6f78SLois Curfman McInnes 937c96a6f78SLois Curfman McInnes Output Parameter: 938c96a6f78SLois Curfman McInnes . lits - number of linear iterations 939c96a6f78SLois Curfman McInnes 940c96a6f78SLois Curfman McInnes Notes: 941c96a6f78SLois Curfman McInnes This counter is reset to zero for each successive call to SNESSolve(). 942c96a6f78SLois Curfman McInnes 94336851e7fSLois Curfman McInnes Level: intermediate 94436851e7fSLois Curfman McInnes 945c96a6f78SLois Curfman McInnes .keywords: SNES, nonlinear, get, number, linear, iterations 9462b668275SBarry Smith 9478c7482ecSBarry Smith .seealso: SNESGetIterationNumber(), SNESGetFunctionNorm(), SNESGetLinearSolveFailures(), SNESGetMaxLinearSolveFailures() 948c96a6f78SLois Curfman McInnes @*/ 9497087cfbeSBarry Smith PetscErrorCode SNESGetLinearSolveIterations(SNES snes,PetscInt* lits) 950c96a6f78SLois Curfman McInnes { 9513a40ed3dSBarry Smith PetscFunctionBegin; 9520700a824SBarry Smith PetscValidHeaderSpecific(snes,SNES_CLASSID,1); 9534482741eSBarry Smith PetscValidIntPointer(lits,2); 954c96a6f78SLois Curfman McInnes *lits = snes->linear_its; 9553a40ed3dSBarry Smith PetscFunctionReturn(0); 956c96a6f78SLois Curfman McInnes } 957c96a6f78SLois Curfman McInnes 9584a2ae208SSatish Balay #undef __FUNCT__ 95994b7f48cSBarry Smith #define __FUNCT__ "SNESGetKSP" 96052baeb72SSatish Balay /*@ 96194b7f48cSBarry Smith SNESGetKSP - Returns the KSP context for a SNES solver. 9629b94acceSBarry Smith 96394b7f48cSBarry Smith Not Collective, but if SNES object is parallel, then KSP object is parallel 964c7afd0dbSLois Curfman McInnes 9659b94acceSBarry Smith Input Parameter: 9669b94acceSBarry Smith . snes - the SNES context 9679b94acceSBarry Smith 9689b94acceSBarry Smith Output Parameter: 96994b7f48cSBarry Smith . ksp - the KSP context 9709b94acceSBarry Smith 9719b94acceSBarry Smith Notes: 97294b7f48cSBarry Smith The user can then directly manipulate the KSP context to set various 9739b94acceSBarry Smith options, etc. Likewise, the user can then extract and manipulate the 9742999313aSBarry Smith PC contexts as well. 9759b94acceSBarry Smith 97636851e7fSLois Curfman McInnes Level: beginner 97736851e7fSLois Curfman McInnes 97894b7f48cSBarry Smith .keywords: SNES, nonlinear, get, KSP, context 9799b94acceSBarry Smith 9802999313aSBarry Smith .seealso: KSPGetPC(), SNESCreate(), KSPCreate(), SNESSetKSP() 9819b94acceSBarry Smith @*/ 9827087cfbeSBarry Smith PetscErrorCode SNESGetKSP(SNES snes,KSP *ksp) 9839b94acceSBarry Smith { 9841cee3971SBarry Smith PetscErrorCode ierr; 9851cee3971SBarry Smith 9863a40ed3dSBarry Smith PetscFunctionBegin; 9870700a824SBarry Smith PetscValidHeaderSpecific(snes,SNES_CLASSID,1); 9884482741eSBarry Smith PetscValidPointer(ksp,2); 9891cee3971SBarry Smith 9901cee3971SBarry Smith if (!snes->ksp) { 9911cee3971SBarry Smith ierr = KSPCreate(((PetscObject)snes)->comm,&snes->ksp);CHKERRQ(ierr); 9921cee3971SBarry Smith ierr = PetscObjectIncrementTabLevel((PetscObject)snes->ksp,(PetscObject)snes,1);CHKERRQ(ierr); 9931cee3971SBarry Smith ierr = PetscLogObjectParent(snes,snes->ksp);CHKERRQ(ierr); 9941cee3971SBarry Smith } 99594b7f48cSBarry Smith *ksp = snes->ksp; 9963a40ed3dSBarry Smith PetscFunctionReturn(0); 9979b94acceSBarry Smith } 99882bf6240SBarry Smith 9994a2ae208SSatish Balay #undef __FUNCT__ 10002999313aSBarry Smith #define __FUNCT__ "SNESSetKSP" 10012999313aSBarry Smith /*@ 10022999313aSBarry Smith SNESSetKSP - Sets a KSP context for the SNES object to use 10032999313aSBarry Smith 10042999313aSBarry Smith Not Collective, but the SNES and KSP objects must live on the same MPI_Comm 10052999313aSBarry Smith 10062999313aSBarry Smith Input Parameters: 10072999313aSBarry Smith + snes - the SNES context 10082999313aSBarry Smith - ksp - the KSP context 10092999313aSBarry Smith 10102999313aSBarry Smith Notes: 10112999313aSBarry Smith The SNES object already has its KSP object, you can obtain with SNESGetKSP() 10122999313aSBarry Smith so this routine is rarely needed. 10132999313aSBarry Smith 10142999313aSBarry Smith The KSP object that is already in the SNES object has its reference count 10152999313aSBarry Smith decreased by one. 10162999313aSBarry Smith 10172999313aSBarry Smith Level: developer 10182999313aSBarry Smith 10192999313aSBarry Smith .keywords: SNES, nonlinear, get, KSP, context 10202999313aSBarry Smith 10212999313aSBarry Smith .seealso: KSPGetPC(), SNESCreate(), KSPCreate(), SNESSetKSP() 10222999313aSBarry Smith @*/ 10237087cfbeSBarry Smith PetscErrorCode SNESSetKSP(SNES snes,KSP ksp) 10242999313aSBarry Smith { 10252999313aSBarry Smith PetscErrorCode ierr; 10262999313aSBarry Smith 10272999313aSBarry Smith PetscFunctionBegin; 10280700a824SBarry Smith PetscValidHeaderSpecific(snes,SNES_CLASSID,1); 10290700a824SBarry Smith PetscValidHeaderSpecific(ksp,KSP_CLASSID,2); 10302999313aSBarry Smith PetscCheckSameComm(snes,1,ksp,2); 10317dcf0eaaSdalcinl ierr = PetscObjectReference((PetscObject)ksp);CHKERRQ(ierr); 1032906ed7ccSBarry Smith if (snes->ksp) {ierr = PetscObjectDereference((PetscObject)snes->ksp);CHKERRQ(ierr);} 10332999313aSBarry Smith snes->ksp = ksp; 10342999313aSBarry Smith PetscFunctionReturn(0); 10352999313aSBarry Smith } 10362999313aSBarry Smith 10377adad957SLisandro Dalcin #if 0 10382999313aSBarry Smith #undef __FUNCT__ 10394a2ae208SSatish Balay #define __FUNCT__ "SNESPublish_Petsc" 10406849ba73SBarry Smith static PetscErrorCode SNESPublish_Petsc(PetscObject obj) 1041e24b481bSBarry Smith { 1042e24b481bSBarry Smith PetscFunctionBegin; 1043e24b481bSBarry Smith PetscFunctionReturn(0); 1044e24b481bSBarry Smith } 10457adad957SLisandro Dalcin #endif 1046e24b481bSBarry Smith 10479b94acceSBarry Smith /* -----------------------------------------------------------*/ 10484a2ae208SSatish Balay #undef __FUNCT__ 10494a2ae208SSatish Balay #define __FUNCT__ "SNESCreate" 105052baeb72SSatish Balay /*@ 10519b94acceSBarry Smith SNESCreate - Creates a nonlinear solver context. 10529b94acceSBarry Smith 1053c7afd0dbSLois Curfman McInnes Collective on MPI_Comm 1054c7afd0dbSLois Curfman McInnes 1055c7afd0dbSLois Curfman McInnes Input Parameters: 1056906ed7ccSBarry Smith . comm - MPI communicator 10579b94acceSBarry Smith 10589b94acceSBarry Smith Output Parameter: 10599b94acceSBarry Smith . outsnes - the new SNES context 10609b94acceSBarry Smith 1061c7afd0dbSLois Curfman McInnes Options Database Keys: 1062c7afd0dbSLois Curfman McInnes + -snes_mf - Activates default matrix-free Jacobian-vector products, 1063c7afd0dbSLois Curfman McInnes and no preconditioning matrix 1064c7afd0dbSLois Curfman McInnes . -snes_mf_operator - Activates default matrix-free Jacobian-vector 1065c7afd0dbSLois Curfman McInnes products, and a user-provided preconditioning matrix 1066c7afd0dbSLois Curfman McInnes as set by SNESSetJacobian() 1067c7afd0dbSLois Curfman McInnes - -snes_fd - Uses (slow!) finite differences to compute Jacobian 1068c1f60f51SBarry Smith 106936851e7fSLois Curfman McInnes Level: beginner 107036851e7fSLois Curfman McInnes 10719b94acceSBarry Smith .keywords: SNES, nonlinear, create, context 10729b94acceSBarry Smith 1073a8054027SBarry Smith .seealso: SNESSolve(), SNESDestroy(), SNES, SNESSetLagPreconditioner() 1074a8054027SBarry Smith 10759b94acceSBarry Smith @*/ 10767087cfbeSBarry Smith PetscErrorCode SNESCreate(MPI_Comm comm,SNES *outsnes) 10779b94acceSBarry Smith { 1078dfbe8321SBarry Smith PetscErrorCode ierr; 10799b94acceSBarry Smith SNES snes; 1080fa9f3622SBarry Smith SNESKSPEW *kctx; 108137fcc0dbSBarry Smith 10823a40ed3dSBarry Smith PetscFunctionBegin; 1083ed1caa07SMatthew Knepley PetscValidPointer(outsnes,2); 10848ba1e511SMatthew Knepley *outsnes = PETSC_NULL; 10858ba1e511SMatthew Knepley #ifndef PETSC_USE_DYNAMIC_LIBRARIES 10868ba1e511SMatthew Knepley ierr = SNESInitializePackage(PETSC_NULL);CHKERRQ(ierr); 10878ba1e511SMatthew Knepley #endif 10888ba1e511SMatthew Knepley 10893194b578SJed Brown ierr = PetscHeaderCreate(snes,_p_SNES,struct _SNESOps,SNES_CLASSID,0,"SNES","Nonlinear solver","SNES",comm,SNESDestroy,SNESView);CHKERRQ(ierr); 10907adad957SLisandro Dalcin 109185385478SLisandro Dalcin snes->ops->converged = SNESDefaultConverged; 10922c155ee1SBarry Smith snes->usesksp = PETSC_TRUE; 10939b94acceSBarry Smith snes->max_its = 50; 10949750a799SBarry Smith snes->max_funcs = 10000; 10959b94acceSBarry Smith snes->norm = 0.0; 1096b4874afaSBarry Smith snes->rtol = 1.e-8; 1097b4874afaSBarry Smith snes->ttol = 0.0; 109870441072SBarry Smith snes->abstol = 1.e-50; 10999b94acceSBarry Smith snes->xtol = 1.e-8; 11004b27c08aSLois Curfman McInnes snes->deltatol = 1.e-12; 11019b94acceSBarry Smith snes->nfuncs = 0; 110250ffb88aSMatthew Knepley snes->numFailures = 0; 110350ffb88aSMatthew Knepley snes->maxFailures = 1; 11047a00f4a9SLois Curfman McInnes snes->linear_its = 0; 1105e35cf81dSBarry Smith snes->lagjacobian = 1; 1106a8054027SBarry Smith snes->lagpreconditioner = 1; 1107639f9d9dSBarry Smith snes->numbermonitors = 0; 11089b94acceSBarry Smith snes->data = 0; 11094dc4c822SBarry Smith snes->setupcalled = PETSC_FALSE; 1110186905e3SBarry Smith snes->ksp_ewconv = PETSC_FALSE; 11116f24a144SLois Curfman McInnes snes->nwork = 0; 111258c9b817SLisandro Dalcin snes->work = 0; 111358c9b817SLisandro Dalcin snes->nvwork = 0; 111458c9b817SLisandro Dalcin snes->vwork = 0; 1115758f92a0SBarry Smith snes->conv_hist_len = 0; 1116758f92a0SBarry Smith snes->conv_hist_max = 0; 1117758f92a0SBarry Smith snes->conv_hist = PETSC_NULL; 1118758f92a0SBarry Smith snes->conv_hist_its = PETSC_NULL; 1119758f92a0SBarry Smith snes->conv_hist_reset = PETSC_TRUE; 1120184914b5SBarry Smith snes->reason = SNES_CONVERGED_ITERATING; 11219b94acceSBarry Smith 1122ea630c6eSPeter Brune /* initialize the line search options */ 1123ea630c6eSPeter Brune snes->ls_type = SNES_LS_BASIC; 1124af60355fSPeter Brune snes->ls_its = 1; 1125ea630c6eSPeter Brune snes->damping = 1.0; 1126ea630c6eSPeter Brune snes->maxstep = 1e8; 1127ea630c6eSPeter Brune snes->steptol = 1e-12; 1128ea630c6eSPeter Brune snes->ls_alpha = 1e-4; 1129ea630c6eSPeter Brune snes->ls_monitor = PETSC_NULL; 1130ea630c6eSPeter Brune 1131ea630c6eSPeter Brune snes->ops->linesearch = PETSC_NULL; 1132ea630c6eSPeter Brune snes->precheck = PETSC_NULL; 1133ea630c6eSPeter Brune snes->ops->precheckstep = PETSC_NULL; 1134ea630c6eSPeter Brune snes->postcheck = PETSC_NULL; 1135ea630c6eSPeter Brune snes->ops->postcheckstep= PETSC_NULL; 1136ea630c6eSPeter Brune 11373d4c4710SBarry Smith snes->numLinearSolveFailures = 0; 11383d4c4710SBarry Smith snes->maxLinearSolveFailures = 1; 11393d4c4710SBarry Smith 11409b94acceSBarry Smith /* Create context to compute Eisenstat-Walker relative tolerance for KSP */ 114138f2d2fdSLisandro Dalcin ierr = PetscNewLog(snes,SNESKSPEW,&kctx);CHKERRQ(ierr); 11429b94acceSBarry Smith snes->kspconvctx = (void*)kctx; 11439b94acceSBarry Smith kctx->version = 2; 11449b94acceSBarry Smith kctx->rtol_0 = .3; /* Eisenstat and Walker suggest rtol_0=.5, but 11459b94acceSBarry Smith this was too large for some test cases */ 114675567043SBarry Smith kctx->rtol_last = 0.0; 11479b94acceSBarry Smith kctx->rtol_max = .9; 11489b94acceSBarry Smith kctx->gamma = 1.0; 114971f87433Sdalcinl kctx->alpha = .5*(1.0 + sqrt(5.0)); 115071f87433Sdalcinl kctx->alpha2 = kctx->alpha; 11519b94acceSBarry Smith kctx->threshold = .1; 115275567043SBarry Smith kctx->lresid_last = 0.0; 115375567043SBarry Smith kctx->norm_last = 0.0; 11549b94acceSBarry Smith 11559b94acceSBarry Smith *outsnes = snes; 11563a40ed3dSBarry Smith PetscFunctionReturn(0); 11579b94acceSBarry Smith } 11589b94acceSBarry Smith 11594a2ae208SSatish Balay #undef __FUNCT__ 11604a2ae208SSatish Balay #define __FUNCT__ "SNESSetFunction" 11619b94acceSBarry Smith /*@C 11629b94acceSBarry Smith SNESSetFunction - Sets the function evaluation routine and function 11639b94acceSBarry Smith vector for use by the SNES routines in solving systems of nonlinear 11649b94acceSBarry Smith equations. 11659b94acceSBarry Smith 11663f9fe445SBarry Smith Logically Collective on SNES 1167fee21e36SBarry Smith 1168c7afd0dbSLois Curfman McInnes Input Parameters: 1169c7afd0dbSLois Curfman McInnes + snes - the SNES context 1170c7afd0dbSLois Curfman McInnes . r - vector to store function value 1171de044059SHong Zhang . func - function evaluation routine 1172c7afd0dbSLois Curfman McInnes - ctx - [optional] user-defined context for private data for the 1173c7afd0dbSLois Curfman McInnes function evaluation routine (may be PETSC_NULL) 11749b94acceSBarry Smith 1175c7afd0dbSLois Curfman McInnes Calling sequence of func: 11768d76a1e5SLois Curfman McInnes $ func (SNES snes,Vec x,Vec f,void *ctx); 1177c7afd0dbSLois Curfman McInnes 1178313e4042SLois Curfman McInnes . f - function vector 1179c7afd0dbSLois Curfman McInnes - ctx - optional user-defined function context 11809b94acceSBarry Smith 11819b94acceSBarry Smith Notes: 11829b94acceSBarry Smith The Newton-like methods typically solve linear systems of the form 11839b94acceSBarry Smith $ f'(x) x = -f(x), 1184c7afd0dbSLois Curfman McInnes where f'(x) denotes the Jacobian matrix and f(x) is the function. 11859b94acceSBarry Smith 118636851e7fSLois Curfman McInnes Level: beginner 118736851e7fSLois Curfman McInnes 11889b94acceSBarry Smith .keywords: SNES, nonlinear, set, function 11899b94acceSBarry Smith 1190a86d99e1SLois Curfman McInnes .seealso: SNESGetFunction(), SNESComputeFunction(), SNESSetJacobian() 11919b94acceSBarry Smith @*/ 11927087cfbeSBarry Smith PetscErrorCode SNESSetFunction(SNES snes,Vec r,PetscErrorCode (*func)(SNES,Vec,Vec,void*),void *ctx) 11939b94acceSBarry Smith { 119485385478SLisandro Dalcin PetscErrorCode ierr; 11953a40ed3dSBarry Smith PetscFunctionBegin; 11960700a824SBarry Smith PetscValidHeaderSpecific(snes,SNES_CLASSID,1); 1197d2a683ecSLisandro Dalcin if (r) { 1198d2a683ecSLisandro Dalcin PetscValidHeaderSpecific(r,VEC_CLASSID,2); 1199d2a683ecSLisandro Dalcin PetscCheckSameComm(snes,1,r,2); 120085385478SLisandro Dalcin ierr = PetscObjectReference((PetscObject)r);CHKERRQ(ierr); 12016bf464f9SBarry Smith ierr = VecDestroy(&snes->vec_func);CHKERRQ(ierr); 120285385478SLisandro Dalcin snes->vec_func = r; 1203d2a683ecSLisandro Dalcin } else if (!snes->vec_func && snes->dm) { 1204d2a683ecSLisandro Dalcin ierr = DMCreateGlobalVector(snes->dm,&snes->vec_func);CHKERRQ(ierr); 1205d2a683ecSLisandro Dalcin } 1206d2a683ecSLisandro Dalcin if (func) snes->ops->computefunction = func; 1207d2a683ecSLisandro Dalcin if (ctx) snes->funP = ctx; 12083a40ed3dSBarry Smith PetscFunctionReturn(0); 12099b94acceSBarry Smith } 12109b94acceSBarry Smith 1211646217ecSPeter Brune 1212646217ecSPeter Brune #undef __FUNCT__ 1213646217ecSPeter Brune #define __FUNCT__ "SNESSetGS" 1214646217ecSPeter Brune PetscErrorCode SNESSetGS(SNES snes, PetscErrorCode (*gsfunc)(SNES,Vec,Vec,void *), void * ctx) { 1215646217ecSPeter Brune PetscFunctionBegin; 1216646217ecSPeter Brune if (gsfunc) snes->ops->computegs = gsfunc; 1217646217ecSPeter Brune if (ctx) snes->gsP = ctx; 1218646217ecSPeter Brune PetscFunctionReturn(0); 1219646217ecSPeter Brune } 1220646217ecSPeter Brune 1221646217ecSPeter Brune 1222d25893d9SBarry Smith #undef __FUNCT__ 1223d25893d9SBarry Smith #define __FUNCT__ "SNESSetComputeInitialGuess" 1224d25893d9SBarry Smith /*@C 1225d25893d9SBarry Smith SNESSetComputeInitialGuess - Sets a routine used to compute an initial guess for the problem 1226d25893d9SBarry Smith 1227d25893d9SBarry Smith Logically Collective on SNES 1228d25893d9SBarry Smith 1229d25893d9SBarry Smith Input Parameters: 1230d25893d9SBarry Smith + snes - the SNES context 1231d25893d9SBarry Smith . func - function evaluation routine 1232d25893d9SBarry Smith - ctx - [optional] user-defined context for private data for the 1233d25893d9SBarry Smith function evaluation routine (may be PETSC_NULL) 1234d25893d9SBarry Smith 1235d25893d9SBarry Smith Calling sequence of func: 1236d25893d9SBarry Smith $ func (SNES snes,Vec x,void *ctx); 1237d25893d9SBarry Smith 1238d25893d9SBarry Smith . f - function vector 1239d25893d9SBarry Smith - ctx - optional user-defined function context 1240d25893d9SBarry Smith 1241d25893d9SBarry Smith Level: intermediate 1242d25893d9SBarry Smith 1243d25893d9SBarry Smith .keywords: SNES, nonlinear, set, function 1244d25893d9SBarry Smith 1245d25893d9SBarry Smith .seealso: SNESGetFunction(), SNESComputeFunction(), SNESSetJacobian() 1246d25893d9SBarry Smith @*/ 1247d25893d9SBarry Smith PetscErrorCode SNESSetComputeInitialGuess(SNES snes,PetscErrorCode (*func)(SNES,Vec,void*),void *ctx) 1248d25893d9SBarry Smith { 1249d25893d9SBarry Smith PetscFunctionBegin; 1250d25893d9SBarry Smith PetscValidHeaderSpecific(snes,SNES_CLASSID,1); 1251d25893d9SBarry Smith if (func) snes->ops->computeinitialguess = func; 1252d25893d9SBarry Smith if (ctx) snes->initialguessP = ctx; 1253d25893d9SBarry Smith PetscFunctionReturn(0); 1254d25893d9SBarry Smith } 1255d25893d9SBarry Smith 12563ab0aad5SBarry Smith /* --------------------------------------------------------------- */ 12573ab0aad5SBarry Smith #undef __FUNCT__ 12581096aae1SMatthew Knepley #define __FUNCT__ "SNESGetRhs" 12591096aae1SMatthew Knepley /*@C 12601096aae1SMatthew Knepley SNESGetRhs - Gets the vector for solving F(x) = rhs. If rhs is not set 12611096aae1SMatthew Knepley it assumes a zero right hand side. 12621096aae1SMatthew Knepley 12633f9fe445SBarry Smith Logically Collective on SNES 12641096aae1SMatthew Knepley 12651096aae1SMatthew Knepley Input Parameter: 12661096aae1SMatthew Knepley . snes - the SNES context 12671096aae1SMatthew Knepley 12681096aae1SMatthew Knepley Output Parameter: 1269bc08b0f1SBarry Smith . rhs - the right hand side vector or PETSC_NULL if the right hand side vector is null 12701096aae1SMatthew Knepley 12711096aae1SMatthew Knepley Level: intermediate 12721096aae1SMatthew Knepley 12731096aae1SMatthew Knepley .keywords: SNES, nonlinear, get, function, right hand side 12741096aae1SMatthew Knepley 127585385478SLisandro Dalcin .seealso: SNESGetSolution(), SNESGetFunction(), SNESComputeFunction(), SNESSetJacobian(), SNESSetFunction() 12761096aae1SMatthew Knepley @*/ 12777087cfbeSBarry Smith PetscErrorCode SNESGetRhs(SNES snes,Vec *rhs) 12781096aae1SMatthew Knepley { 12791096aae1SMatthew Knepley PetscFunctionBegin; 12800700a824SBarry Smith PetscValidHeaderSpecific(snes,SNES_CLASSID,1); 12811096aae1SMatthew Knepley PetscValidPointer(rhs,2); 128285385478SLisandro Dalcin *rhs = snes->vec_rhs; 12831096aae1SMatthew Knepley PetscFunctionReturn(0); 12841096aae1SMatthew Knepley } 12851096aae1SMatthew Knepley 12861096aae1SMatthew Knepley #undef __FUNCT__ 12874a2ae208SSatish Balay #define __FUNCT__ "SNESComputeFunction" 12889b94acceSBarry Smith /*@ 128936851e7fSLois Curfman McInnes SNESComputeFunction - Calls the function that has been set with 12909b94acceSBarry Smith SNESSetFunction(). 12919b94acceSBarry Smith 1292c7afd0dbSLois Curfman McInnes Collective on SNES 1293c7afd0dbSLois Curfman McInnes 12949b94acceSBarry Smith Input Parameters: 1295c7afd0dbSLois Curfman McInnes + snes - the SNES context 1296c7afd0dbSLois Curfman McInnes - x - input vector 12979b94acceSBarry Smith 12989b94acceSBarry Smith Output Parameter: 12993638b69dSLois Curfman McInnes . y - function vector, as set by SNESSetFunction() 13009b94acceSBarry Smith 13011bffabb2SLois Curfman McInnes Notes: 130236851e7fSLois Curfman McInnes SNESComputeFunction() is typically used within nonlinear solvers 130336851e7fSLois Curfman McInnes implementations, so most users would not generally call this routine 130436851e7fSLois Curfman McInnes themselves. 130536851e7fSLois Curfman McInnes 130636851e7fSLois Curfman McInnes Level: developer 130736851e7fSLois Curfman McInnes 13089b94acceSBarry Smith .keywords: SNES, nonlinear, compute, function 13099b94acceSBarry Smith 1310a86d99e1SLois Curfman McInnes .seealso: SNESSetFunction(), SNESGetFunction() 13119b94acceSBarry Smith @*/ 13127087cfbeSBarry Smith PetscErrorCode SNESComputeFunction(SNES snes,Vec x,Vec y) 13139b94acceSBarry Smith { 1314dfbe8321SBarry Smith PetscErrorCode ierr; 13159b94acceSBarry Smith 13163a40ed3dSBarry Smith PetscFunctionBegin; 13170700a824SBarry Smith PetscValidHeaderSpecific(snes,SNES_CLASSID,1); 13180700a824SBarry Smith PetscValidHeaderSpecific(x,VEC_CLASSID,2); 13190700a824SBarry Smith PetscValidHeaderSpecific(y,VEC_CLASSID,3); 1320c9780b6fSBarry Smith PetscCheckSameComm(snes,1,x,2); 1321c9780b6fSBarry Smith PetscCheckSameComm(snes,1,y,3); 1322184914b5SBarry Smith 1323d5ba7fb7SMatthew Knepley ierr = PetscLogEventBegin(SNES_FunctionEval,snes,x,y,0);CHKERRQ(ierr); 1324e7788613SBarry Smith if (snes->ops->computefunction) { 1325d64ed03dSBarry Smith PetscStackPush("SNES user function"); 132639d508bbSBarry Smith ierr = (*snes->ops->computefunction)(snes,x,y,snes->funP);CHKERRQ(ierr); 1327d64ed03dSBarry Smith PetscStackPop; 132873250ac0SBarry Smith } else if (snes->dm) { 1329644e2e5bSBarry Smith ierr = DMComputeFunction(snes->dm,x,y);CHKERRQ(ierr); 1330c90fad12SPeter Brune } else if (snes->vec_rhs) { 1331c90fad12SPeter Brune ierr = MatMult(snes->jacobian, x, y);CHKERRQ(ierr); 1332644e2e5bSBarry Smith } else SETERRQ(PETSC_COMM_SELF,PETSC_ERR_ARG_WRONGSTATE, "Must call SNESSetFunction() or SNESSetDM() before SNESComputeFunction(), likely called from SNESSolve()."); 133385385478SLisandro Dalcin if (snes->vec_rhs) { 133485385478SLisandro Dalcin ierr = VecAXPY(y,-1.0,snes->vec_rhs);CHKERRQ(ierr); 13353ab0aad5SBarry Smith } 1336ae3c334cSLois Curfman McInnes snes->nfuncs++; 1337d5ba7fb7SMatthew Knepley ierr = PetscLogEventEnd(SNES_FunctionEval,snes,x,y,0);CHKERRQ(ierr); 13383a40ed3dSBarry Smith PetscFunctionReturn(0); 13399b94acceSBarry Smith } 13409b94acceSBarry Smith 13414a2ae208SSatish Balay #undef __FUNCT__ 1342646217ecSPeter Brune #define __FUNCT__ "SNESComputeGS" 1343646217ecSPeter Brune PetscErrorCode SNESComputeGS(SNES snes,Vec b,Vec x) 1344646217ecSPeter Brune { 1345646217ecSPeter Brune PetscErrorCode ierr; 1346646217ecSPeter Brune 1347646217ecSPeter Brune PetscFunctionBegin; 1348646217ecSPeter Brune PetscValidHeaderSpecific(snes,SNES_CLASSID,1); 1349646217ecSPeter Brune PetscValidHeaderSpecific(x,VEC_CLASSID,2); 1350646217ecSPeter Brune if (b) PetscValidHeaderSpecific(b,VEC_CLASSID,3); 1351646217ecSPeter Brune PetscCheckSameComm(snes,1,x,2); 1352646217ecSPeter Brune if(b) PetscCheckSameComm(snes,1,b,3); 1353646217ecSPeter Brune if (snes->ops->computegs) { 1354646217ecSPeter Brune PetscStackPush("SNES user GS"); 1355646217ecSPeter Brune ierr = (*snes->ops->computegs)(snes,x,b,snes->gsP);CHKERRQ(ierr); 1356646217ecSPeter Brune PetscStackPop; 1357646217ecSPeter Brune } else SETERRQ(PETSC_COMM_SELF,PETSC_ERR_ARG_WRONGSTATE, "Must call SNESSetGS() before SNESComputeGS(), likely called from SNESSolve()."); 1358646217ecSPeter Brune PetscFunctionReturn(0); 1359646217ecSPeter Brune } 1360646217ecSPeter Brune 1361646217ecSPeter Brune 1362646217ecSPeter Brune #undef __FUNCT__ 13634a2ae208SSatish Balay #define __FUNCT__ "SNESComputeJacobian" 136462fef451SLois Curfman McInnes /*@ 136562fef451SLois Curfman McInnes SNESComputeJacobian - Computes the Jacobian matrix that has been 136662fef451SLois Curfman McInnes set with SNESSetJacobian(). 136762fef451SLois Curfman McInnes 1368c7afd0dbSLois Curfman McInnes Collective on SNES and Mat 1369c7afd0dbSLois Curfman McInnes 137062fef451SLois Curfman McInnes Input Parameters: 1371c7afd0dbSLois Curfman McInnes + snes - the SNES context 1372c7afd0dbSLois Curfman McInnes - x - input vector 137362fef451SLois Curfman McInnes 137462fef451SLois Curfman McInnes Output Parameters: 1375c7afd0dbSLois Curfman McInnes + A - Jacobian matrix 137662fef451SLois Curfman McInnes . B - optional preconditioning matrix 13772b668275SBarry Smith - flag - flag indicating matrix structure (one of, SAME_NONZERO_PATTERN,DIFFERENT_NONZERO_PATTERN,SAME_PRECONDITIONER) 1378fee21e36SBarry Smith 1379e35cf81dSBarry Smith Options Database Keys: 1380e35cf81dSBarry Smith + -snes_lag_preconditioner <lag> 1381693365a8SJed Brown . -snes_lag_jacobian <lag> 1382693365a8SJed Brown . -snes_compare_explicit - Compare the computed Jacobian to the finite difference Jacobian and output the differences 1383693365a8SJed Brown . -snes_compare_explicit_draw - Compare the computed Jacobian to the finite difference Jacobian and draw the result 1384693365a8SJed Brown . -snes_compare_explicit_contour - Compare the computed Jacobian to the finite difference Jacobian and draw a contour plot with the result 13854c30e9fbSJed Brown . -snes_compare_operator - Make the comparison options above use the operator instead of the preconditioning matrix 1386c01495d3SJed Brown . -snes_compare_coloring - Compute the finite differece Jacobian using coloring and display norms of difference 1387c01495d3SJed Brown . -snes_compare_coloring_display - Compute the finite differece Jacobian using coloring and display verbose differences 1388c01495d3SJed Brown . -snes_compare_coloring_threshold - Display only those matrix entries that differ by more than a given threshold 1389c01495d3SJed Brown . -snes_compare_coloring_threshold_atol - Absolute tolerance for difference in matrix entries to be displayed by -snes_compare_coloring_threshold 1390c01495d3SJed Brown . -snes_compare_coloring_threshold_rtol - Relative tolerance for difference in matrix entries to be displayed by -snes_compare_coloring_threshold 13914c30e9fbSJed Brown . -snes_compare_coloring_draw - Compute the finite differece Jacobian using coloring and draw differences 1392c01495d3SJed Brown - -snes_compare_coloring_draw_contour - Compute the finite differece Jacobian using coloring and show contours of matrices and differences 1393c01495d3SJed Brown 1394e35cf81dSBarry Smith 139562fef451SLois Curfman McInnes Notes: 139662fef451SLois Curfman McInnes Most users should not need to explicitly call this routine, as it 139762fef451SLois Curfman McInnes is used internally within the nonlinear solvers. 139862fef451SLois Curfman McInnes 139994b7f48cSBarry Smith See KSPSetOperators() for important information about setting the 1400dc5a77f8SLois Curfman McInnes flag parameter. 140162fef451SLois Curfman McInnes 140236851e7fSLois Curfman McInnes Level: developer 140336851e7fSLois Curfman McInnes 140462fef451SLois Curfman McInnes .keywords: SNES, compute, Jacobian, matrix 140562fef451SLois Curfman McInnes 1406e35cf81dSBarry Smith .seealso: SNESSetJacobian(), KSPSetOperators(), MatStructure, SNESSetLagPreconditioner(), SNESSetLagJacobian() 140762fef451SLois Curfman McInnes @*/ 14087087cfbeSBarry Smith PetscErrorCode SNESComputeJacobian(SNES snes,Vec X,Mat *A,Mat *B,MatStructure *flg) 14099b94acceSBarry Smith { 1410dfbe8321SBarry Smith PetscErrorCode ierr; 1411ace3abfcSBarry Smith PetscBool flag; 14123a40ed3dSBarry Smith 14133a40ed3dSBarry Smith PetscFunctionBegin; 14140700a824SBarry Smith PetscValidHeaderSpecific(snes,SNES_CLASSID,1); 14150700a824SBarry Smith PetscValidHeaderSpecific(X,VEC_CLASSID,2); 14164482741eSBarry Smith PetscValidPointer(flg,5); 1417c9780b6fSBarry Smith PetscCheckSameComm(snes,1,X,2); 1418e7788613SBarry Smith if (!snes->ops->computejacobian) PetscFunctionReturn(0); 1419ebd3b9afSBarry Smith 1420ebd3b9afSBarry Smith /* make sure that MatAssemblyBegin/End() is called on A matrix if it is matrix free */ 1421ebd3b9afSBarry Smith 1422fe3ffe1eSBarry Smith if (snes->lagjacobian == -2) { 1423fe3ffe1eSBarry Smith snes->lagjacobian = -1; 1424fe3ffe1eSBarry Smith ierr = PetscInfo(snes,"Recomputing Jacobian/preconditioner because lag is -2 (means compute Jacobian, but then never again) \n");CHKERRQ(ierr); 1425fe3ffe1eSBarry Smith } else if (snes->lagjacobian == -1) { 1426e35cf81dSBarry Smith *flg = SAME_PRECONDITIONER; 1427e35cf81dSBarry Smith ierr = PetscInfo(snes,"Reusing Jacobian/preconditioner because lag is -1\n");CHKERRQ(ierr); 1428ebd3b9afSBarry Smith ierr = PetscTypeCompare((PetscObject)*A,MATMFFD,&flag);CHKERRQ(ierr); 1429ebd3b9afSBarry Smith if (flag) { 1430ebd3b9afSBarry Smith ierr = MatAssemblyBegin(*A,MAT_FINAL_ASSEMBLY);CHKERRQ(ierr); 1431ebd3b9afSBarry Smith ierr = MatAssemblyEnd(*A,MAT_FINAL_ASSEMBLY);CHKERRQ(ierr); 1432ebd3b9afSBarry Smith } 1433e35cf81dSBarry Smith PetscFunctionReturn(0); 1434e35cf81dSBarry Smith } else if (snes->lagjacobian > 1 && snes->iter % snes->lagjacobian) { 1435e35cf81dSBarry Smith *flg = SAME_PRECONDITIONER; 1436e35cf81dSBarry Smith ierr = PetscInfo2(snes,"Reusing Jacobian/preconditioner because lag is %D and SNES iteration is %D\n",snes->lagjacobian,snes->iter);CHKERRQ(ierr); 1437ebd3b9afSBarry Smith ierr = PetscTypeCompare((PetscObject)*A,MATMFFD,&flag);CHKERRQ(ierr); 1438ebd3b9afSBarry Smith if (flag) { 1439ebd3b9afSBarry Smith ierr = MatAssemblyBegin(*A,MAT_FINAL_ASSEMBLY);CHKERRQ(ierr); 1440ebd3b9afSBarry Smith ierr = MatAssemblyEnd(*A,MAT_FINAL_ASSEMBLY);CHKERRQ(ierr); 1441ebd3b9afSBarry Smith } 1442e35cf81dSBarry Smith PetscFunctionReturn(0); 1443e35cf81dSBarry Smith } 1444e35cf81dSBarry Smith 1445c4fc05e7SBarry Smith *flg = DIFFERENT_NONZERO_PATTERN; 1446e35cf81dSBarry Smith ierr = PetscLogEventBegin(SNES_JacobianEval,snes,X,*A,*B);CHKERRQ(ierr); 1447d64ed03dSBarry Smith PetscStackPush("SNES user Jacobian function"); 1448e7788613SBarry Smith ierr = (*snes->ops->computejacobian)(snes,X,A,B,flg,snes->jacP);CHKERRQ(ierr); 1449d64ed03dSBarry Smith PetscStackPop; 1450d5ba7fb7SMatthew Knepley ierr = PetscLogEventEnd(SNES_JacobianEval,snes,X,*A,*B);CHKERRQ(ierr); 1451a8054027SBarry Smith 14523b4f5425SBarry Smith if (snes->lagpreconditioner == -2) { 14533b4f5425SBarry Smith ierr = PetscInfo(snes,"Rebuilding preconditioner exactly once since lag is -2\n");CHKERRQ(ierr); 14543b4f5425SBarry Smith snes->lagpreconditioner = -1; 14553b4f5425SBarry Smith } else if (snes->lagpreconditioner == -1) { 1456a8054027SBarry Smith *flg = SAME_PRECONDITIONER; 1457a8054027SBarry Smith ierr = PetscInfo(snes,"Reusing preconditioner because lag is -1\n");CHKERRQ(ierr); 1458a8054027SBarry Smith } else if (snes->lagpreconditioner > 1 && snes->iter % snes->lagpreconditioner) { 1459a8054027SBarry Smith *flg = SAME_PRECONDITIONER; 1460a8054027SBarry Smith ierr = PetscInfo2(snes,"Reusing preconditioner because lag is %D and SNES iteration is %D\n",snes->lagpreconditioner,snes->iter);CHKERRQ(ierr); 1461a8054027SBarry Smith } 1462a8054027SBarry Smith 14636d84be18SBarry Smith /* make sure user returned a correct Jacobian and preconditioner */ 14640700a824SBarry Smith /* PetscValidHeaderSpecific(*A,MAT_CLASSID,3); 14650700a824SBarry Smith PetscValidHeaderSpecific(*B,MAT_CLASSID,4); */ 1466693365a8SJed Brown { 1467693365a8SJed Brown PetscBool flag = PETSC_FALSE,flag_draw = PETSC_FALSE,flag_contour = PETSC_FALSE,flag_operator = PETSC_FALSE; 1468693365a8SJed Brown ierr = PetscOptionsGetBool(((PetscObject)snes)->prefix,"-snes_compare_explicit",&flag,PETSC_NULL);CHKERRQ(ierr); 1469693365a8SJed Brown ierr = PetscOptionsGetBool(((PetscObject)snes)->prefix,"-snes_compare_explicit_draw",&flag_draw,PETSC_NULL);CHKERRQ(ierr); 1470693365a8SJed Brown ierr = PetscOptionsGetBool(((PetscObject)snes)->prefix,"-snes_compare_explicit_draw_contour",&flag_contour,PETSC_NULL);CHKERRQ(ierr); 1471693365a8SJed Brown ierr = PetscOptionsGetBool(((PetscObject)snes)->prefix,"-snes_compare_operator",&flag_operator,PETSC_NULL);CHKERRQ(ierr); 1472693365a8SJed Brown if (flag || flag_draw || flag_contour) { 1473693365a8SJed Brown Mat Bexp_mine = PETSC_NULL,Bexp,FDexp; 1474693365a8SJed Brown MatStructure mstruct; 1475693365a8SJed Brown PetscViewer vdraw,vstdout; 14766b3a5b13SJed Brown PetscBool flg; 1477693365a8SJed Brown if (flag_operator) { 1478693365a8SJed Brown ierr = MatComputeExplicitOperator(*A,&Bexp_mine);CHKERRQ(ierr); 1479693365a8SJed Brown Bexp = Bexp_mine; 1480693365a8SJed Brown } else { 1481693365a8SJed Brown /* See if the preconditioning matrix can be viewed and added directly */ 1482693365a8SJed Brown ierr = PetscTypeCompareAny((PetscObject)*B,&flg,MATSEQAIJ,MATMPIAIJ,MATSEQDENSE,MATMPIDENSE,MATSEQBAIJ,MATMPIBAIJ,MATSEQSBAIJ,MATMPIBAIJ,"");CHKERRQ(ierr); 1483693365a8SJed Brown if (flg) Bexp = *B; 1484693365a8SJed Brown else { 1485693365a8SJed Brown /* If the "preconditioning" matrix is itself MATSHELL or some other type without direct support */ 1486693365a8SJed Brown ierr = MatComputeExplicitOperator(*B,&Bexp_mine);CHKERRQ(ierr); 1487693365a8SJed Brown Bexp = Bexp_mine; 1488693365a8SJed Brown } 1489693365a8SJed Brown } 1490693365a8SJed Brown ierr = MatConvert(Bexp,MATSAME,MAT_INITIAL_MATRIX,&FDexp);CHKERRQ(ierr); 1491693365a8SJed Brown ierr = SNESDefaultComputeJacobian(snes,X,&FDexp,&FDexp,&mstruct,NULL);CHKERRQ(ierr); 1492693365a8SJed Brown ierr = PetscViewerASCIIGetStdout(((PetscObject)snes)->comm,&vstdout);CHKERRQ(ierr); 1493693365a8SJed Brown if (flag_draw || flag_contour) { 1494693365a8SJed Brown ierr = PetscViewerDrawOpen(((PetscObject)snes)->comm,0,"Explicit Jacobians",PETSC_DECIDE,PETSC_DECIDE,300,300,&vdraw);CHKERRQ(ierr); 1495693365a8SJed Brown if (flag_contour) {ierr = PetscViewerPushFormat(vdraw,PETSC_VIEWER_DRAW_CONTOUR);CHKERRQ(ierr);} 1496693365a8SJed Brown } else vdraw = PETSC_NULL; 1497693365a8SJed Brown ierr = PetscViewerASCIIPrintf(vstdout,"Explicit %s\n",flag_operator?"Jacobian":"preconditioning Jacobian");CHKERRQ(ierr); 1498693365a8SJed Brown if (flag) {ierr = MatView(Bexp,vstdout);CHKERRQ(ierr);} 1499693365a8SJed Brown if (vdraw) {ierr = MatView(Bexp,vdraw);CHKERRQ(ierr);} 1500693365a8SJed Brown ierr = PetscViewerASCIIPrintf(vstdout,"Finite difference Jacobian\n");CHKERRQ(ierr); 1501693365a8SJed Brown if (flag) {ierr = MatView(FDexp,vstdout);CHKERRQ(ierr);} 1502693365a8SJed Brown if (vdraw) {ierr = MatView(FDexp,vdraw);CHKERRQ(ierr);} 1503693365a8SJed Brown ierr = MatAYPX(FDexp,-1.0,Bexp,SAME_NONZERO_PATTERN);CHKERRQ(ierr); 1504693365a8SJed Brown ierr = PetscViewerASCIIPrintf(vstdout,"User-provided matrix minus finite difference Jacobian\n");CHKERRQ(ierr); 1505693365a8SJed Brown if (flag) {ierr = MatView(FDexp,vstdout);CHKERRQ(ierr);} 1506693365a8SJed Brown if (vdraw) { /* Always use contour for the difference */ 1507693365a8SJed Brown ierr = PetscViewerPushFormat(vdraw,PETSC_VIEWER_DRAW_CONTOUR);CHKERRQ(ierr); 1508693365a8SJed Brown ierr = MatView(FDexp,vdraw);CHKERRQ(ierr); 1509693365a8SJed Brown ierr = PetscViewerPopFormat(vdraw);CHKERRQ(ierr); 1510693365a8SJed Brown } 1511693365a8SJed Brown if (flag_contour) {ierr = PetscViewerPopFormat(vdraw);CHKERRQ(ierr);} 1512693365a8SJed Brown ierr = PetscViewerDestroy(&vdraw);CHKERRQ(ierr); 1513693365a8SJed Brown ierr = MatDestroy(&Bexp_mine);CHKERRQ(ierr); 1514693365a8SJed Brown ierr = MatDestroy(&FDexp);CHKERRQ(ierr); 1515693365a8SJed Brown } 1516693365a8SJed Brown } 15174c30e9fbSJed Brown { 15186719d8e4SJed Brown PetscBool flag = PETSC_FALSE,flag_display = PETSC_FALSE,flag_draw = PETSC_FALSE,flag_contour = PETSC_FALSE,flag_threshold = PETSC_FALSE; 15196719d8e4SJed Brown PetscReal threshold_atol = PETSC_SQRT_MACHINE_EPSILON,threshold_rtol = 10*PETSC_SQRT_MACHINE_EPSILON; 15204c30e9fbSJed Brown ierr = PetscOptionsGetBool(((PetscObject)snes)->prefix,"-snes_compare_coloring",&flag,PETSC_NULL);CHKERRQ(ierr); 15216719d8e4SJed Brown ierr = PetscOptionsGetBool(((PetscObject)snes)->prefix,"-snes_compare_coloring_display",&flag_display,PETSC_NULL);CHKERRQ(ierr); 15224c30e9fbSJed Brown ierr = PetscOptionsGetBool(((PetscObject)snes)->prefix,"-snes_compare_coloring_draw",&flag_draw,PETSC_NULL);CHKERRQ(ierr); 15234c30e9fbSJed Brown ierr = PetscOptionsGetBool(((PetscObject)snes)->prefix,"-snes_compare_coloring_draw_contour",&flag_contour,PETSC_NULL);CHKERRQ(ierr); 15246719d8e4SJed Brown ierr = PetscOptionsGetBool(((PetscObject)snes)->prefix,"-snes_compare_coloring_threshold",&flag_threshold,PETSC_NULL);CHKERRQ(ierr); 15256719d8e4SJed Brown ierr = PetscOptionsGetReal(((PetscObject)snes)->prefix,"-snes_compare_coloring_threshold_rtol",&threshold_rtol,PETSC_NULL);CHKERRQ(ierr); 15266719d8e4SJed Brown ierr = PetscOptionsGetReal(((PetscObject)snes)->prefix,"-snes_compare_coloring_threshold_atol",&threshold_atol,PETSC_NULL);CHKERRQ(ierr); 15276719d8e4SJed Brown if (flag || flag_display || flag_draw || flag_contour || flag_threshold) { 15284c30e9fbSJed Brown Mat Bfd; 15294c30e9fbSJed Brown MatStructure mstruct; 15304c30e9fbSJed Brown PetscViewer vdraw,vstdout; 15314c30e9fbSJed Brown ISColoring iscoloring; 15324c30e9fbSJed Brown MatFDColoring matfdcoloring; 15334c30e9fbSJed Brown PetscErrorCode (*func)(SNES,Vec,Vec,void*); 15344c30e9fbSJed Brown void *funcctx; 15356719d8e4SJed Brown PetscReal norm1,norm2,normmax; 15364c30e9fbSJed Brown 15374c30e9fbSJed Brown ierr = MatDuplicate(*B,MAT_DO_NOT_COPY_VALUES,&Bfd);CHKERRQ(ierr); 15384c30e9fbSJed Brown ierr = MatGetColoring(Bfd,MATCOLORINGSL,&iscoloring);CHKERRQ(ierr); 15394c30e9fbSJed Brown ierr = MatFDColoringCreate(Bfd,iscoloring,&matfdcoloring);CHKERRQ(ierr); 15404c30e9fbSJed Brown ierr = ISColoringDestroy(&iscoloring);CHKERRQ(ierr); 15414c30e9fbSJed Brown 15424c30e9fbSJed Brown /* This method of getting the function is currently unreliable since it doesn't work for DM local functions. */ 15434c30e9fbSJed Brown ierr = SNESGetFunction(snes,PETSC_NULL,&func,&funcctx);CHKERRQ(ierr); 15444c30e9fbSJed Brown ierr = MatFDColoringSetFunction(matfdcoloring,(PetscErrorCode(*)(void))func,funcctx);CHKERRQ(ierr); 15454c30e9fbSJed Brown ierr = PetscObjectSetOptionsPrefix((PetscObject)matfdcoloring,((PetscObject)snes)->prefix);CHKERRQ(ierr); 15464c30e9fbSJed Brown ierr = PetscObjectAppendOptionsPrefix((PetscObject)matfdcoloring,"coloring_");CHKERRQ(ierr); 15474c30e9fbSJed Brown ierr = MatFDColoringSetFromOptions(matfdcoloring);CHKERRQ(ierr); 15484c30e9fbSJed Brown ierr = MatFDColoringApply(Bfd,matfdcoloring,X,&mstruct,snes);CHKERRQ(ierr); 15494c30e9fbSJed Brown ierr = MatFDColoringDestroy(&matfdcoloring);CHKERRQ(ierr); 15504c30e9fbSJed Brown 15514c30e9fbSJed Brown ierr = PetscViewerASCIIGetStdout(((PetscObject)snes)->comm,&vstdout);CHKERRQ(ierr); 15524c30e9fbSJed Brown if (flag_draw || flag_contour) { 15534c30e9fbSJed Brown ierr = PetscViewerDrawOpen(((PetscObject)snes)->comm,0,"Colored Jacobians",PETSC_DECIDE,PETSC_DECIDE,300,300,&vdraw);CHKERRQ(ierr); 15544c30e9fbSJed Brown if (flag_contour) {ierr = PetscViewerPushFormat(vdraw,PETSC_VIEWER_DRAW_CONTOUR);CHKERRQ(ierr);} 15554c30e9fbSJed Brown } else vdraw = PETSC_NULL; 15564c30e9fbSJed Brown ierr = PetscViewerASCIIPrintf(vstdout,"Explicit preconditioning Jacobian\n");CHKERRQ(ierr); 15576719d8e4SJed Brown if (flag_display) {ierr = MatView(*B,vstdout);CHKERRQ(ierr);} 15584c30e9fbSJed Brown if (vdraw) {ierr = MatView(*B,vdraw);CHKERRQ(ierr);} 15594c30e9fbSJed Brown ierr = PetscViewerASCIIPrintf(vstdout,"Colored Finite difference Jacobian\n");CHKERRQ(ierr); 15606719d8e4SJed Brown if (flag_display) {ierr = MatView(Bfd,vstdout);CHKERRQ(ierr);} 15614c30e9fbSJed Brown if (vdraw) {ierr = MatView(Bfd,vdraw);CHKERRQ(ierr);} 15624c30e9fbSJed Brown ierr = MatAYPX(Bfd,-1.0,*B,SAME_NONZERO_PATTERN);CHKERRQ(ierr); 15634c30e9fbSJed Brown ierr = MatNorm(Bfd,NORM_1,&norm1);CHKERRQ(ierr); 15646719d8e4SJed Brown ierr = MatNorm(Bfd,NORM_FROBENIUS,&norm2);CHKERRQ(ierr); 15654c30e9fbSJed Brown ierr = MatNorm(Bfd,NORM_MAX,&normmax);CHKERRQ(ierr); 15666719d8e4SJed Brown ierr = PetscViewerASCIIPrintf(vstdout,"User-provided matrix minus finite difference Jacobian, norm1=%G normFrob=%G normmax=%G\n",norm1,norm2,normmax);CHKERRQ(ierr); 15676719d8e4SJed Brown if (flag_display) {ierr = MatView(Bfd,vstdout);CHKERRQ(ierr);} 15684c30e9fbSJed Brown if (vdraw) { /* Always use contour for the difference */ 15694c30e9fbSJed Brown ierr = PetscViewerPushFormat(vdraw,PETSC_VIEWER_DRAW_CONTOUR);CHKERRQ(ierr); 15704c30e9fbSJed Brown ierr = MatView(Bfd,vdraw);CHKERRQ(ierr); 15714c30e9fbSJed Brown ierr = PetscViewerPopFormat(vdraw);CHKERRQ(ierr); 15724c30e9fbSJed Brown } 15734c30e9fbSJed Brown if (flag_contour) {ierr = PetscViewerPopFormat(vdraw);CHKERRQ(ierr);} 15746719d8e4SJed Brown 15756719d8e4SJed Brown if (flag_threshold) { 15766719d8e4SJed Brown PetscInt bs,rstart,rend,i; 15776719d8e4SJed Brown ierr = MatGetBlockSize(*B,&bs);CHKERRQ(ierr); 15786719d8e4SJed Brown ierr = MatGetOwnershipRange(*B,&rstart,&rend);CHKERRQ(ierr); 15796719d8e4SJed Brown for (i=rstart; i<rend; i++) { 15806719d8e4SJed Brown const PetscScalar *ba,*ca; 15816719d8e4SJed Brown const PetscInt *bj,*cj; 15826719d8e4SJed Brown PetscInt bn,cn,j,maxentrycol = -1,maxdiffcol = -1,maxrdiffcol = -1; 15836719d8e4SJed Brown PetscReal maxentry = 0,maxdiff = 0,maxrdiff = 0; 15846719d8e4SJed Brown ierr = MatGetRow(*B,i,&bn,&bj,&ba);CHKERRQ(ierr); 15856719d8e4SJed Brown ierr = MatGetRow(Bfd,i,&cn,&cj,&ca);CHKERRQ(ierr); 15866719d8e4SJed Brown if (bn != cn) SETERRQ(((PetscObject)*A)->comm,PETSC_ERR_PLIB,"Unexpected different nonzero pattern in -snes_compare_coloring_threshold"); 15876719d8e4SJed Brown for (j=0; j<bn; j++) { 15886719d8e4SJed Brown PetscReal rdiff = PetscAbsScalar(ca[j]) / (threshold_atol + threshold_rtol*PetscAbsScalar(ba[j])); 15896719d8e4SJed Brown if (PetscAbsScalar(ba[j]) > PetscAbs(maxentry)) { 15906719d8e4SJed Brown maxentrycol = bj[j]; 15916719d8e4SJed Brown maxentry = PetscRealPart(ba[j]); 15926719d8e4SJed Brown } 15936719d8e4SJed Brown if (PetscAbsScalar(ca[j]) > PetscAbs(maxdiff)) { 15946719d8e4SJed Brown maxdiffcol = bj[j]; 15956719d8e4SJed Brown maxdiff = PetscRealPart(ca[j]); 15966719d8e4SJed Brown } 15976719d8e4SJed Brown if (rdiff > maxrdiff) { 15986719d8e4SJed Brown maxrdiffcol = bj[j]; 15996719d8e4SJed Brown maxrdiff = rdiff; 16006719d8e4SJed Brown } 16016719d8e4SJed Brown } 16026719d8e4SJed Brown if (maxrdiff > 1) { 16036719d8e4SJed 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); 16046719d8e4SJed Brown for (j=0; j<bn; j++) { 16056719d8e4SJed Brown PetscReal rdiff; 16066719d8e4SJed Brown rdiff = PetscAbsScalar(ca[j]) / (threshold_atol + threshold_rtol*PetscAbsScalar(ba[j])); 16076719d8e4SJed Brown if (rdiff > 1) { 16086719d8e4SJed Brown ierr = PetscViewerASCIIPrintf(vstdout," (%D,%G:%G)",bj[j],PetscRealPart(ba[j]),PetscRealPart(ca[j]));CHKERRQ(ierr); 16096719d8e4SJed Brown } 16106719d8e4SJed Brown } 16116719d8e4SJed Brown ierr = PetscViewerASCIIPrintf(vstdout,"\n",i,maxentry,maxdiff,maxrdiff);CHKERRQ(ierr); 16126719d8e4SJed Brown } 16136719d8e4SJed Brown ierr = MatRestoreRow(*B,i,&bn,&bj,&ba);CHKERRQ(ierr); 16146719d8e4SJed Brown ierr = MatRestoreRow(Bfd,i,&cn,&cj,&ca);CHKERRQ(ierr); 16156719d8e4SJed Brown } 16166719d8e4SJed Brown } 16174c30e9fbSJed Brown ierr = PetscViewerDestroy(&vdraw);CHKERRQ(ierr); 16184c30e9fbSJed Brown ierr = MatDestroy(&Bfd);CHKERRQ(ierr); 16194c30e9fbSJed Brown } 16204c30e9fbSJed Brown } 16213a40ed3dSBarry Smith PetscFunctionReturn(0); 16229b94acceSBarry Smith } 16239b94acceSBarry Smith 16244a2ae208SSatish Balay #undef __FUNCT__ 16254a2ae208SSatish Balay #define __FUNCT__ "SNESSetJacobian" 16269b94acceSBarry Smith /*@C 16279b94acceSBarry Smith SNESSetJacobian - Sets the function to compute Jacobian as well as the 1628044dda88SLois Curfman McInnes location to store the matrix. 16299b94acceSBarry Smith 16303f9fe445SBarry Smith Logically Collective on SNES and Mat 1631c7afd0dbSLois Curfman McInnes 16329b94acceSBarry Smith Input Parameters: 1633c7afd0dbSLois Curfman McInnes + snes - the SNES context 16349b94acceSBarry Smith . A - Jacobian matrix 16359b94acceSBarry Smith . B - preconditioner matrix (usually same as the Jacobian) 1636efd51863SBarry Smith . func - Jacobian evaluation routine (if PETSC_NULL then SNES retains any previously set value) 1637c7afd0dbSLois Curfman McInnes - ctx - [optional] user-defined context for private data for the 1638efd51863SBarry Smith Jacobian evaluation routine (may be PETSC_NULL) (if PETSC_NULL then SNES retains any previously set value) 16399b94acceSBarry Smith 16409b94acceSBarry Smith Calling sequence of func: 16418d76a1e5SLois Curfman McInnes $ func (SNES snes,Vec x,Mat *A,Mat *B,int *flag,void *ctx); 16429b94acceSBarry Smith 1643c7afd0dbSLois Curfman McInnes + x - input vector 16449b94acceSBarry Smith . A - Jacobian matrix 16459b94acceSBarry Smith . B - preconditioner matrix, usually the same as A 1646ac21db08SLois Curfman McInnes . flag - flag indicating information about the preconditioner matrix 16472b668275SBarry Smith structure (same as flag in KSPSetOperators()), one of SAME_NONZERO_PATTERN,DIFFERENT_NONZERO_PATTERN,SAME_PRECONDITIONER 1648c7afd0dbSLois Curfman McInnes - ctx - [optional] user-defined Jacobian context 16499b94acceSBarry Smith 16509b94acceSBarry Smith Notes: 165194b7f48cSBarry Smith See KSPSetOperators() for important information about setting the flag 16522cd2dfdcSLois Curfman McInnes output parameter in the routine func(). Be sure to read this information! 1653ac21db08SLois Curfman McInnes 1654ac21db08SLois Curfman McInnes The routine func() takes Mat * as the matrix arguments rather than Mat. 16559b94acceSBarry Smith This allows the Jacobian evaluation routine to replace A and/or B with a 16569b94acceSBarry Smith completely new new matrix structure (not just different matrix elements) 16579b94acceSBarry Smith when appropriate, for instance, if the nonzero structure is changing 16589b94acceSBarry Smith throughout the global iterations. 16599b94acceSBarry Smith 166016913363SBarry Smith If the A matrix and B matrix are different you must call MatAssemblyBegin/End() on 166116913363SBarry Smith each matrix. 166216913363SBarry Smith 1663a8a26c1eSJed Brown If using SNESDefaultComputeJacobianColor() to assemble a Jacobian, the ctx argument 1664a8a26c1eSJed Brown must be a MatFDColoring. 1665a8a26c1eSJed Brown 1666c3cc8fd1SJed Brown Other defect-correction schemes can be used by computing a different matrix in place of the Jacobian. One common 1667c3cc8fd1SJed Brown example is to use the "Picard linearization" which only differentiates through the highest order parts of each term. 1668c3cc8fd1SJed Brown 166936851e7fSLois Curfman McInnes Level: beginner 167036851e7fSLois Curfman McInnes 16719b94acceSBarry Smith .keywords: SNES, nonlinear, set, Jacobian, matrix 16729b94acceSBarry Smith 16733ec795f1SBarry Smith .seealso: KSPSetOperators(), SNESSetFunction(), MatMFFDComputeJacobian(), SNESDefaultComputeJacobianColor(), MatStructure 16749b94acceSBarry Smith @*/ 16757087cfbeSBarry Smith PetscErrorCode SNESSetJacobian(SNES snes,Mat A,Mat B,PetscErrorCode (*func)(SNES,Vec,Mat*,Mat*,MatStructure*,void*),void *ctx) 16769b94acceSBarry Smith { 1677dfbe8321SBarry Smith PetscErrorCode ierr; 16783a7fca6bSBarry Smith 16793a40ed3dSBarry Smith PetscFunctionBegin; 16800700a824SBarry Smith PetscValidHeaderSpecific(snes,SNES_CLASSID,1); 16810700a824SBarry Smith if (A) PetscValidHeaderSpecific(A,MAT_CLASSID,2); 16820700a824SBarry Smith if (B) PetscValidHeaderSpecific(B,MAT_CLASSID,3); 1683c9780b6fSBarry Smith if (A) PetscCheckSameComm(snes,1,A,2); 168406975374SJed Brown if (B) PetscCheckSameComm(snes,1,B,3); 1685e7788613SBarry Smith if (func) snes->ops->computejacobian = func; 16863a7fca6bSBarry Smith if (ctx) snes->jacP = ctx; 16873a7fca6bSBarry Smith if (A) { 16887dcf0eaaSdalcinl ierr = PetscObjectReference((PetscObject)A);CHKERRQ(ierr); 16896bf464f9SBarry Smith ierr = MatDestroy(&snes->jacobian);CHKERRQ(ierr); 16909b94acceSBarry Smith snes->jacobian = A; 16913a7fca6bSBarry Smith } 16923a7fca6bSBarry Smith if (B) { 16937dcf0eaaSdalcinl ierr = PetscObjectReference((PetscObject)B);CHKERRQ(ierr); 16946bf464f9SBarry Smith ierr = MatDestroy(&snes->jacobian_pre);CHKERRQ(ierr); 16959b94acceSBarry Smith snes->jacobian_pre = B; 16963a7fca6bSBarry Smith } 16973a40ed3dSBarry Smith PetscFunctionReturn(0); 16989b94acceSBarry Smith } 169962fef451SLois Curfman McInnes 17004a2ae208SSatish Balay #undef __FUNCT__ 17014a2ae208SSatish Balay #define __FUNCT__ "SNESGetJacobian" 1702c2aafc4cSSatish Balay /*@C 1703b4fd4287SBarry Smith SNESGetJacobian - Returns the Jacobian matrix and optionally the user 1704b4fd4287SBarry Smith provided context for evaluating the Jacobian. 1705b4fd4287SBarry Smith 1706c7afd0dbSLois Curfman McInnes Not Collective, but Mat object will be parallel if SNES object is 1707c7afd0dbSLois Curfman McInnes 1708b4fd4287SBarry Smith Input Parameter: 1709b4fd4287SBarry Smith . snes - the nonlinear solver context 1710b4fd4287SBarry Smith 1711b4fd4287SBarry Smith Output Parameters: 1712c7afd0dbSLois Curfman McInnes + A - location to stash Jacobian matrix (or PETSC_NULL) 1713b4fd4287SBarry Smith . B - location to stash preconditioner matrix (or PETSC_NULL) 171470e92668SMatthew Knepley . func - location to put Jacobian function (or PETSC_NULL) 171570e92668SMatthew Knepley - ctx - location to stash Jacobian ctx (or PETSC_NULL) 1716fee21e36SBarry Smith 171736851e7fSLois Curfman McInnes Level: advanced 171836851e7fSLois Curfman McInnes 1719b4fd4287SBarry Smith .seealso: SNESSetJacobian(), SNESComputeJacobian() 1720b4fd4287SBarry Smith @*/ 17217087cfbeSBarry Smith PetscErrorCode SNESGetJacobian(SNES snes,Mat *A,Mat *B,PetscErrorCode (**func)(SNES,Vec,Mat*,Mat*,MatStructure*,void*),void **ctx) 1722b4fd4287SBarry Smith { 17233a40ed3dSBarry Smith PetscFunctionBegin; 17240700a824SBarry Smith PetscValidHeaderSpecific(snes,SNES_CLASSID,1); 1725b4fd4287SBarry Smith if (A) *A = snes->jacobian; 1726b4fd4287SBarry Smith if (B) *B = snes->jacobian_pre; 1727e7788613SBarry Smith if (func) *func = snes->ops->computejacobian; 172870e92668SMatthew Knepley if (ctx) *ctx = snes->jacP; 17293a40ed3dSBarry Smith PetscFunctionReturn(0); 1730b4fd4287SBarry Smith } 1731b4fd4287SBarry Smith 17329b94acceSBarry Smith /* ----- Routines to initialize and destroy a nonlinear solver ---- */ 17339b94acceSBarry Smith 17344a2ae208SSatish Balay #undef __FUNCT__ 17354a2ae208SSatish Balay #define __FUNCT__ "SNESSetUp" 17369b94acceSBarry Smith /*@ 17379b94acceSBarry Smith SNESSetUp - Sets up the internal data structures for the later use 1738272ac6f2SLois Curfman McInnes of a nonlinear solver. 17399b94acceSBarry Smith 1740fee21e36SBarry Smith Collective on SNES 1741fee21e36SBarry Smith 1742c7afd0dbSLois Curfman McInnes Input Parameters: 174370e92668SMatthew Knepley . snes - the SNES context 1744c7afd0dbSLois Curfman McInnes 1745272ac6f2SLois Curfman McInnes Notes: 1746272ac6f2SLois Curfman McInnes For basic use of the SNES solvers the user need not explicitly call 1747272ac6f2SLois Curfman McInnes SNESSetUp(), since these actions will automatically occur during 1748272ac6f2SLois Curfman McInnes the call to SNESSolve(). However, if one wishes to control this 1749272ac6f2SLois Curfman McInnes phase separately, SNESSetUp() should be called after SNESCreate() 1750272ac6f2SLois Curfman McInnes and optional routines of the form SNESSetXXX(), but before SNESSolve(). 1751272ac6f2SLois Curfman McInnes 175236851e7fSLois Curfman McInnes Level: advanced 175336851e7fSLois Curfman McInnes 17549b94acceSBarry Smith .keywords: SNES, nonlinear, setup 17559b94acceSBarry Smith 17569b94acceSBarry Smith .seealso: SNESCreate(), SNESSolve(), SNESDestroy() 17579b94acceSBarry Smith @*/ 17587087cfbeSBarry Smith PetscErrorCode SNESSetUp(SNES snes) 17599b94acceSBarry Smith { 1760dfbe8321SBarry Smith PetscErrorCode ierr; 17613a40ed3dSBarry Smith 17623a40ed3dSBarry Smith PetscFunctionBegin; 17630700a824SBarry Smith PetscValidHeaderSpecific(snes,SNES_CLASSID,1); 17644dc4c822SBarry Smith if (snes->setupcalled) PetscFunctionReturn(0); 17659b94acceSBarry Smith 17667adad957SLisandro Dalcin if (!((PetscObject)snes)->type_name) { 176785385478SLisandro Dalcin ierr = SNESSetType(snes,SNESLS);CHKERRQ(ierr); 176885385478SLisandro Dalcin } 176985385478SLisandro Dalcin 1770c9b9fda1SJed Brown if (!snes->vec_func) { 1771c9b9fda1SJed Brown if (snes->vec_rhs) { 1772c9b9fda1SJed Brown ierr = VecDuplicate(snes->vec_rhs,&snes->vec_func);CHKERRQ(ierr); 1773c9b9fda1SJed Brown } else if (snes->vec_sol) { 1774c9b9fda1SJed Brown ierr = VecDuplicate(snes->vec_sol,&snes->vec_func);CHKERRQ(ierr); 1775c9b9fda1SJed Brown } else if (snes->dm) { 1776efd51863SBarry Smith ierr = DMCreateGlobalVector(snes->dm,&snes->vec_func);CHKERRQ(ierr); 1777efd51863SBarry Smith } 1778c9b9fda1SJed Brown } 177917186662SBarry Smith if (snes->vec_func == snes->vec_sol) SETERRQ(PETSC_COMM_SELF,PETSC_ERR_ARG_IDN,"Solution vector cannot be function vector"); 178058c9b817SLisandro Dalcin if (snes->vec_rhs == snes->vec_sol) SETERRQ(PETSC_COMM_SELF,PETSC_ERR_ARG_IDN,"Solution vector cannot be right hand side vector"); 178158c9b817SLisandro Dalcin 178258c9b817SLisandro Dalcin if (!snes->vec_sol_update /* && snes->vec_sol */) { 178358c9b817SLisandro Dalcin ierr = VecDuplicate(snes->vec_sol,&snes->vec_sol_update);CHKERRQ(ierr); 178458c9b817SLisandro Dalcin ierr = PetscLogObjectParent(snes,snes->vec_sol_update);CHKERRQ(ierr); 178558c9b817SLisandro Dalcin } 178658c9b817SLisandro Dalcin 1787ef8dffc7SBarry Smith if (!snes->ops->computejacobian && snes->dm) { 1788ef8dffc7SBarry Smith Mat J; 1789ef8dffc7SBarry Smith ierr = DMGetMatrix(snes->dm,MATAIJ,&J);CHKERRQ(ierr); 1790cab2e9ccSBarry Smith ierr = SNESSetJacobian(snes,J,J,SNESDMComputeJacobian,PETSC_NULL);CHKERRQ(ierr); 1791cab2e9ccSBarry Smith ierr = MatDestroy(&J);CHKERRQ(ierr); 17922ef29e96SBarry Smith } else if (!snes->jacobian && snes->ops->computejacobian == MatMFFDComputeJacobian) { 1793a8248277SBarry Smith Mat J; 1794a8248277SBarry Smith ierr = MatCreateSNESMF(snes,&J);CHKERRQ(ierr); 1795a8248277SBarry Smith ierr = MatMFFDSetOptionsPrefix(J,((PetscObject)snes)->prefix);CHKERRQ(ierr); 1796a8248277SBarry Smith ierr = MatSetFromOptions(J);CHKERRQ(ierr); 1797a8248277SBarry Smith ierr = SNESSetJacobian(snes,J,J,MatMFFDComputeJacobian,snes->funP);CHKERRQ(ierr); 1798a8248277SBarry Smith ierr = MatDestroy(&J);CHKERRQ(ierr); 1799a8248277SBarry Smith } else if (snes->dm && snes->mf_operator && !snes->jacobian_pre && !snes->jacobian) { 1800a8248277SBarry Smith Mat J,B; 1801a8248277SBarry Smith ierr = MatCreateSNESMF(snes,&J);CHKERRQ(ierr); 1802a8248277SBarry Smith ierr = MatMFFDSetOptionsPrefix(J,((PetscObject)snes)->prefix);CHKERRQ(ierr); 1803a8248277SBarry Smith ierr = MatSetFromOptions(J);CHKERRQ(ierr); 1804a8248277SBarry Smith ierr = DMGetMatrix(snes->dm,MATAIJ,&B);CHKERRQ(ierr); 1805a8248277SBarry Smith ierr = SNESSetJacobian(snes,J,B,SNESDMComputeJacobian,snes->funP);CHKERRQ(ierr); 1806a8248277SBarry Smith ierr = MatDestroy(&J);CHKERRQ(ierr); 1807a8248277SBarry Smith ierr = MatDestroy(&B);CHKERRQ(ierr); 1808efd51863SBarry Smith } else if (snes->dm && !snes->jacobian_pre){ 1809efd51863SBarry Smith Mat J; 1810efd51863SBarry Smith ierr = DMGetMatrix(snes->dm,MATAIJ,&J);CHKERRQ(ierr); 18113cbb28f5SBarry Smith ierr = SNESSetJacobian(snes,J,J,PETSC_NULL,PETSC_NULL);CHKERRQ(ierr); 1812efd51863SBarry Smith ierr = MatDestroy(&J);CHKERRQ(ierr); 1813ef8dffc7SBarry Smith } 1814cfaf3a74SBarry 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()"); 1815c9b9fda1SJed Brown if (!snes->vec_func) SETERRQ(((PetscObject)snes)->comm,PETSC_ERR_ARG_WRONGSTATE,"Must provide a vector when calling SNESSetFunction() or call SNESSetDM()"); 1816efd51863SBarry Smith 1817b710008aSBarry Smith if (!snes->ksp) {ierr = SNESGetKSP(snes, &snes->ksp);CHKERRQ(ierr);} 1818b710008aSBarry Smith 1819d25893d9SBarry Smith if (snes->ops->usercompute && !snes->user) { 1820d25893d9SBarry Smith ierr = (*snes->ops->usercompute)(snes,(void**)&snes->user);CHKERRQ(ierr); 1821d25893d9SBarry Smith } 1822d25893d9SBarry Smith 1823410397dcSLisandro Dalcin if (snes->ops->setup) { 1824410397dcSLisandro Dalcin ierr = (*snes->ops->setup)(snes);CHKERRQ(ierr); 1825410397dcSLisandro Dalcin } 182658c9b817SLisandro Dalcin 18277aaed0d8SBarry Smith snes->setupcalled = PETSC_TRUE; 18283a40ed3dSBarry Smith PetscFunctionReturn(0); 18299b94acceSBarry Smith } 18309b94acceSBarry Smith 18314a2ae208SSatish Balay #undef __FUNCT__ 183237596af1SLisandro Dalcin #define __FUNCT__ "SNESReset" 183337596af1SLisandro Dalcin /*@ 183437596af1SLisandro Dalcin SNESReset - Resets a SNES context to the snessetupcalled = 0 state and removes any allocated Vecs and Mats 183537596af1SLisandro Dalcin 183637596af1SLisandro Dalcin Collective on SNES 183737596af1SLisandro Dalcin 183837596af1SLisandro Dalcin Input Parameter: 183937596af1SLisandro Dalcin . snes - iterative context obtained from SNESCreate() 184037596af1SLisandro Dalcin 1841d25893d9SBarry Smith Level: intermediate 1842d25893d9SBarry Smith 1843d25893d9SBarry Smith Notes: Also calls the application context destroy routine set with SNESSetComputeApplicationContext() 184437596af1SLisandro Dalcin 184537596af1SLisandro Dalcin .keywords: SNES, destroy 184637596af1SLisandro Dalcin 184737596af1SLisandro Dalcin .seealso: SNESCreate(), SNESSetUp(), SNESSolve() 184837596af1SLisandro Dalcin @*/ 184937596af1SLisandro Dalcin PetscErrorCode SNESReset(SNES snes) 185037596af1SLisandro Dalcin { 185137596af1SLisandro Dalcin PetscErrorCode ierr; 185237596af1SLisandro Dalcin 185337596af1SLisandro Dalcin PetscFunctionBegin; 185437596af1SLisandro Dalcin PetscValidHeaderSpecific(snes,SNES_CLASSID,1); 1855d25893d9SBarry Smith if (snes->ops->userdestroy && snes->user) { 1856d25893d9SBarry Smith ierr = (*snes->ops->userdestroy)((void**)&snes->user);CHKERRQ(ierr); 1857d25893d9SBarry Smith snes->user = PETSC_NULL; 1858d25893d9SBarry Smith } 18598a23116dSBarry Smith if (snes->pc) { 18608a23116dSBarry Smith ierr = SNESReset(snes->pc);CHKERRQ(ierr); 18618a23116dSBarry Smith } 18628a23116dSBarry Smith 186337596af1SLisandro Dalcin if (snes->ops->reset) { 186437596af1SLisandro Dalcin ierr = (*snes->ops->reset)(snes);CHKERRQ(ierr); 186537596af1SLisandro Dalcin } 186637596af1SLisandro Dalcin if (snes->ksp) {ierr = KSPReset(snes->ksp);CHKERRQ(ierr);} 18676bf464f9SBarry Smith ierr = VecDestroy(&snes->vec_rhs);CHKERRQ(ierr); 18686bf464f9SBarry Smith ierr = VecDestroy(&snes->vec_sol);CHKERRQ(ierr); 18696bf464f9SBarry Smith ierr = VecDestroy(&snes->vec_sol_update);CHKERRQ(ierr); 18706bf464f9SBarry Smith ierr = VecDestroy(&snes->vec_func);CHKERRQ(ierr); 18716bf464f9SBarry Smith ierr = MatDestroy(&snes->jacobian);CHKERRQ(ierr); 18726bf464f9SBarry Smith ierr = MatDestroy(&snes->jacobian_pre);CHKERRQ(ierr); 187337596af1SLisandro Dalcin if (snes->work) {ierr = VecDestroyVecs(snes->nwork,&snes->work);CHKERRQ(ierr);} 187437596af1SLisandro Dalcin if (snes->vwork) {ierr = VecDestroyVecs(snes->nvwork,&snes->vwork);CHKERRQ(ierr);} 187537596af1SLisandro Dalcin snes->nwork = snes->nvwork = 0; 187637596af1SLisandro Dalcin snes->setupcalled = PETSC_FALSE; 187737596af1SLisandro Dalcin PetscFunctionReturn(0); 187837596af1SLisandro Dalcin } 187937596af1SLisandro Dalcin 188037596af1SLisandro Dalcin #undef __FUNCT__ 18814a2ae208SSatish Balay #define __FUNCT__ "SNESDestroy" 188252baeb72SSatish Balay /*@ 18839b94acceSBarry Smith SNESDestroy - Destroys the nonlinear solver context that was created 18849b94acceSBarry Smith with SNESCreate(). 18859b94acceSBarry Smith 1886c7afd0dbSLois Curfman McInnes Collective on SNES 1887c7afd0dbSLois Curfman McInnes 18889b94acceSBarry Smith Input Parameter: 18899b94acceSBarry Smith . snes - the SNES context 18909b94acceSBarry Smith 189136851e7fSLois Curfman McInnes Level: beginner 189236851e7fSLois Curfman McInnes 18939b94acceSBarry Smith .keywords: SNES, nonlinear, destroy 18949b94acceSBarry Smith 189563a78c88SLois Curfman McInnes .seealso: SNESCreate(), SNESSolve() 18969b94acceSBarry Smith @*/ 18976bf464f9SBarry Smith PetscErrorCode SNESDestroy(SNES *snes) 18989b94acceSBarry Smith { 18996849ba73SBarry Smith PetscErrorCode ierr; 19003a40ed3dSBarry Smith 19013a40ed3dSBarry Smith PetscFunctionBegin; 19026bf464f9SBarry Smith if (!*snes) PetscFunctionReturn(0); 19036bf464f9SBarry Smith PetscValidHeaderSpecific((*snes),SNES_CLASSID,1); 19046bf464f9SBarry Smith if (--((PetscObject)(*snes))->refct > 0) {*snes = 0; PetscFunctionReturn(0);} 1905d4bb536fSBarry Smith 19066bf464f9SBarry Smith ierr = SNESReset((*snes));CHKERRQ(ierr); 19078a23116dSBarry Smith ierr = SNESDestroy(&(*snes)->pc);CHKERRQ(ierr); 19086b8b9a38SLisandro Dalcin 1909be0abb6dSBarry Smith /* if memory was published with AMS then destroy it */ 19106bf464f9SBarry Smith ierr = PetscObjectDepublish((*snes));CHKERRQ(ierr); 19116bf464f9SBarry Smith if ((*snes)->ops->destroy) {ierr = (*((*snes))->ops->destroy)((*snes));CHKERRQ(ierr);} 19126d4c513bSLisandro Dalcin 19136bf464f9SBarry Smith ierr = DMDestroy(&(*snes)->dm);CHKERRQ(ierr); 19146bf464f9SBarry Smith ierr = KSPDestroy(&(*snes)->ksp);CHKERRQ(ierr); 19156b8b9a38SLisandro Dalcin 19166bf464f9SBarry Smith ierr = PetscFree((*snes)->kspconvctx);CHKERRQ(ierr); 19176bf464f9SBarry Smith if ((*snes)->ops->convergeddestroy) { 19186bf464f9SBarry Smith ierr = (*(*snes)->ops->convergeddestroy)((*snes)->cnvP);CHKERRQ(ierr); 19196b8b9a38SLisandro Dalcin } 19206bf464f9SBarry Smith if ((*snes)->conv_malloc) { 19216bf464f9SBarry Smith ierr = PetscFree((*snes)->conv_hist);CHKERRQ(ierr); 19226bf464f9SBarry Smith ierr = PetscFree((*snes)->conv_hist_its);CHKERRQ(ierr); 192358c9b817SLisandro Dalcin } 1924ea630c6eSPeter Brune ierr = PetscViewerDestroy(&(*snes)->ls_monitor);CHKERRQ(ierr); 19256bf464f9SBarry Smith ierr = SNESMonitorCancel((*snes));CHKERRQ(ierr); 1926a79aaaedSSatish Balay ierr = PetscHeaderDestroy(snes);CHKERRQ(ierr); 19273a40ed3dSBarry Smith PetscFunctionReturn(0); 19289b94acceSBarry Smith } 19299b94acceSBarry Smith 19309b94acceSBarry Smith /* ----------- Routines to set solver parameters ---------- */ 19319b94acceSBarry Smith 19324a2ae208SSatish Balay #undef __FUNCT__ 1933a8054027SBarry Smith #define __FUNCT__ "SNESSetLagPreconditioner" 1934a8054027SBarry Smith /*@ 1935a8054027SBarry Smith SNESSetLagPreconditioner - Determines when the preconditioner is rebuilt in the nonlinear solve. 1936a8054027SBarry Smith 19373f9fe445SBarry Smith Logically Collective on SNES 1938a8054027SBarry Smith 1939a8054027SBarry Smith Input Parameters: 1940a8054027SBarry Smith + snes - the SNES context 1941a8054027SBarry 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 19423b4f5425SBarry Smith the Jacobian is built etc. -2 indicates rebuild preconditioner at next chance but then never rebuild after that 1943a8054027SBarry Smith 1944a8054027SBarry Smith Options Database Keys: 1945a8054027SBarry Smith . -snes_lag_preconditioner <lag> 1946a8054027SBarry Smith 1947a8054027SBarry Smith Notes: 1948a8054027SBarry Smith The default is 1 1949a8054027SBarry Smith The preconditioner is ALWAYS built in the first iteration of a nonlinear solve unless lag is -1 1950a8054027SBarry Smith If -1 is used before the very first nonlinear solve the preconditioner is still built because there is no previous preconditioner to use 1951a8054027SBarry Smith 1952a8054027SBarry Smith Level: intermediate 1953a8054027SBarry Smith 1954a8054027SBarry Smith .keywords: SNES, nonlinear, set, convergence, tolerances 1955a8054027SBarry Smith 1956e35cf81dSBarry Smith .seealso: SNESSetTrustRegionTolerance(), SNESGetLagPreconditioner(), SNESSetLagJacobian(), SNESGetLagJacobian() 1957a8054027SBarry Smith 1958a8054027SBarry Smith @*/ 19597087cfbeSBarry Smith PetscErrorCode SNESSetLagPreconditioner(SNES snes,PetscInt lag) 1960a8054027SBarry Smith { 1961a8054027SBarry Smith PetscFunctionBegin; 19620700a824SBarry Smith PetscValidHeaderSpecific(snes,SNES_CLASSID,1); 1963e32f2f54SBarry Smith if (lag < -2) SETERRQ(PETSC_COMM_SELF,PETSC_ERR_ARG_OUTOFRANGE,"Lag must be -2, -1, 1 or greater"); 1964e32f2f54SBarry Smith if (!lag) SETERRQ(PETSC_COMM_SELF,PETSC_ERR_ARG_OUTOFRANGE,"Lag cannot be 0"); 1965c5eb9154SBarry Smith PetscValidLogicalCollectiveInt(snes,lag,2); 1966a8054027SBarry Smith snes->lagpreconditioner = lag; 1967a8054027SBarry Smith PetscFunctionReturn(0); 1968a8054027SBarry Smith } 1969a8054027SBarry Smith 1970a8054027SBarry Smith #undef __FUNCT__ 1971efd51863SBarry Smith #define __FUNCT__ "SNESSetGridSequence" 1972efd51863SBarry Smith /*@ 1973efd51863SBarry Smith SNESSetGridSequence - sets the number of steps of grid sequencing that SNES does 1974efd51863SBarry Smith 1975efd51863SBarry Smith Logically Collective on SNES 1976efd51863SBarry Smith 1977efd51863SBarry Smith Input Parameters: 1978efd51863SBarry Smith + snes - the SNES context 1979efd51863SBarry Smith - steps - the number of refinements to do, defaults to 0 1980efd51863SBarry Smith 1981efd51863SBarry Smith Options Database Keys: 1982efd51863SBarry Smith . -snes_grid_sequence <steps> 1983efd51863SBarry Smith 1984efd51863SBarry Smith Level: intermediate 1985efd51863SBarry Smith 1986*c0df2a02SJed Brown Notes: 1987*c0df2a02SJed Brown Use SNESGetSolution() to extract the fine grid solution after grid sequencing. 1988*c0df2a02SJed Brown 1989efd51863SBarry Smith .keywords: SNES, nonlinear, set, convergence, tolerances 1990efd51863SBarry Smith 1991efd51863SBarry Smith .seealso: SNESSetTrustRegionTolerance(), SNESGetLagPreconditioner(), SNESSetLagJacobian(), SNESGetLagJacobian() 1992efd51863SBarry Smith 1993efd51863SBarry Smith @*/ 1994efd51863SBarry Smith PetscErrorCode SNESSetGridSequence(SNES snes,PetscInt steps) 1995efd51863SBarry Smith { 1996efd51863SBarry Smith PetscFunctionBegin; 1997efd51863SBarry Smith PetscValidHeaderSpecific(snes,SNES_CLASSID,1); 1998efd51863SBarry Smith PetscValidLogicalCollectiveInt(snes,steps,2); 1999efd51863SBarry Smith snes->gridsequence = steps; 2000efd51863SBarry Smith PetscFunctionReturn(0); 2001efd51863SBarry Smith } 2002efd51863SBarry Smith 2003efd51863SBarry Smith #undef __FUNCT__ 2004a8054027SBarry Smith #define __FUNCT__ "SNESGetLagPreconditioner" 2005a8054027SBarry Smith /*@ 2006a8054027SBarry Smith SNESGetLagPreconditioner - Indicates how often the preconditioner is rebuilt 2007a8054027SBarry Smith 20083f9fe445SBarry Smith Not Collective 2009a8054027SBarry Smith 2010a8054027SBarry Smith Input Parameter: 2011a8054027SBarry Smith . snes - the SNES context 2012a8054027SBarry Smith 2013a8054027SBarry Smith Output Parameter: 2014a8054027SBarry 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 20153b4f5425SBarry Smith the Jacobian is built etc. -2 indicates rebuild preconditioner at next chance but then never rebuild after that 2016a8054027SBarry Smith 2017a8054027SBarry Smith Options Database Keys: 2018a8054027SBarry Smith . -snes_lag_preconditioner <lag> 2019a8054027SBarry Smith 2020a8054027SBarry Smith Notes: 2021a8054027SBarry Smith The default is 1 2022a8054027SBarry Smith The preconditioner is ALWAYS built in the first iteration of a nonlinear solve unless lag is -1 2023a8054027SBarry Smith 2024a8054027SBarry Smith Level: intermediate 2025a8054027SBarry Smith 2026a8054027SBarry Smith .keywords: SNES, nonlinear, set, convergence, tolerances 2027a8054027SBarry Smith 2028a8054027SBarry Smith .seealso: SNESSetTrustRegionTolerance(), SNESSetLagPreconditioner() 2029a8054027SBarry Smith 2030a8054027SBarry Smith @*/ 20317087cfbeSBarry Smith PetscErrorCode SNESGetLagPreconditioner(SNES snes,PetscInt *lag) 2032a8054027SBarry Smith { 2033a8054027SBarry Smith PetscFunctionBegin; 20340700a824SBarry Smith PetscValidHeaderSpecific(snes,SNES_CLASSID,1); 2035a8054027SBarry Smith *lag = snes->lagpreconditioner; 2036a8054027SBarry Smith PetscFunctionReturn(0); 2037a8054027SBarry Smith } 2038a8054027SBarry Smith 2039a8054027SBarry Smith #undef __FUNCT__ 2040e35cf81dSBarry Smith #define __FUNCT__ "SNESSetLagJacobian" 2041e35cf81dSBarry Smith /*@ 2042e35cf81dSBarry Smith SNESSetLagJacobian - Determines when the Jacobian is rebuilt in the nonlinear solve. See SNESSetLagPreconditioner() for determining how 2043e35cf81dSBarry Smith often the preconditioner is rebuilt. 2044e35cf81dSBarry Smith 20453f9fe445SBarry Smith Logically Collective on SNES 2046e35cf81dSBarry Smith 2047e35cf81dSBarry Smith Input Parameters: 2048e35cf81dSBarry Smith + snes - the SNES context 2049e35cf81dSBarry 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 2050fe3ffe1eSBarry Smith the Jacobian is built etc. -2 means rebuild at next chance but then never again 2051e35cf81dSBarry Smith 2052e35cf81dSBarry Smith Options Database Keys: 2053e35cf81dSBarry Smith . -snes_lag_jacobian <lag> 2054e35cf81dSBarry Smith 2055e35cf81dSBarry Smith Notes: 2056e35cf81dSBarry Smith The default is 1 2057e35cf81dSBarry Smith The Jacobian is ALWAYS built in the first iteration of a nonlinear solve unless lag is -1 2058fe3ffe1eSBarry 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 2059fe3ffe1eSBarry Smith at the next Newton step but never again (unless it is reset to another value) 2060e35cf81dSBarry Smith 2061e35cf81dSBarry Smith Level: intermediate 2062e35cf81dSBarry Smith 2063e35cf81dSBarry Smith .keywords: SNES, nonlinear, set, convergence, tolerances 2064e35cf81dSBarry Smith 2065e35cf81dSBarry Smith .seealso: SNESSetTrustRegionTolerance(), SNESGetLagPreconditioner(), SNESSetLagPreconditioner(), SNESGetLagJacobian() 2066e35cf81dSBarry Smith 2067e35cf81dSBarry Smith @*/ 20687087cfbeSBarry Smith PetscErrorCode SNESSetLagJacobian(SNES snes,PetscInt lag) 2069e35cf81dSBarry Smith { 2070e35cf81dSBarry Smith PetscFunctionBegin; 20710700a824SBarry Smith PetscValidHeaderSpecific(snes,SNES_CLASSID,1); 2072e32f2f54SBarry Smith if (lag < -2) SETERRQ(PETSC_COMM_SELF,PETSC_ERR_ARG_OUTOFRANGE,"Lag must be -2, -1, 1 or greater"); 2073e32f2f54SBarry Smith if (!lag) SETERRQ(PETSC_COMM_SELF,PETSC_ERR_ARG_OUTOFRANGE,"Lag cannot be 0"); 2074c5eb9154SBarry Smith PetscValidLogicalCollectiveInt(snes,lag,2); 2075e35cf81dSBarry Smith snes->lagjacobian = lag; 2076e35cf81dSBarry Smith PetscFunctionReturn(0); 2077e35cf81dSBarry Smith } 2078e35cf81dSBarry Smith 2079e35cf81dSBarry Smith #undef __FUNCT__ 2080e35cf81dSBarry Smith #define __FUNCT__ "SNESGetLagJacobian" 2081e35cf81dSBarry Smith /*@ 2082e35cf81dSBarry Smith SNESGetLagJacobian - Indicates how often the Jacobian is rebuilt. See SNESGetLagPreconditioner() to determine when the preconditioner is rebuilt 2083e35cf81dSBarry Smith 20843f9fe445SBarry Smith Not Collective 2085e35cf81dSBarry Smith 2086e35cf81dSBarry Smith Input Parameter: 2087e35cf81dSBarry Smith . snes - the SNES context 2088e35cf81dSBarry Smith 2089e35cf81dSBarry Smith Output Parameter: 2090e35cf81dSBarry 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 2091e35cf81dSBarry Smith the Jacobian is built etc. 2092e35cf81dSBarry Smith 2093e35cf81dSBarry Smith Options Database Keys: 2094e35cf81dSBarry Smith . -snes_lag_jacobian <lag> 2095e35cf81dSBarry Smith 2096e35cf81dSBarry Smith Notes: 2097e35cf81dSBarry Smith The default is 1 2098e35cf81dSBarry Smith The jacobian is ALWAYS built in the first iteration of a nonlinear solve unless lag is -1 2099e35cf81dSBarry Smith 2100e35cf81dSBarry Smith Level: intermediate 2101e35cf81dSBarry Smith 2102e35cf81dSBarry Smith .keywords: SNES, nonlinear, set, convergence, tolerances 2103e35cf81dSBarry Smith 2104e35cf81dSBarry Smith .seealso: SNESSetTrustRegionTolerance(), SNESSetLagJacobian(), SNESSetLagPreconditioner(), SNESGetLagPreconditioner() 2105e35cf81dSBarry Smith 2106e35cf81dSBarry Smith @*/ 21077087cfbeSBarry Smith PetscErrorCode SNESGetLagJacobian(SNES snes,PetscInt *lag) 2108e35cf81dSBarry Smith { 2109e35cf81dSBarry Smith PetscFunctionBegin; 21100700a824SBarry Smith PetscValidHeaderSpecific(snes,SNES_CLASSID,1); 2111e35cf81dSBarry Smith *lag = snes->lagjacobian; 2112e35cf81dSBarry Smith PetscFunctionReturn(0); 2113e35cf81dSBarry Smith } 2114e35cf81dSBarry Smith 2115e35cf81dSBarry Smith #undef __FUNCT__ 21164a2ae208SSatish Balay #define __FUNCT__ "SNESSetTolerances" 21179b94acceSBarry Smith /*@ 2118d7a720efSLois Curfman McInnes SNESSetTolerances - Sets various parameters used in convergence tests. 21199b94acceSBarry Smith 21203f9fe445SBarry Smith Logically Collective on SNES 2121c7afd0dbSLois Curfman McInnes 21229b94acceSBarry Smith Input Parameters: 2123c7afd0dbSLois Curfman McInnes + snes - the SNES context 212470441072SBarry Smith . abstol - absolute convergence tolerance 212533174efeSLois Curfman McInnes . rtol - relative convergence tolerance 212633174efeSLois Curfman McInnes . stol - convergence tolerance in terms of the norm 212733174efeSLois Curfman McInnes of the change in the solution between steps 212833174efeSLois Curfman McInnes . maxit - maximum number of iterations 2129c7afd0dbSLois Curfman McInnes - maxf - maximum number of function evaluations 2130fee21e36SBarry Smith 213133174efeSLois Curfman McInnes Options Database Keys: 213270441072SBarry Smith + -snes_atol <abstol> - Sets abstol 2133c7afd0dbSLois Curfman McInnes . -snes_rtol <rtol> - Sets rtol 2134c7afd0dbSLois Curfman McInnes . -snes_stol <stol> - Sets stol 2135c7afd0dbSLois Curfman McInnes . -snes_max_it <maxit> - Sets maxit 2136c7afd0dbSLois Curfman McInnes - -snes_max_funcs <maxf> - Sets maxf 21379b94acceSBarry Smith 2138d7a720efSLois Curfman McInnes Notes: 21399b94acceSBarry Smith The default maximum number of iterations is 50. 21409b94acceSBarry Smith The default maximum number of function evaluations is 1000. 21419b94acceSBarry Smith 214236851e7fSLois Curfman McInnes Level: intermediate 214336851e7fSLois Curfman McInnes 214433174efeSLois Curfman McInnes .keywords: SNES, nonlinear, set, convergence, tolerances 21459b94acceSBarry Smith 21462492ecdbSBarry Smith .seealso: SNESSetTrustRegionTolerance() 21479b94acceSBarry Smith @*/ 21487087cfbeSBarry Smith PetscErrorCode SNESSetTolerances(SNES snes,PetscReal abstol,PetscReal rtol,PetscReal stol,PetscInt maxit,PetscInt maxf) 21499b94acceSBarry Smith { 21503a40ed3dSBarry Smith PetscFunctionBegin; 21510700a824SBarry Smith PetscValidHeaderSpecific(snes,SNES_CLASSID,1); 2152c5eb9154SBarry Smith PetscValidLogicalCollectiveReal(snes,abstol,2); 2153c5eb9154SBarry Smith PetscValidLogicalCollectiveReal(snes,rtol,3); 2154c5eb9154SBarry Smith PetscValidLogicalCollectiveReal(snes,stol,4); 2155c5eb9154SBarry Smith PetscValidLogicalCollectiveInt(snes,maxit,5); 2156c5eb9154SBarry Smith PetscValidLogicalCollectiveInt(snes,maxf,6); 2157c5eb9154SBarry Smith 2158ab54825eSJed Brown if (abstol != PETSC_DEFAULT) { 2159ab54825eSJed Brown if (abstol < 0.0) SETERRQ1(((PetscObject)snes)->comm,PETSC_ERR_ARG_OUTOFRANGE,"Absolute tolerance %G must be non-negative",abstol); 2160ab54825eSJed Brown snes->abstol = abstol; 2161ab54825eSJed Brown } 2162ab54825eSJed Brown if (rtol != PETSC_DEFAULT) { 2163ab54825eSJed 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); 2164ab54825eSJed Brown snes->rtol = rtol; 2165ab54825eSJed Brown } 2166ab54825eSJed Brown if (stol != PETSC_DEFAULT) { 2167ab54825eSJed Brown if (stol < 0.0) SETERRQ1(((PetscObject)snes)->comm,PETSC_ERR_ARG_OUTOFRANGE,"Step tolerance %G must be non-negative",stol); 2168ab54825eSJed Brown snes->xtol = stol; 2169ab54825eSJed Brown } 2170ab54825eSJed Brown if (maxit != PETSC_DEFAULT) { 2171ab54825eSJed Brown if (maxit < 0) SETERRQ1(((PetscObject)snes)->comm,PETSC_ERR_ARG_OUTOFRANGE,"Maximum number of iterations %D must be non-negative",maxit); 2172ab54825eSJed Brown snes->max_its = maxit; 2173ab54825eSJed Brown } 2174ab54825eSJed Brown if (maxf != PETSC_DEFAULT) { 2175ab54825eSJed Brown if (maxf < 0) SETERRQ1(((PetscObject)snes)->comm,PETSC_ERR_ARG_OUTOFRANGE,"Maximum number of function evaluations %D must be non-negative",maxf); 2176ab54825eSJed Brown snes->max_funcs = maxf; 2177ab54825eSJed Brown } 21783a40ed3dSBarry Smith PetscFunctionReturn(0); 21799b94acceSBarry Smith } 21809b94acceSBarry Smith 21814a2ae208SSatish Balay #undef __FUNCT__ 21824a2ae208SSatish Balay #define __FUNCT__ "SNESGetTolerances" 21839b94acceSBarry Smith /*@ 218433174efeSLois Curfman McInnes SNESGetTolerances - Gets various parameters used in convergence tests. 218533174efeSLois Curfman McInnes 2186c7afd0dbSLois Curfman McInnes Not Collective 2187c7afd0dbSLois Curfman McInnes 218833174efeSLois Curfman McInnes Input Parameters: 2189c7afd0dbSLois Curfman McInnes + snes - the SNES context 219085385478SLisandro Dalcin . atol - absolute convergence tolerance 219133174efeSLois Curfman McInnes . rtol - relative convergence tolerance 219233174efeSLois Curfman McInnes . stol - convergence tolerance in terms of the norm 219333174efeSLois Curfman McInnes of the change in the solution between steps 219433174efeSLois Curfman McInnes . maxit - maximum number of iterations 2195c7afd0dbSLois Curfman McInnes - maxf - maximum number of function evaluations 2196fee21e36SBarry Smith 219733174efeSLois Curfman McInnes Notes: 219833174efeSLois Curfman McInnes The user can specify PETSC_NULL for any parameter that is not needed. 219933174efeSLois Curfman McInnes 220036851e7fSLois Curfman McInnes Level: intermediate 220136851e7fSLois Curfman McInnes 220233174efeSLois Curfman McInnes .keywords: SNES, nonlinear, get, convergence, tolerances 220333174efeSLois Curfman McInnes 220433174efeSLois Curfman McInnes .seealso: SNESSetTolerances() 220533174efeSLois Curfman McInnes @*/ 22067087cfbeSBarry Smith PetscErrorCode SNESGetTolerances(SNES snes,PetscReal *atol,PetscReal *rtol,PetscReal *stol,PetscInt *maxit,PetscInt *maxf) 220733174efeSLois Curfman McInnes { 22083a40ed3dSBarry Smith PetscFunctionBegin; 22090700a824SBarry Smith PetscValidHeaderSpecific(snes,SNES_CLASSID,1); 221085385478SLisandro Dalcin if (atol) *atol = snes->abstol; 221133174efeSLois Curfman McInnes if (rtol) *rtol = snes->rtol; 221233174efeSLois Curfman McInnes if (stol) *stol = snes->xtol; 221333174efeSLois Curfman McInnes if (maxit) *maxit = snes->max_its; 221433174efeSLois Curfman McInnes if (maxf) *maxf = snes->max_funcs; 22153a40ed3dSBarry Smith PetscFunctionReturn(0); 221633174efeSLois Curfman McInnes } 221733174efeSLois Curfman McInnes 22184a2ae208SSatish Balay #undef __FUNCT__ 22194a2ae208SSatish Balay #define __FUNCT__ "SNESSetTrustRegionTolerance" 222033174efeSLois Curfman McInnes /*@ 22219b94acceSBarry Smith SNESSetTrustRegionTolerance - Sets the trust region parameter tolerance. 22229b94acceSBarry Smith 22233f9fe445SBarry Smith Logically Collective on SNES 2224fee21e36SBarry Smith 2225c7afd0dbSLois Curfman McInnes Input Parameters: 2226c7afd0dbSLois Curfman McInnes + snes - the SNES context 2227c7afd0dbSLois Curfman McInnes - tol - tolerance 2228c7afd0dbSLois Curfman McInnes 22299b94acceSBarry Smith Options Database Key: 2230c7afd0dbSLois Curfman McInnes . -snes_trtol <tol> - Sets tol 22319b94acceSBarry Smith 223236851e7fSLois Curfman McInnes Level: intermediate 223336851e7fSLois Curfman McInnes 22349b94acceSBarry Smith .keywords: SNES, nonlinear, set, trust region, tolerance 22359b94acceSBarry Smith 22362492ecdbSBarry Smith .seealso: SNESSetTolerances() 22379b94acceSBarry Smith @*/ 22387087cfbeSBarry Smith PetscErrorCode SNESSetTrustRegionTolerance(SNES snes,PetscReal tol) 22399b94acceSBarry Smith { 22403a40ed3dSBarry Smith PetscFunctionBegin; 22410700a824SBarry Smith PetscValidHeaderSpecific(snes,SNES_CLASSID,1); 2242c5eb9154SBarry Smith PetscValidLogicalCollectiveReal(snes,tol,2); 22439b94acceSBarry Smith snes->deltatol = tol; 22443a40ed3dSBarry Smith PetscFunctionReturn(0); 22459b94acceSBarry Smith } 22469b94acceSBarry Smith 2247df9fa365SBarry Smith /* 2248df9fa365SBarry Smith Duplicate the lg monitors for SNES from KSP; for some reason with 2249df9fa365SBarry Smith dynamic libraries things don't work under Sun4 if we just use 2250df9fa365SBarry Smith macros instead of functions 2251df9fa365SBarry Smith */ 22524a2ae208SSatish Balay #undef __FUNCT__ 2253a6570f20SBarry Smith #define __FUNCT__ "SNESMonitorLG" 22547087cfbeSBarry Smith PetscErrorCode SNESMonitorLG(SNES snes,PetscInt it,PetscReal norm,void *ctx) 2255ce1608b8SBarry Smith { 2256dfbe8321SBarry Smith PetscErrorCode ierr; 2257ce1608b8SBarry Smith 2258ce1608b8SBarry Smith PetscFunctionBegin; 22590700a824SBarry Smith PetscValidHeaderSpecific(snes,SNES_CLASSID,1); 2260a6570f20SBarry Smith ierr = KSPMonitorLG((KSP)snes,it,norm,ctx);CHKERRQ(ierr); 2261ce1608b8SBarry Smith PetscFunctionReturn(0); 2262ce1608b8SBarry Smith } 2263ce1608b8SBarry Smith 22644a2ae208SSatish Balay #undef __FUNCT__ 2265a6570f20SBarry Smith #define __FUNCT__ "SNESMonitorLGCreate" 22667087cfbeSBarry Smith PetscErrorCode SNESMonitorLGCreate(const char host[],const char label[],int x,int y,int m,int n,PetscDrawLG *draw) 2267df9fa365SBarry Smith { 2268dfbe8321SBarry Smith PetscErrorCode ierr; 2269df9fa365SBarry Smith 2270df9fa365SBarry Smith PetscFunctionBegin; 2271a6570f20SBarry Smith ierr = KSPMonitorLGCreate(host,label,x,y,m,n,draw);CHKERRQ(ierr); 2272df9fa365SBarry Smith PetscFunctionReturn(0); 2273df9fa365SBarry Smith } 2274df9fa365SBarry Smith 22754a2ae208SSatish Balay #undef __FUNCT__ 2276a6570f20SBarry Smith #define __FUNCT__ "SNESMonitorLGDestroy" 22776bf464f9SBarry Smith PetscErrorCode SNESMonitorLGDestroy(PetscDrawLG *draw) 2278df9fa365SBarry Smith { 2279dfbe8321SBarry Smith PetscErrorCode ierr; 2280df9fa365SBarry Smith 2281df9fa365SBarry Smith PetscFunctionBegin; 2282a6570f20SBarry Smith ierr = KSPMonitorLGDestroy(draw);CHKERRQ(ierr); 2283df9fa365SBarry Smith PetscFunctionReturn(0); 2284df9fa365SBarry Smith } 2285df9fa365SBarry Smith 22867087cfbeSBarry Smith extern PetscErrorCode SNESMonitorRange_Private(SNES,PetscInt,PetscReal*); 2287b271bb04SBarry Smith #undef __FUNCT__ 2288b271bb04SBarry Smith #define __FUNCT__ "SNESMonitorLGRange" 22897087cfbeSBarry Smith PetscErrorCode SNESMonitorLGRange(SNES snes,PetscInt n,PetscReal rnorm,void *monctx) 2290b271bb04SBarry Smith { 2291b271bb04SBarry Smith PetscDrawLG lg; 2292b271bb04SBarry Smith PetscErrorCode ierr; 2293b271bb04SBarry Smith PetscReal x,y,per; 2294b271bb04SBarry Smith PetscViewer v = (PetscViewer)monctx; 2295b271bb04SBarry Smith static PetscReal prev; /* should be in the context */ 2296b271bb04SBarry Smith PetscDraw draw; 2297b271bb04SBarry Smith PetscFunctionBegin; 2298b271bb04SBarry Smith if (!monctx) { 2299b271bb04SBarry Smith MPI_Comm comm; 2300b271bb04SBarry Smith 2301b271bb04SBarry Smith ierr = PetscObjectGetComm((PetscObject)snes,&comm);CHKERRQ(ierr); 2302b271bb04SBarry Smith v = PETSC_VIEWER_DRAW_(comm); 2303b271bb04SBarry Smith } 2304b271bb04SBarry Smith ierr = PetscViewerDrawGetDrawLG(v,0,&lg);CHKERRQ(ierr); 2305b271bb04SBarry Smith if (!n) {ierr = PetscDrawLGReset(lg);CHKERRQ(ierr);} 2306b271bb04SBarry Smith ierr = PetscDrawLGGetDraw(lg,&draw);CHKERRQ(ierr); 2307b271bb04SBarry Smith ierr = PetscDrawSetTitle(draw,"Residual norm");CHKERRQ(ierr); 2308b271bb04SBarry Smith x = (PetscReal) n; 2309b271bb04SBarry Smith if (rnorm > 0.0) y = log10(rnorm); else y = -15.0; 2310b271bb04SBarry Smith ierr = PetscDrawLGAddPoint(lg,&x,&y);CHKERRQ(ierr); 2311b271bb04SBarry Smith if (n < 20 || !(n % 5)) { 2312b271bb04SBarry Smith ierr = PetscDrawLGDraw(lg);CHKERRQ(ierr); 2313b271bb04SBarry Smith } 2314b271bb04SBarry Smith 2315b271bb04SBarry Smith ierr = PetscViewerDrawGetDrawLG(v,1,&lg);CHKERRQ(ierr); 2316b271bb04SBarry Smith if (!n) {ierr = PetscDrawLGReset(lg);CHKERRQ(ierr);} 2317b271bb04SBarry Smith ierr = PetscDrawLGGetDraw(lg,&draw);CHKERRQ(ierr); 2318b271bb04SBarry Smith ierr = PetscDrawSetTitle(draw,"% elemts > .2*max elemt");CHKERRQ(ierr); 2319b271bb04SBarry Smith ierr = SNESMonitorRange_Private(snes,n,&per);CHKERRQ(ierr); 2320b271bb04SBarry Smith x = (PetscReal) n; 2321b271bb04SBarry Smith y = 100.0*per; 2322b271bb04SBarry Smith ierr = PetscDrawLGAddPoint(lg,&x,&y);CHKERRQ(ierr); 2323b271bb04SBarry Smith if (n < 20 || !(n % 5)) { 2324b271bb04SBarry Smith ierr = PetscDrawLGDraw(lg);CHKERRQ(ierr); 2325b271bb04SBarry Smith } 2326b271bb04SBarry Smith 2327b271bb04SBarry Smith ierr = PetscViewerDrawGetDrawLG(v,2,&lg);CHKERRQ(ierr); 2328b271bb04SBarry Smith if (!n) {prev = rnorm;ierr = PetscDrawLGReset(lg);CHKERRQ(ierr);} 2329b271bb04SBarry Smith ierr = PetscDrawLGGetDraw(lg,&draw);CHKERRQ(ierr); 2330b271bb04SBarry Smith ierr = PetscDrawSetTitle(draw,"(norm -oldnorm)/oldnorm");CHKERRQ(ierr); 2331b271bb04SBarry Smith x = (PetscReal) n; 2332b271bb04SBarry Smith y = (prev - rnorm)/prev; 2333b271bb04SBarry Smith ierr = PetscDrawLGAddPoint(lg,&x,&y);CHKERRQ(ierr); 2334b271bb04SBarry Smith if (n < 20 || !(n % 5)) { 2335b271bb04SBarry Smith ierr = PetscDrawLGDraw(lg);CHKERRQ(ierr); 2336b271bb04SBarry Smith } 2337b271bb04SBarry Smith 2338b271bb04SBarry Smith ierr = PetscViewerDrawGetDrawLG(v,3,&lg);CHKERRQ(ierr); 2339b271bb04SBarry Smith if (!n) {ierr = PetscDrawLGReset(lg);CHKERRQ(ierr);} 2340b271bb04SBarry Smith ierr = PetscDrawLGGetDraw(lg,&draw);CHKERRQ(ierr); 2341b271bb04SBarry Smith ierr = PetscDrawSetTitle(draw,"(norm -oldnorm)/oldnorm*(% > .2 max)");CHKERRQ(ierr); 2342b271bb04SBarry Smith x = (PetscReal) n; 2343b271bb04SBarry Smith y = (prev - rnorm)/(prev*per); 2344b271bb04SBarry Smith if (n > 2) { /*skip initial crazy value */ 2345b271bb04SBarry Smith ierr = PetscDrawLGAddPoint(lg,&x,&y);CHKERRQ(ierr); 2346b271bb04SBarry Smith } 2347b271bb04SBarry Smith if (n < 20 || !(n % 5)) { 2348b271bb04SBarry Smith ierr = PetscDrawLGDraw(lg);CHKERRQ(ierr); 2349b271bb04SBarry Smith } 2350b271bb04SBarry Smith prev = rnorm; 2351b271bb04SBarry Smith PetscFunctionReturn(0); 2352b271bb04SBarry Smith } 2353b271bb04SBarry Smith 2354b271bb04SBarry Smith #undef __FUNCT__ 2355b271bb04SBarry Smith #define __FUNCT__ "SNESMonitorLGRangeCreate" 23567087cfbeSBarry Smith PetscErrorCode SNESMonitorLGRangeCreate(const char host[],const char label[],int x,int y,int m,int n,PetscDrawLG *draw) 2357b271bb04SBarry Smith { 2358b271bb04SBarry Smith PetscErrorCode ierr; 2359b271bb04SBarry Smith 2360b271bb04SBarry Smith PetscFunctionBegin; 2361b271bb04SBarry Smith ierr = KSPMonitorLGCreate(host,label,x,y,m,n,draw);CHKERRQ(ierr); 2362b271bb04SBarry Smith PetscFunctionReturn(0); 2363b271bb04SBarry Smith } 2364b271bb04SBarry Smith 2365b271bb04SBarry Smith #undef __FUNCT__ 2366b271bb04SBarry Smith #define __FUNCT__ "SNESMonitorLGRangeDestroy" 23676bf464f9SBarry Smith PetscErrorCode SNESMonitorLGRangeDestroy(PetscDrawLG *draw) 2368b271bb04SBarry Smith { 2369b271bb04SBarry Smith PetscErrorCode ierr; 2370b271bb04SBarry Smith 2371b271bb04SBarry Smith PetscFunctionBegin; 2372b271bb04SBarry Smith ierr = KSPMonitorLGDestroy(draw);CHKERRQ(ierr); 2373b271bb04SBarry Smith PetscFunctionReturn(0); 2374b271bb04SBarry Smith } 2375b271bb04SBarry Smith 23767a03ce2fSLisandro Dalcin #undef __FUNCT__ 23777a03ce2fSLisandro Dalcin #define __FUNCT__ "SNESMonitor" 2378228d79bcSJed Brown /*@ 2379228d79bcSJed Brown SNESMonitor - runs the user provided monitor routines, if they exist 2380228d79bcSJed Brown 2381228d79bcSJed Brown Collective on SNES 2382228d79bcSJed Brown 2383228d79bcSJed Brown Input Parameters: 2384228d79bcSJed Brown + snes - nonlinear solver context obtained from SNESCreate() 2385228d79bcSJed Brown . iter - iteration number 2386228d79bcSJed Brown - rnorm - relative norm of the residual 2387228d79bcSJed Brown 2388228d79bcSJed Brown Notes: 2389228d79bcSJed Brown This routine is called by the SNES implementations. 2390228d79bcSJed Brown It does not typically need to be called by the user. 2391228d79bcSJed Brown 2392228d79bcSJed Brown Level: developer 2393228d79bcSJed Brown 2394228d79bcSJed Brown .seealso: SNESMonitorSet() 2395228d79bcSJed Brown @*/ 23967a03ce2fSLisandro Dalcin PetscErrorCode SNESMonitor(SNES snes,PetscInt iter,PetscReal rnorm) 23977a03ce2fSLisandro Dalcin { 23987a03ce2fSLisandro Dalcin PetscErrorCode ierr; 23997a03ce2fSLisandro Dalcin PetscInt i,n = snes->numbermonitors; 24007a03ce2fSLisandro Dalcin 24017a03ce2fSLisandro Dalcin PetscFunctionBegin; 24027a03ce2fSLisandro Dalcin for (i=0; i<n; i++) { 24037a03ce2fSLisandro Dalcin ierr = (*snes->monitor[i])(snes,iter,rnorm,snes->monitorcontext[i]);CHKERRQ(ierr); 24047a03ce2fSLisandro Dalcin } 24057a03ce2fSLisandro Dalcin PetscFunctionReturn(0); 24067a03ce2fSLisandro Dalcin } 24077a03ce2fSLisandro Dalcin 24089b94acceSBarry Smith /* ------------ Routines to set performance monitoring options ----------- */ 24099b94acceSBarry Smith 24104a2ae208SSatish Balay #undef __FUNCT__ 2411a6570f20SBarry Smith #define __FUNCT__ "SNESMonitorSet" 24129b94acceSBarry Smith /*@C 2413a6570f20SBarry Smith SNESMonitorSet - Sets an ADDITIONAL function that is to be used at every 24149b94acceSBarry Smith iteration of the nonlinear solver to display the iteration's 24159b94acceSBarry Smith progress. 24169b94acceSBarry Smith 24173f9fe445SBarry Smith Logically Collective on SNES 2418fee21e36SBarry Smith 2419c7afd0dbSLois Curfman McInnes Input Parameters: 2420c7afd0dbSLois Curfman McInnes + snes - the SNES context 2421c7afd0dbSLois Curfman McInnes . func - monitoring routine 2422b8a78c4aSBarry Smith . mctx - [optional] user-defined context for private data for the 2423e8105e01SRichard Katz monitor routine (use PETSC_NULL if no context is desired) 2424b3006f0bSLois Curfman McInnes - monitordestroy - [optional] routine that frees monitor context 2425b3006f0bSLois Curfman McInnes (may be PETSC_NULL) 24269b94acceSBarry Smith 2427c7afd0dbSLois Curfman McInnes Calling sequence of func: 2428a7cc72afSBarry Smith $ int func(SNES snes,PetscInt its, PetscReal norm,void *mctx) 2429c7afd0dbSLois Curfman McInnes 2430c7afd0dbSLois Curfman McInnes + snes - the SNES context 2431c7afd0dbSLois Curfman McInnes . its - iteration number 2432c7afd0dbSLois Curfman McInnes . norm - 2-norm function value (may be estimated) 243340a0c1c6SLois Curfman McInnes - mctx - [optional] monitoring context 24349b94acceSBarry Smith 24359665c990SLois Curfman McInnes Options Database Keys: 2436a6570f20SBarry Smith + -snes_monitor - sets SNESMonitorDefault() 2437a6570f20SBarry Smith . -snes_monitor_draw - sets line graph monitor, 2438a6570f20SBarry Smith uses SNESMonitorLGCreate() 2439cca6129bSJed Brown - -snes_monitor_cancel - cancels all monitors that have 2440c7afd0dbSLois Curfman McInnes been hardwired into a code by 2441a6570f20SBarry Smith calls to SNESMonitorSet(), but 2442c7afd0dbSLois Curfman McInnes does not cancel those set via 2443c7afd0dbSLois Curfman McInnes the options database. 24449665c990SLois Curfman McInnes 2445639f9d9dSBarry Smith Notes: 24466bc08f3fSLois Curfman McInnes Several different monitoring routines may be set by calling 2447a6570f20SBarry Smith SNESMonitorSet() multiple times; all will be called in the 24486bc08f3fSLois Curfman McInnes order in which they were set. 2449639f9d9dSBarry Smith 2450025f1a04SBarry Smith Fortran notes: Only a single monitor function can be set for each SNES object 2451025f1a04SBarry Smith 245236851e7fSLois Curfman McInnes Level: intermediate 245336851e7fSLois Curfman McInnes 24549b94acceSBarry Smith .keywords: SNES, nonlinear, set, monitor 24559b94acceSBarry Smith 2456a6570f20SBarry Smith .seealso: SNESMonitorDefault(), SNESMonitorCancel() 24579b94acceSBarry Smith @*/ 2458c2efdce3SBarry Smith PetscErrorCode SNESMonitorSet(SNES snes,PetscErrorCode (*monitor)(SNES,PetscInt,PetscReal,void*),void *mctx,PetscErrorCode (*monitordestroy)(void**)) 24599b94acceSBarry Smith { 2460b90d0a6eSBarry Smith PetscInt i; 2461649052a6SBarry Smith PetscErrorCode ierr; 2462b90d0a6eSBarry Smith 24633a40ed3dSBarry Smith PetscFunctionBegin; 24640700a824SBarry Smith PetscValidHeaderSpecific(snes,SNES_CLASSID,1); 246517186662SBarry Smith if (snes->numbermonitors >= MAXSNESMONITORS) SETERRQ(PETSC_COMM_SELF,PETSC_ERR_ARG_OUTOFRANGE,"Too many monitors set"); 2466b90d0a6eSBarry Smith for (i=0; i<snes->numbermonitors;i++) { 2467649052a6SBarry Smith if (monitor == snes->monitor[i] && monitordestroy == snes->monitordestroy[i] && mctx == snes->monitorcontext[i]) { 2468649052a6SBarry Smith if (monitordestroy) { 2469c2efdce3SBarry Smith ierr = (*monitordestroy)(&mctx);CHKERRQ(ierr); 2470649052a6SBarry Smith } 2471b90d0a6eSBarry Smith PetscFunctionReturn(0); 2472b90d0a6eSBarry Smith } 2473b90d0a6eSBarry Smith } 2474b90d0a6eSBarry Smith snes->monitor[snes->numbermonitors] = monitor; 2475b8a78c4aSBarry Smith snes->monitordestroy[snes->numbermonitors] = monitordestroy; 2476639f9d9dSBarry Smith snes->monitorcontext[snes->numbermonitors++] = (void*)mctx; 24773a40ed3dSBarry Smith PetscFunctionReturn(0); 24789b94acceSBarry Smith } 24799b94acceSBarry Smith 24804a2ae208SSatish Balay #undef __FUNCT__ 2481a6570f20SBarry Smith #define __FUNCT__ "SNESMonitorCancel" 24825cd90555SBarry Smith /*@C 2483a6570f20SBarry Smith SNESMonitorCancel - Clears all the monitor functions for a SNES object. 24845cd90555SBarry Smith 24853f9fe445SBarry Smith Logically Collective on SNES 2486c7afd0dbSLois Curfman McInnes 24875cd90555SBarry Smith Input Parameters: 24885cd90555SBarry Smith . snes - the SNES context 24895cd90555SBarry Smith 24901a480d89SAdministrator Options Database Key: 2491a6570f20SBarry Smith . -snes_monitor_cancel - cancels all monitors that have been hardwired 2492a6570f20SBarry Smith into a code by calls to SNESMonitorSet(), but does not cancel those 2493c7afd0dbSLois Curfman McInnes set via the options database 24945cd90555SBarry Smith 24955cd90555SBarry Smith Notes: 24965cd90555SBarry Smith There is no way to clear one specific monitor from a SNES object. 24975cd90555SBarry Smith 249836851e7fSLois Curfman McInnes Level: intermediate 249936851e7fSLois Curfman McInnes 25005cd90555SBarry Smith .keywords: SNES, nonlinear, set, monitor 25015cd90555SBarry Smith 2502a6570f20SBarry Smith .seealso: SNESMonitorDefault(), SNESMonitorSet() 25035cd90555SBarry Smith @*/ 25047087cfbeSBarry Smith PetscErrorCode SNESMonitorCancel(SNES snes) 25055cd90555SBarry Smith { 2506d952e501SBarry Smith PetscErrorCode ierr; 2507d952e501SBarry Smith PetscInt i; 2508d952e501SBarry Smith 25095cd90555SBarry Smith PetscFunctionBegin; 25100700a824SBarry Smith PetscValidHeaderSpecific(snes,SNES_CLASSID,1); 2511d952e501SBarry Smith for (i=0; i<snes->numbermonitors; i++) { 2512d952e501SBarry Smith if (snes->monitordestroy[i]) { 25133c4aec1bSBarry Smith ierr = (*snes->monitordestroy[i])(&snes->monitorcontext[i]);CHKERRQ(ierr); 2514d952e501SBarry Smith } 2515d952e501SBarry Smith } 25165cd90555SBarry Smith snes->numbermonitors = 0; 25175cd90555SBarry Smith PetscFunctionReturn(0); 25185cd90555SBarry Smith } 25195cd90555SBarry Smith 25204a2ae208SSatish Balay #undef __FUNCT__ 25214a2ae208SSatish Balay #define __FUNCT__ "SNESSetConvergenceTest" 25229b94acceSBarry Smith /*@C 25239b94acceSBarry Smith SNESSetConvergenceTest - Sets the function that is to be used 25249b94acceSBarry Smith to test for convergence of the nonlinear iterative solution. 25259b94acceSBarry Smith 25263f9fe445SBarry Smith Logically Collective on SNES 2527fee21e36SBarry Smith 2528c7afd0dbSLois Curfman McInnes Input Parameters: 2529c7afd0dbSLois Curfman McInnes + snes - the SNES context 2530c7afd0dbSLois Curfman McInnes . func - routine to test for convergence 25317f7931b9SBarry Smith . cctx - [optional] context for private data for the convergence routine (may be PETSC_NULL) 25327f7931b9SBarry Smith - destroy - [optional] destructor for the context (may be PETSC_NULL; PETSC_NULL_FUNCTION in Fortran) 25339b94acceSBarry Smith 2534c7afd0dbSLois Curfman McInnes Calling sequence of func: 253506ee9f85SBarry Smith $ PetscErrorCode func (SNES snes,PetscInt it,PetscReal xnorm,PetscReal gnorm,PetscReal f,SNESConvergedReason *reason,void *cctx) 2536c7afd0dbSLois Curfman McInnes 2537c7afd0dbSLois Curfman McInnes + snes - the SNES context 253806ee9f85SBarry Smith . it - current iteration (0 is the first and is before any Newton step) 2539c7afd0dbSLois Curfman McInnes . cctx - [optional] convergence context 2540184914b5SBarry Smith . reason - reason for convergence/divergence 2541c7afd0dbSLois Curfman McInnes . xnorm - 2-norm of current iterate 25424b27c08aSLois Curfman McInnes . gnorm - 2-norm of current step 25434b27c08aSLois Curfman McInnes - f - 2-norm of function 25449b94acceSBarry Smith 254536851e7fSLois Curfman McInnes Level: advanced 254636851e7fSLois Curfman McInnes 25479b94acceSBarry Smith .keywords: SNES, nonlinear, set, convergence, test 25489b94acceSBarry Smith 254985385478SLisandro Dalcin .seealso: SNESDefaultConverged(), SNESSkipConverged() 25509b94acceSBarry Smith @*/ 25517087cfbeSBarry Smith PetscErrorCode SNESSetConvergenceTest(SNES snes,PetscErrorCode (*func)(SNES,PetscInt,PetscReal,PetscReal,PetscReal,SNESConvergedReason*,void*),void *cctx,PetscErrorCode (*destroy)(void*)) 25529b94acceSBarry Smith { 25537f7931b9SBarry Smith PetscErrorCode ierr; 25547f7931b9SBarry Smith 25553a40ed3dSBarry Smith PetscFunctionBegin; 25560700a824SBarry Smith PetscValidHeaderSpecific(snes,SNES_CLASSID,1); 255785385478SLisandro Dalcin if (!func) func = SNESSkipConverged; 25587f7931b9SBarry Smith if (snes->ops->convergeddestroy) { 25597f7931b9SBarry Smith ierr = (*snes->ops->convergeddestroy)(snes->cnvP);CHKERRQ(ierr); 25607f7931b9SBarry Smith } 256185385478SLisandro Dalcin snes->ops->converged = func; 25627f7931b9SBarry Smith snes->ops->convergeddestroy = destroy; 256385385478SLisandro Dalcin snes->cnvP = cctx; 25643a40ed3dSBarry Smith PetscFunctionReturn(0); 25659b94acceSBarry Smith } 25669b94acceSBarry Smith 25674a2ae208SSatish Balay #undef __FUNCT__ 25684a2ae208SSatish Balay #define __FUNCT__ "SNESGetConvergedReason" 256952baeb72SSatish Balay /*@ 2570184914b5SBarry Smith SNESGetConvergedReason - Gets the reason the SNES iteration was stopped. 2571184914b5SBarry Smith 2572184914b5SBarry Smith Not Collective 2573184914b5SBarry Smith 2574184914b5SBarry Smith Input Parameter: 2575184914b5SBarry Smith . snes - the SNES context 2576184914b5SBarry Smith 2577184914b5SBarry Smith Output Parameter: 25784d0a8057SBarry Smith . reason - negative value indicates diverged, positive value converged, see SNESConvergedReason or the 2579184914b5SBarry Smith manual pages for the individual convergence tests for complete lists 2580184914b5SBarry Smith 2581184914b5SBarry Smith Level: intermediate 2582184914b5SBarry Smith 2583184914b5SBarry Smith Notes: Can only be called after the call the SNESSolve() is complete. 2584184914b5SBarry Smith 2585184914b5SBarry Smith .keywords: SNES, nonlinear, set, convergence, test 2586184914b5SBarry Smith 258785385478SLisandro Dalcin .seealso: SNESSetConvergenceTest(), SNESConvergedReason 2588184914b5SBarry Smith @*/ 25897087cfbeSBarry Smith PetscErrorCode SNESGetConvergedReason(SNES snes,SNESConvergedReason *reason) 2590184914b5SBarry Smith { 2591184914b5SBarry Smith PetscFunctionBegin; 25920700a824SBarry Smith PetscValidHeaderSpecific(snes,SNES_CLASSID,1); 25934482741eSBarry Smith PetscValidPointer(reason,2); 2594184914b5SBarry Smith *reason = snes->reason; 2595184914b5SBarry Smith PetscFunctionReturn(0); 2596184914b5SBarry Smith } 2597184914b5SBarry Smith 25984a2ae208SSatish Balay #undef __FUNCT__ 25994a2ae208SSatish Balay #define __FUNCT__ "SNESSetConvergenceHistory" 2600c9005455SLois Curfman McInnes /*@ 2601c9005455SLois Curfman McInnes SNESSetConvergenceHistory - Sets the array used to hold the convergence history. 2602c9005455SLois Curfman McInnes 26033f9fe445SBarry Smith Logically Collective on SNES 2604fee21e36SBarry Smith 2605c7afd0dbSLois Curfman McInnes Input Parameters: 2606c7afd0dbSLois Curfman McInnes + snes - iterative context obtained from SNESCreate() 26078c7482ecSBarry Smith . a - array to hold history, this array will contain the function norms computed at each step 2608cd5578b5SBarry Smith . its - integer array holds the number of linear iterations for each solve. 2609758f92a0SBarry Smith . na - size of a and its 261064731454SLois Curfman McInnes - reset - PETSC_TRUE indicates each new nonlinear solve resets the history counter to zero, 2611758f92a0SBarry Smith else it continues storing new values for new nonlinear solves after the old ones 2612c7afd0dbSLois Curfman McInnes 2613308dcc3eSBarry Smith Notes: 2614308dcc3eSBarry Smith If 'a' and 'its' are PETSC_NULL then space is allocated for the history. If 'na' PETSC_DECIDE or PETSC_DEFAULT then a 2615308dcc3eSBarry Smith default array of length 10000 is allocated. 2616308dcc3eSBarry Smith 2617c9005455SLois Curfman McInnes This routine is useful, e.g., when running a code for purposes 2618c9005455SLois Curfman McInnes of accurate performance monitoring, when no I/O should be done 2619c9005455SLois Curfman McInnes during the section of code that is being timed. 2620c9005455SLois Curfman McInnes 262136851e7fSLois Curfman McInnes Level: intermediate 262236851e7fSLois Curfman McInnes 2623c9005455SLois Curfman McInnes .keywords: SNES, set, convergence, history 2624758f92a0SBarry Smith 262508405cd6SLois Curfman McInnes .seealso: SNESGetConvergenceHistory() 2626758f92a0SBarry Smith 2627c9005455SLois Curfman McInnes @*/ 26287087cfbeSBarry Smith PetscErrorCode SNESSetConvergenceHistory(SNES snes,PetscReal a[],PetscInt its[],PetscInt na,PetscBool reset) 2629c9005455SLois Curfman McInnes { 2630308dcc3eSBarry Smith PetscErrorCode ierr; 2631308dcc3eSBarry Smith 26323a40ed3dSBarry Smith PetscFunctionBegin; 26330700a824SBarry Smith PetscValidHeaderSpecific(snes,SNES_CLASSID,1); 26344482741eSBarry Smith if (na) PetscValidScalarPointer(a,2); 2635a562a398SLisandro Dalcin if (its) PetscValidIntPointer(its,3); 2636308dcc3eSBarry Smith if (na == PETSC_DECIDE || na == PETSC_DEFAULT || !a) { 2637308dcc3eSBarry Smith if (na == PETSC_DECIDE || na == PETSC_DEFAULT) na = 1000; 2638308dcc3eSBarry Smith ierr = PetscMalloc(na*sizeof(PetscReal),&a);CHKERRQ(ierr); 2639308dcc3eSBarry Smith ierr = PetscMalloc(na*sizeof(PetscInt),&its);CHKERRQ(ierr); 2640308dcc3eSBarry Smith snes->conv_malloc = PETSC_TRUE; 2641308dcc3eSBarry Smith } 2642c9005455SLois Curfman McInnes snes->conv_hist = a; 2643758f92a0SBarry Smith snes->conv_hist_its = its; 2644758f92a0SBarry Smith snes->conv_hist_max = na; 2645a12bc48fSLisandro Dalcin snes->conv_hist_len = 0; 2646758f92a0SBarry Smith snes->conv_hist_reset = reset; 2647758f92a0SBarry Smith PetscFunctionReturn(0); 2648758f92a0SBarry Smith } 2649758f92a0SBarry Smith 2650308dcc3eSBarry Smith #if defined(PETSC_HAVE_MATLAB_ENGINE) 2651c6db04a5SJed Brown #include <engine.h> /* MATLAB include file */ 2652c6db04a5SJed Brown #include <mex.h> /* MATLAB include file */ 2653308dcc3eSBarry Smith EXTERN_C_BEGIN 2654308dcc3eSBarry Smith #undef __FUNCT__ 2655308dcc3eSBarry Smith #define __FUNCT__ "SNESGetConvergenceHistoryMatlab" 2656308dcc3eSBarry Smith mxArray *SNESGetConvergenceHistoryMatlab(SNES snes) 2657308dcc3eSBarry Smith { 2658308dcc3eSBarry Smith mxArray *mat; 2659308dcc3eSBarry Smith PetscInt i; 2660308dcc3eSBarry Smith PetscReal *ar; 2661308dcc3eSBarry Smith 2662308dcc3eSBarry Smith PetscFunctionBegin; 2663308dcc3eSBarry Smith mat = mxCreateDoubleMatrix(snes->conv_hist_len,1,mxREAL); 2664308dcc3eSBarry Smith ar = (PetscReal*) mxGetData(mat); 2665308dcc3eSBarry Smith for (i=0; i<snes->conv_hist_len; i++) { 2666308dcc3eSBarry Smith ar[i] = snes->conv_hist[i]; 2667308dcc3eSBarry Smith } 2668308dcc3eSBarry Smith PetscFunctionReturn(mat); 2669308dcc3eSBarry Smith } 2670308dcc3eSBarry Smith EXTERN_C_END 2671308dcc3eSBarry Smith #endif 2672308dcc3eSBarry Smith 2673308dcc3eSBarry Smith 26744a2ae208SSatish Balay #undef __FUNCT__ 26754a2ae208SSatish Balay #define __FUNCT__ "SNESGetConvergenceHistory" 26760c4c9dddSBarry Smith /*@C 2677758f92a0SBarry Smith SNESGetConvergenceHistory - Gets the array used to hold the convergence history. 2678758f92a0SBarry Smith 26793f9fe445SBarry Smith Not Collective 2680758f92a0SBarry Smith 2681758f92a0SBarry Smith Input Parameter: 2682758f92a0SBarry Smith . snes - iterative context obtained from SNESCreate() 2683758f92a0SBarry Smith 2684758f92a0SBarry Smith Output Parameters: 2685758f92a0SBarry Smith . a - array to hold history 2686758f92a0SBarry Smith . its - integer array holds the number of linear iterations (or 2687758f92a0SBarry Smith negative if not converged) for each solve. 2688758f92a0SBarry Smith - na - size of a and its 2689758f92a0SBarry Smith 2690758f92a0SBarry Smith Notes: 2691758f92a0SBarry Smith The calling sequence for this routine in Fortran is 2692758f92a0SBarry Smith $ call SNESGetConvergenceHistory(SNES snes, integer na, integer ierr) 2693758f92a0SBarry Smith 2694758f92a0SBarry Smith This routine is useful, e.g., when running a code for purposes 2695758f92a0SBarry Smith of accurate performance monitoring, when no I/O should be done 2696758f92a0SBarry Smith during the section of code that is being timed. 2697758f92a0SBarry Smith 2698758f92a0SBarry Smith Level: intermediate 2699758f92a0SBarry Smith 2700758f92a0SBarry Smith .keywords: SNES, get, convergence, history 2701758f92a0SBarry Smith 2702758f92a0SBarry Smith .seealso: SNESSetConvergencHistory() 2703758f92a0SBarry Smith 2704758f92a0SBarry Smith @*/ 27057087cfbeSBarry Smith PetscErrorCode SNESGetConvergenceHistory(SNES snes,PetscReal *a[],PetscInt *its[],PetscInt *na) 2706758f92a0SBarry Smith { 2707758f92a0SBarry Smith PetscFunctionBegin; 27080700a824SBarry Smith PetscValidHeaderSpecific(snes,SNES_CLASSID,1); 2709758f92a0SBarry Smith if (a) *a = snes->conv_hist; 2710758f92a0SBarry Smith if (its) *its = snes->conv_hist_its; 2711758f92a0SBarry Smith if (na) *na = snes->conv_hist_len; 27123a40ed3dSBarry Smith PetscFunctionReturn(0); 2713c9005455SLois Curfman McInnes } 2714c9005455SLois Curfman McInnes 2715e74ef692SMatthew Knepley #undef __FUNCT__ 2716e74ef692SMatthew Knepley #define __FUNCT__ "SNESSetUpdate" 2717ac226902SBarry Smith /*@C 271876b2cf59SMatthew Knepley SNESSetUpdate - Sets the general-purpose update function called 2719eec8f646SJed Brown at the beginning of every iteration of the nonlinear solve. Specifically 27207e4bb74cSBarry Smith it is called just before the Jacobian is "evaluated". 272176b2cf59SMatthew Knepley 27223f9fe445SBarry Smith Logically Collective on SNES 272376b2cf59SMatthew Knepley 272476b2cf59SMatthew Knepley Input Parameters: 272576b2cf59SMatthew Knepley . snes - The nonlinear solver context 272676b2cf59SMatthew Knepley . func - The function 272776b2cf59SMatthew Knepley 272876b2cf59SMatthew Knepley Calling sequence of func: 2729b5d30489SBarry Smith . func (SNES snes, PetscInt step); 273076b2cf59SMatthew Knepley 273176b2cf59SMatthew Knepley . step - The current step of the iteration 273276b2cf59SMatthew Knepley 2733fe97e370SBarry Smith Level: advanced 2734fe97e370SBarry Smith 2735fe97e370SBarry 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() 2736fe97e370SBarry Smith This is not used by most users. 273776b2cf59SMatthew Knepley 273876b2cf59SMatthew Knepley .keywords: SNES, update 2739b5d30489SBarry Smith 274085385478SLisandro Dalcin .seealso SNESDefaultUpdate(), SNESSetJacobian(), SNESSolve() 274176b2cf59SMatthew Knepley @*/ 27427087cfbeSBarry Smith PetscErrorCode SNESSetUpdate(SNES snes, PetscErrorCode (*func)(SNES, PetscInt)) 274376b2cf59SMatthew Knepley { 274476b2cf59SMatthew Knepley PetscFunctionBegin; 27450700a824SBarry Smith PetscValidHeaderSpecific(snes, SNES_CLASSID,1); 2746e7788613SBarry Smith snes->ops->update = func; 274776b2cf59SMatthew Knepley PetscFunctionReturn(0); 274876b2cf59SMatthew Knepley } 274976b2cf59SMatthew Knepley 2750e74ef692SMatthew Knepley #undef __FUNCT__ 2751e74ef692SMatthew Knepley #define __FUNCT__ "SNESDefaultUpdate" 275276b2cf59SMatthew Knepley /*@ 275376b2cf59SMatthew Knepley SNESDefaultUpdate - The default update function which does nothing. 275476b2cf59SMatthew Knepley 275576b2cf59SMatthew Knepley Not collective 275676b2cf59SMatthew Knepley 275776b2cf59SMatthew Knepley Input Parameters: 275876b2cf59SMatthew Knepley . snes - The nonlinear solver context 275976b2cf59SMatthew Knepley . step - The current step of the iteration 276076b2cf59SMatthew Knepley 2761205452f4SMatthew Knepley Level: intermediate 2762205452f4SMatthew Knepley 276376b2cf59SMatthew Knepley .keywords: SNES, update 2764a6570f20SBarry Smith .seealso SNESSetUpdate(), SNESDefaultRhsBC(), SNESDefaultShortolutionBC() 276576b2cf59SMatthew Knepley @*/ 27667087cfbeSBarry Smith PetscErrorCode SNESDefaultUpdate(SNES snes, PetscInt step) 276776b2cf59SMatthew Knepley { 276876b2cf59SMatthew Knepley PetscFunctionBegin; 276976b2cf59SMatthew Knepley PetscFunctionReturn(0); 277076b2cf59SMatthew Knepley } 277176b2cf59SMatthew Knepley 27724a2ae208SSatish Balay #undef __FUNCT__ 27734a2ae208SSatish Balay #define __FUNCT__ "SNESScaleStep_Private" 27749b94acceSBarry Smith /* 27759b94acceSBarry Smith SNESScaleStep_Private - Scales a step so that its length is less than the 27769b94acceSBarry Smith positive parameter delta. 27779b94acceSBarry Smith 27789b94acceSBarry Smith Input Parameters: 2779c7afd0dbSLois Curfman McInnes + snes - the SNES context 27809b94acceSBarry Smith . y - approximate solution of linear system 27819b94acceSBarry Smith . fnorm - 2-norm of current function 2782c7afd0dbSLois Curfman McInnes - delta - trust region size 27839b94acceSBarry Smith 27849b94acceSBarry Smith Output Parameters: 2785c7afd0dbSLois Curfman McInnes + gpnorm - predicted function norm at the new point, assuming local 27869b94acceSBarry Smith linearization. The value is zero if the step lies within the trust 27879b94acceSBarry Smith region, and exceeds zero otherwise. 2788c7afd0dbSLois Curfman McInnes - ynorm - 2-norm of the step 27899b94acceSBarry Smith 27909b94acceSBarry Smith Note: 27914b27c08aSLois Curfman McInnes For non-trust region methods such as SNESLS, the parameter delta 27929b94acceSBarry Smith is set to be the maximum allowable step size. 27939b94acceSBarry Smith 27949b94acceSBarry Smith .keywords: SNES, nonlinear, scale, step 27959b94acceSBarry Smith */ 2796dfbe8321SBarry Smith PetscErrorCode SNESScaleStep_Private(SNES snes,Vec y,PetscReal *fnorm,PetscReal *delta,PetscReal *gpnorm,PetscReal *ynorm) 27979b94acceSBarry Smith { 2798064f8208SBarry Smith PetscReal nrm; 2799ea709b57SSatish Balay PetscScalar cnorm; 2800dfbe8321SBarry Smith PetscErrorCode ierr; 28013a40ed3dSBarry Smith 28023a40ed3dSBarry Smith PetscFunctionBegin; 28030700a824SBarry Smith PetscValidHeaderSpecific(snes,SNES_CLASSID,1); 28040700a824SBarry Smith PetscValidHeaderSpecific(y,VEC_CLASSID,2); 2805c9780b6fSBarry Smith PetscCheckSameComm(snes,1,y,2); 2806184914b5SBarry Smith 2807064f8208SBarry Smith ierr = VecNorm(y,NORM_2,&nrm);CHKERRQ(ierr); 2808064f8208SBarry Smith if (nrm > *delta) { 2809064f8208SBarry Smith nrm = *delta/nrm; 2810064f8208SBarry Smith *gpnorm = (1.0 - nrm)*(*fnorm); 2811064f8208SBarry Smith cnorm = nrm; 28122dcb1b2aSMatthew Knepley ierr = VecScale(y,cnorm);CHKERRQ(ierr); 28139b94acceSBarry Smith *ynorm = *delta; 28149b94acceSBarry Smith } else { 28159b94acceSBarry Smith *gpnorm = 0.0; 2816064f8208SBarry Smith *ynorm = nrm; 28179b94acceSBarry Smith } 28183a40ed3dSBarry Smith PetscFunctionReturn(0); 28199b94acceSBarry Smith } 28209b94acceSBarry Smith 28214a2ae208SSatish Balay #undef __FUNCT__ 28224a2ae208SSatish Balay #define __FUNCT__ "SNESSolve" 28236ce558aeSBarry Smith /*@C 2824f69a0ea3SMatthew Knepley SNESSolve - Solves a nonlinear system F(x) = b. 2825f69a0ea3SMatthew Knepley Call SNESSolve() after calling SNESCreate() and optional routines of the form SNESSetXXX(). 28269b94acceSBarry Smith 2827c7afd0dbSLois Curfman McInnes Collective on SNES 2828c7afd0dbSLois Curfman McInnes 2829b2002411SLois Curfman McInnes Input Parameters: 2830c7afd0dbSLois Curfman McInnes + snes - the SNES context 28313cebf274SJed Brown . b - the constant part of the equation F(x) = b, or PETSC_NULL to use zero. 283285385478SLisandro Dalcin - x - the solution vector. 28339b94acceSBarry Smith 2834b2002411SLois Curfman McInnes Notes: 28358ddd3da0SLois Curfman McInnes The user should initialize the vector,x, with the initial guess 28368ddd3da0SLois Curfman McInnes for the nonlinear solve prior to calling SNESSolve. In particular, 28378ddd3da0SLois Curfman McInnes to employ an initial guess of zero, the user should explicitly set 28388ddd3da0SLois Curfman McInnes this vector to zero by calling VecSet(). 28398ddd3da0SLois Curfman McInnes 284036851e7fSLois Curfman McInnes Level: beginner 284136851e7fSLois Curfman McInnes 28429b94acceSBarry Smith .keywords: SNES, nonlinear, solve 28439b94acceSBarry Smith 2844*c0df2a02SJed Brown .seealso: SNESCreate(), SNESDestroy(), SNESSetFunction(), SNESSetJacobian(), SNESSetGridSequence(), SNESGetSolution() 28459b94acceSBarry Smith @*/ 28467087cfbeSBarry Smith PetscErrorCode SNESSolve(SNES snes,Vec b,Vec x) 28479b94acceSBarry Smith { 2848dfbe8321SBarry Smith PetscErrorCode ierr; 2849ace3abfcSBarry Smith PetscBool flg; 2850eabae89aSBarry Smith char filename[PETSC_MAX_PATH_LEN]; 2851eabae89aSBarry Smith PetscViewer viewer; 2852efd51863SBarry Smith PetscInt grid; 2853052efed2SBarry Smith 28543a40ed3dSBarry Smith PetscFunctionBegin; 28550700a824SBarry Smith PetscValidHeaderSpecific(snes,SNES_CLASSID,1); 28560700a824SBarry Smith PetscValidHeaderSpecific(x,VEC_CLASSID,3); 2857f69a0ea3SMatthew Knepley PetscCheckSameComm(snes,1,x,3); 28580700a824SBarry Smith if (b) PetscValidHeaderSpecific(b,VEC_CLASSID,2); 285985385478SLisandro Dalcin if (b) PetscCheckSameComm(snes,1,b,2); 286085385478SLisandro Dalcin 2861a8248277SBarry Smith for (grid=0; grid<snes->gridsequence; grid++) {ierr = PetscViewerASCIIPushTab(PETSC_VIEWER_STDOUT_(((PetscObject)snes)->comm));CHKERRQ(ierr);} 2862efd51863SBarry Smith for (grid=0; grid<snes->gridsequence+1; grid++) { 2863efd51863SBarry Smith 286485385478SLisandro Dalcin /* set solution vector */ 2865efd51863SBarry Smith if (!grid) {ierr = PetscObjectReference((PetscObject)x);CHKERRQ(ierr);} 28666bf464f9SBarry Smith ierr = VecDestroy(&snes->vec_sol);CHKERRQ(ierr); 286785385478SLisandro Dalcin snes->vec_sol = x; 286885385478SLisandro Dalcin /* set afine vector if provided */ 286985385478SLisandro Dalcin if (b) { ierr = PetscObjectReference((PetscObject)b);CHKERRQ(ierr); } 28706bf464f9SBarry Smith ierr = VecDestroy(&snes->vec_rhs);CHKERRQ(ierr); 287185385478SLisandro Dalcin snes->vec_rhs = b; 287285385478SLisandro Dalcin 287370e92668SMatthew Knepley ierr = SNESSetUp(snes);CHKERRQ(ierr); 28743f149594SLisandro Dalcin 2875d25893d9SBarry Smith if (!grid && snes->ops->computeinitialguess) { 2876d25893d9SBarry Smith ierr = (*snes->ops->computeinitialguess)(snes,snes->vec_sol,snes->initialguessP);CHKERRQ(ierr); 2877d25893d9SBarry Smith } 2878d25893d9SBarry Smith 2879abc0a331SBarry Smith if (snes->conv_hist_reset) snes->conv_hist_len = 0; 288050ffb88aSMatthew Knepley snes->nfuncs = 0; snes->linear_its = 0; snes->numFailures = 0; 2881d5e45103SBarry Smith 28823f149594SLisandro Dalcin ierr = PetscLogEventBegin(SNES_Solve,snes,0,0,0);CHKERRQ(ierr); 28834936397dSBarry Smith ierr = (*snes->ops->solve)(snes);CHKERRQ(ierr); 288485385478SLisandro Dalcin ierr = PetscLogEventEnd(SNES_Solve,snes,0,0,0);CHKERRQ(ierr); 28854936397dSBarry Smith if (snes->domainerror){ 28864936397dSBarry Smith snes->reason = SNES_DIVERGED_FUNCTION_DOMAIN; 28874936397dSBarry Smith snes->domainerror = PETSC_FALSE; 28884936397dSBarry Smith } 288917186662SBarry Smith if (!snes->reason) SETERRQ(PETSC_COMM_SELF,PETSC_ERR_PLIB,"Internal error, solver returned without setting converged reason"); 28903f149594SLisandro Dalcin 28917adad957SLisandro Dalcin ierr = PetscOptionsGetString(((PetscObject)snes)->prefix,"-snes_view",filename,PETSC_MAX_PATH_LEN,&flg);CHKERRQ(ierr); 2892eabae89aSBarry Smith if (flg && !PetscPreLoadingOn) { 28937adad957SLisandro Dalcin ierr = PetscViewerASCIIOpen(((PetscObject)snes)->comm,filename,&viewer);CHKERRQ(ierr); 2894eabae89aSBarry Smith ierr = SNESView(snes,viewer);CHKERRQ(ierr); 28956bf464f9SBarry Smith ierr = PetscViewerDestroy(&viewer);CHKERRQ(ierr); 2896eabae89aSBarry Smith } 2897eabae89aSBarry Smith 289890d69ab7SBarry Smith flg = PETSC_FALSE; 2899acfcf0e5SJed Brown ierr = PetscOptionsGetBool(((PetscObject)snes)->prefix,"-snes_test_local_min",&flg,PETSC_NULL);CHKERRQ(ierr); 2900da9b6338SBarry Smith if (flg && !PetscPreLoadingOn) { ierr = SNESTestLocalMin(snes);CHKERRQ(ierr); } 29015968eb51SBarry Smith if (snes->printreason) { 2902a8248277SBarry Smith ierr = PetscViewerASCIIAddTab(PETSC_VIEWER_STDOUT_(((PetscObject)snes)->comm),((PetscObject)snes)->tablevel);CHKERRQ(ierr); 29035968eb51SBarry Smith if (snes->reason > 0) { 2904a8248277SBarry Smith ierr = PetscViewerASCIIPrintf(PETSC_VIEWER_STDOUT_(((PetscObject)snes)->comm),"Nonlinear solve converged due to %s\n",SNESConvergedReasons[snes->reason]);CHKERRQ(ierr); 29055968eb51SBarry Smith } else { 2906a8248277SBarry Smith ierr = PetscViewerASCIIPrintf(PETSC_VIEWER_STDOUT_(((PetscObject)snes)->comm),"Nonlinear solve did not converge due to %s\n",SNESConvergedReasons[snes->reason]);CHKERRQ(ierr); 29075968eb51SBarry Smith } 2908a8248277SBarry Smith ierr = PetscViewerASCIISubtractTab(PETSC_VIEWER_STDOUT_(((PetscObject)snes)->comm),((PetscObject)snes)->tablevel);CHKERRQ(ierr); 29095968eb51SBarry Smith } 29105968eb51SBarry Smith 29118501fc72SJed Brown flg = PETSC_FALSE; 29128501fc72SJed Brown ierr = PetscOptionsGetString(((PetscObject)snes)->prefix,"-snes_view_solution_vtk",filename,PETSC_MAX_PATH_LEN,&flg);CHKERRQ(ierr); 29138501fc72SJed Brown if (flg) { 29148501fc72SJed Brown PetscViewer viewer; 29158501fc72SJed Brown ierr = PetscViewerCreate(((PetscObject)snes)->comm,&viewer);CHKERRQ(ierr); 29168501fc72SJed Brown ierr = PetscViewerSetType(viewer,PETSCVIEWERVTK);CHKERRQ(ierr); 29178501fc72SJed Brown ierr = PetscViewerFileSetName(viewer,filename);CHKERRQ(ierr); 29188501fc72SJed Brown ierr = VecView(snes->vec_sol,viewer);CHKERRQ(ierr); 29198501fc72SJed Brown ierr = PetscViewerDestroy(&viewer);CHKERRQ(ierr); 29208501fc72SJed Brown } 29218501fc72SJed Brown 2922e113a28aSBarry Smith if (snes->errorifnotconverged && snes->reason < 0) SETERRQ(((PetscObject)snes)->comm,PETSC_ERR_NOT_CONVERGED,"SNESSolve has not converged"); 2923efd51863SBarry Smith if (grid < snes->gridsequence) { 2924efd51863SBarry Smith DM fine; 2925efd51863SBarry Smith Vec xnew; 2926efd51863SBarry Smith Mat interp; 2927efd51863SBarry Smith 2928efd51863SBarry Smith ierr = DMRefine(snes->dm,((PetscObject)snes)->comm,&fine);CHKERRQ(ierr); 2929efd51863SBarry Smith ierr = DMGetInterpolation(snes->dm,fine,&interp,PETSC_NULL);CHKERRQ(ierr); 2930efd51863SBarry Smith ierr = DMCreateGlobalVector(fine,&xnew);CHKERRQ(ierr); 2931efd51863SBarry Smith ierr = MatInterpolate(interp,x,xnew);CHKERRQ(ierr); 2932efd51863SBarry Smith ierr = MatDestroy(&interp);CHKERRQ(ierr); 2933efd51863SBarry Smith x = xnew; 2934efd51863SBarry Smith 2935efd51863SBarry Smith ierr = SNESReset(snes);CHKERRQ(ierr); 2936efd51863SBarry Smith ierr = SNESSetDM(snes,fine);CHKERRQ(ierr); 2937efd51863SBarry Smith ierr = DMDestroy(&fine);CHKERRQ(ierr); 2938a8248277SBarry Smith ierr = PetscViewerASCIIPopTab(PETSC_VIEWER_STDOUT_(((PetscObject)snes)->comm));CHKERRQ(ierr); 2939efd51863SBarry Smith } 2940efd51863SBarry Smith } 29413a40ed3dSBarry Smith PetscFunctionReturn(0); 29429b94acceSBarry Smith } 29439b94acceSBarry Smith 29449b94acceSBarry Smith /* --------- Internal routines for SNES Package --------- */ 29459b94acceSBarry Smith 29464a2ae208SSatish Balay #undef __FUNCT__ 29474a2ae208SSatish Balay #define __FUNCT__ "SNESSetType" 294882bf6240SBarry Smith /*@C 29494b0e389bSBarry Smith SNESSetType - Sets the method for the nonlinear solver. 29509b94acceSBarry Smith 2951fee21e36SBarry Smith Collective on SNES 2952fee21e36SBarry Smith 2953c7afd0dbSLois Curfman McInnes Input Parameters: 2954c7afd0dbSLois Curfman McInnes + snes - the SNES context 2955454a90a3SBarry Smith - type - a known method 2956c7afd0dbSLois Curfman McInnes 2957c7afd0dbSLois Curfman McInnes Options Database Key: 2958454a90a3SBarry Smith . -snes_type <type> - Sets the method; use -help for a list 2959c7afd0dbSLois Curfman McInnes of available methods (for instance, ls or tr) 2960ae12b187SLois Curfman McInnes 29619b94acceSBarry Smith Notes: 2962e090d566SSatish Balay See "petsc/include/petscsnes.h" for available methods (for instance) 29634b27c08aSLois Curfman McInnes + SNESLS - Newton's method with line search 2964c7afd0dbSLois Curfman McInnes (systems of nonlinear equations) 29654b27c08aSLois Curfman McInnes . SNESTR - Newton's method with trust region 2966c7afd0dbSLois Curfman McInnes (systems of nonlinear equations) 29679b94acceSBarry Smith 2968ae12b187SLois Curfman McInnes Normally, it is best to use the SNESSetFromOptions() command and then 2969ae12b187SLois Curfman McInnes set the SNES solver type from the options database rather than by using 2970ae12b187SLois Curfman McInnes this routine. Using the options database provides the user with 2971ae12b187SLois Curfman McInnes maximum flexibility in evaluating the many nonlinear solvers. 2972ae12b187SLois Curfman McInnes The SNESSetType() routine is provided for those situations where it 2973ae12b187SLois Curfman McInnes is necessary to set the nonlinear solver independently of the command 2974ae12b187SLois Curfman McInnes line or options database. This might be the case, for example, when 2975ae12b187SLois Curfman McInnes the choice of solver changes during the execution of the program, 2976ae12b187SLois Curfman McInnes and the user's application is taking responsibility for choosing the 2977b0a32e0cSBarry Smith appropriate method. 297836851e7fSLois Curfman McInnes 297936851e7fSLois Curfman McInnes Level: intermediate 2980a703fe33SLois Curfman McInnes 2981454a90a3SBarry Smith .keywords: SNES, set, type 2982435da068SBarry Smith 2983435da068SBarry Smith .seealso: SNESType, SNESCreate() 2984435da068SBarry Smith 29859b94acceSBarry Smith @*/ 29867087cfbeSBarry Smith PetscErrorCode SNESSetType(SNES snes,const SNESType type) 29879b94acceSBarry Smith { 2988dfbe8321SBarry Smith PetscErrorCode ierr,(*r)(SNES); 2989ace3abfcSBarry Smith PetscBool match; 29903a40ed3dSBarry Smith 29913a40ed3dSBarry Smith PetscFunctionBegin; 29920700a824SBarry Smith PetscValidHeaderSpecific(snes,SNES_CLASSID,1); 29934482741eSBarry Smith PetscValidCharPointer(type,2); 299482bf6240SBarry Smith 29956831982aSBarry Smith ierr = PetscTypeCompare((PetscObject)snes,type,&match);CHKERRQ(ierr); 29960f5bd95cSBarry Smith if (match) PetscFunctionReturn(0); 299792ff6ae8SBarry Smith 29984b91b6eaSBarry Smith ierr = PetscFListFind(SNESList,((PetscObject)snes)->comm,type,PETSC_TRUE,(void (**)(void)) &r);CHKERRQ(ierr); 2999e32f2f54SBarry Smith if (!r) SETERRQ1(PETSC_COMM_SELF,PETSC_ERR_ARG_UNKNOWN_TYPE,"Unable to find requested SNES type %s",type); 300075396ef9SLisandro Dalcin /* Destroy the previous private SNES context */ 300175396ef9SLisandro Dalcin if (snes->ops->destroy) { ierr = (*(snes)->ops->destroy)(snes);CHKERRQ(ierr); } 300275396ef9SLisandro Dalcin /* Reinitialize function pointers in SNESOps structure */ 300375396ef9SLisandro Dalcin snes->ops->setup = 0; 300475396ef9SLisandro Dalcin snes->ops->solve = 0; 300575396ef9SLisandro Dalcin snes->ops->view = 0; 300675396ef9SLisandro Dalcin snes->ops->setfromoptions = 0; 300775396ef9SLisandro Dalcin snes->ops->destroy = 0; 300875396ef9SLisandro Dalcin /* Call the SNESCreate_XXX routine for this particular Nonlinear solver */ 300975396ef9SLisandro Dalcin snes->setupcalled = PETSC_FALSE; 3010454a90a3SBarry Smith ierr = PetscObjectChangeTypeName((PetscObject)snes,type);CHKERRQ(ierr); 301103bfa161SLisandro Dalcin ierr = (*r)(snes);CHKERRQ(ierr); 30129fb22e1aSBarry Smith #if defined(PETSC_HAVE_AMS) 30139fb22e1aSBarry Smith if (PetscAMSPublishAll) { 30149fb22e1aSBarry Smith ierr = PetscObjectAMSPublish((PetscObject)snes);CHKERRQ(ierr); 30159fb22e1aSBarry Smith } 30169fb22e1aSBarry Smith #endif 30173a40ed3dSBarry Smith PetscFunctionReturn(0); 30189b94acceSBarry Smith } 30199b94acceSBarry Smith 3020a847f771SSatish Balay 30219b94acceSBarry Smith /* --------------------------------------------------------------------- */ 30224a2ae208SSatish Balay #undef __FUNCT__ 30234a2ae208SSatish Balay #define __FUNCT__ "SNESRegisterDestroy" 302452baeb72SSatish Balay /*@ 30259b94acceSBarry Smith SNESRegisterDestroy - Frees the list of nonlinear solvers that were 3026f1af5d2fSBarry Smith registered by SNESRegisterDynamic(). 30279b94acceSBarry Smith 3028fee21e36SBarry Smith Not Collective 3029fee21e36SBarry Smith 303036851e7fSLois Curfman McInnes Level: advanced 303136851e7fSLois Curfman McInnes 30329b94acceSBarry Smith .keywords: SNES, nonlinear, register, destroy 30339b94acceSBarry Smith 30349b94acceSBarry Smith .seealso: SNESRegisterAll(), SNESRegisterAll() 30359b94acceSBarry Smith @*/ 30367087cfbeSBarry Smith PetscErrorCode SNESRegisterDestroy(void) 30379b94acceSBarry Smith { 3038dfbe8321SBarry Smith PetscErrorCode ierr; 303982bf6240SBarry Smith 30403a40ed3dSBarry Smith PetscFunctionBegin; 30411441b1d3SBarry Smith ierr = PetscFListDestroy(&SNESList);CHKERRQ(ierr); 30424c49b128SBarry Smith SNESRegisterAllCalled = PETSC_FALSE; 30433a40ed3dSBarry Smith PetscFunctionReturn(0); 30449b94acceSBarry Smith } 30459b94acceSBarry Smith 30464a2ae208SSatish Balay #undef __FUNCT__ 30474a2ae208SSatish Balay #define __FUNCT__ "SNESGetType" 30489b94acceSBarry Smith /*@C 30499a28b0a6SLois Curfman McInnes SNESGetType - Gets the SNES method type and name (as a string). 30509b94acceSBarry Smith 3051c7afd0dbSLois Curfman McInnes Not Collective 3052c7afd0dbSLois Curfman McInnes 30539b94acceSBarry Smith Input Parameter: 30544b0e389bSBarry Smith . snes - nonlinear solver context 30559b94acceSBarry Smith 30569b94acceSBarry Smith Output Parameter: 30573a7fca6bSBarry Smith . type - SNES method (a character string) 30589b94acceSBarry Smith 305936851e7fSLois Curfman McInnes Level: intermediate 306036851e7fSLois Curfman McInnes 3061454a90a3SBarry Smith .keywords: SNES, nonlinear, get, type, name 30629b94acceSBarry Smith @*/ 30637087cfbeSBarry Smith PetscErrorCode SNESGetType(SNES snes,const SNESType *type) 30649b94acceSBarry Smith { 30653a40ed3dSBarry Smith PetscFunctionBegin; 30660700a824SBarry Smith PetscValidHeaderSpecific(snes,SNES_CLASSID,1); 30674482741eSBarry Smith PetscValidPointer(type,2); 30687adad957SLisandro Dalcin *type = ((PetscObject)snes)->type_name; 30693a40ed3dSBarry Smith PetscFunctionReturn(0); 30709b94acceSBarry Smith } 30719b94acceSBarry Smith 30724a2ae208SSatish Balay #undef __FUNCT__ 30734a2ae208SSatish Balay #define __FUNCT__ "SNESGetSolution" 307452baeb72SSatish Balay /*@ 30759b94acceSBarry Smith SNESGetSolution - Returns the vector where the approximate solution is 3076*c0df2a02SJed Brown stored. This is the fine grid solution when using SNESSetGridSequence(). 30779b94acceSBarry Smith 3078c7afd0dbSLois Curfman McInnes Not Collective, but Vec is parallel if SNES is parallel 3079c7afd0dbSLois Curfman McInnes 30809b94acceSBarry Smith Input Parameter: 30819b94acceSBarry Smith . snes - the SNES context 30829b94acceSBarry Smith 30839b94acceSBarry Smith Output Parameter: 30849b94acceSBarry Smith . x - the solution 30859b94acceSBarry Smith 308670e92668SMatthew Knepley Level: intermediate 308736851e7fSLois Curfman McInnes 30889b94acceSBarry Smith .keywords: SNES, nonlinear, get, solution 30899b94acceSBarry Smith 309085385478SLisandro Dalcin .seealso: SNESGetSolutionUpdate(), SNESGetFunction() 30919b94acceSBarry Smith @*/ 30927087cfbeSBarry Smith PetscErrorCode SNESGetSolution(SNES snes,Vec *x) 30939b94acceSBarry Smith { 30943a40ed3dSBarry Smith PetscFunctionBegin; 30950700a824SBarry Smith PetscValidHeaderSpecific(snes,SNES_CLASSID,1); 30964482741eSBarry Smith PetscValidPointer(x,2); 309785385478SLisandro Dalcin *x = snes->vec_sol; 309870e92668SMatthew Knepley PetscFunctionReturn(0); 309970e92668SMatthew Knepley } 310070e92668SMatthew Knepley 310170e92668SMatthew Knepley #undef __FUNCT__ 31024a2ae208SSatish Balay #define __FUNCT__ "SNESGetSolutionUpdate" 310352baeb72SSatish Balay /*@ 31049b94acceSBarry Smith SNESGetSolutionUpdate - Returns the vector where the solution update is 31059b94acceSBarry Smith stored. 31069b94acceSBarry Smith 3107c7afd0dbSLois Curfman McInnes Not Collective, but Vec is parallel if SNES is parallel 3108c7afd0dbSLois Curfman McInnes 31099b94acceSBarry Smith Input Parameter: 31109b94acceSBarry Smith . snes - the SNES context 31119b94acceSBarry Smith 31129b94acceSBarry Smith Output Parameter: 31139b94acceSBarry Smith . x - the solution update 31149b94acceSBarry Smith 311536851e7fSLois Curfman McInnes Level: advanced 311636851e7fSLois Curfman McInnes 31179b94acceSBarry Smith .keywords: SNES, nonlinear, get, solution, update 31189b94acceSBarry Smith 311985385478SLisandro Dalcin .seealso: SNESGetSolution(), SNESGetFunction() 31209b94acceSBarry Smith @*/ 31217087cfbeSBarry Smith PetscErrorCode SNESGetSolutionUpdate(SNES snes,Vec *x) 31229b94acceSBarry Smith { 31233a40ed3dSBarry Smith PetscFunctionBegin; 31240700a824SBarry Smith PetscValidHeaderSpecific(snes,SNES_CLASSID,1); 31254482741eSBarry Smith PetscValidPointer(x,2); 312685385478SLisandro Dalcin *x = snes->vec_sol_update; 31273a40ed3dSBarry Smith PetscFunctionReturn(0); 31289b94acceSBarry Smith } 31299b94acceSBarry Smith 31304a2ae208SSatish Balay #undef __FUNCT__ 31314a2ae208SSatish Balay #define __FUNCT__ "SNESGetFunction" 31329b94acceSBarry Smith /*@C 31333638b69dSLois Curfman McInnes SNESGetFunction - Returns the vector where the function is stored. 31349b94acceSBarry Smith 3135c7afd0dbSLois Curfman McInnes Not Collective, but Vec is parallel if SNES is parallel 3136c7afd0dbSLois Curfman McInnes 31379b94acceSBarry Smith Input Parameter: 31389b94acceSBarry Smith . snes - the SNES context 31399b94acceSBarry Smith 31409b94acceSBarry Smith Output Parameter: 31417bf4e008SBarry Smith + r - the function (or PETSC_NULL) 314270e92668SMatthew Knepley . func - the function (or PETSC_NULL) 314370e92668SMatthew Knepley - ctx - the function context (or PETSC_NULL) 31449b94acceSBarry Smith 314536851e7fSLois Curfman McInnes Level: advanced 314636851e7fSLois Curfman McInnes 3147a86d99e1SLois Curfman McInnes .keywords: SNES, nonlinear, get, function 31489b94acceSBarry Smith 31494b27c08aSLois Curfman McInnes .seealso: SNESSetFunction(), SNESGetSolution() 31509b94acceSBarry Smith @*/ 31517087cfbeSBarry Smith PetscErrorCode SNESGetFunction(SNES snes,Vec *r,PetscErrorCode (**func)(SNES,Vec,Vec,void*),void **ctx) 31529b94acceSBarry Smith { 31533a40ed3dSBarry Smith PetscFunctionBegin; 31540700a824SBarry Smith PetscValidHeaderSpecific(snes,SNES_CLASSID,1); 315585385478SLisandro Dalcin if (r) *r = snes->vec_func; 3156e7788613SBarry Smith if (func) *func = snes->ops->computefunction; 315770e92668SMatthew Knepley if (ctx) *ctx = snes->funP; 31583a40ed3dSBarry Smith PetscFunctionReturn(0); 31599b94acceSBarry Smith } 31609b94acceSBarry Smith 31614a2ae208SSatish Balay #undef __FUNCT__ 3162646217ecSPeter Brune #define __FUNCT__ "SNESGetGS" 3163646217ecSPeter Brune PetscErrorCode SNESGetGS (SNES snes, PetscErrorCode(**func)(SNES, Vec, Vec, void*), void ** ctx) 3164646217ecSPeter Brune { 3165646217ecSPeter Brune PetscFunctionBegin; 3166646217ecSPeter Brune PetscValidHeaderSpecific(snes,SNES_CLASSID,1); 3167646217ecSPeter Brune if (func) *func = snes->ops->computegs; 3168646217ecSPeter Brune if (ctx) *ctx = snes->funP; 3169646217ecSPeter Brune PetscFunctionReturn(0); 3170646217ecSPeter Brune } 3171646217ecSPeter Brune 3172646217ecSPeter Brune #undef __FUNCT__ 31734a2ae208SSatish Balay #define __FUNCT__ "SNESSetOptionsPrefix" 31743c7409f5SSatish Balay /*@C 31753c7409f5SSatish Balay SNESSetOptionsPrefix - Sets the prefix used for searching for all 3176d850072dSLois Curfman McInnes SNES options in the database. 31773c7409f5SSatish Balay 31783f9fe445SBarry Smith Logically Collective on SNES 3179fee21e36SBarry Smith 3180c7afd0dbSLois Curfman McInnes Input Parameter: 3181c7afd0dbSLois Curfman McInnes + snes - the SNES context 3182c7afd0dbSLois Curfman McInnes - prefix - the prefix to prepend to all option names 3183c7afd0dbSLois Curfman McInnes 3184d850072dSLois Curfman McInnes Notes: 3185a83b1b31SSatish Balay A hyphen (-) must NOT be given at the beginning of the prefix name. 3186c7afd0dbSLois Curfman McInnes The first character of all runtime options is AUTOMATICALLY the hyphen. 3187d850072dSLois Curfman McInnes 318836851e7fSLois Curfman McInnes Level: advanced 318936851e7fSLois Curfman McInnes 31903c7409f5SSatish Balay .keywords: SNES, set, options, prefix, database 3191a86d99e1SLois Curfman McInnes 3192a86d99e1SLois Curfman McInnes .seealso: SNESSetFromOptions() 31933c7409f5SSatish Balay @*/ 31947087cfbeSBarry Smith PetscErrorCode SNESSetOptionsPrefix(SNES snes,const char prefix[]) 31953c7409f5SSatish Balay { 3196dfbe8321SBarry Smith PetscErrorCode ierr; 31973c7409f5SSatish Balay 31983a40ed3dSBarry Smith PetscFunctionBegin; 31990700a824SBarry Smith PetscValidHeaderSpecific(snes,SNES_CLASSID,1); 3200639f9d9dSBarry Smith ierr = PetscObjectSetOptionsPrefix((PetscObject)snes,prefix);CHKERRQ(ierr); 32011cee3971SBarry Smith if (!snes->ksp) {ierr = SNESGetKSP(snes,&snes->ksp);CHKERRQ(ierr);} 320294b7f48cSBarry Smith ierr = KSPSetOptionsPrefix(snes->ksp,prefix);CHKERRQ(ierr); 32033a40ed3dSBarry Smith PetscFunctionReturn(0); 32043c7409f5SSatish Balay } 32053c7409f5SSatish Balay 32064a2ae208SSatish Balay #undef __FUNCT__ 32074a2ae208SSatish Balay #define __FUNCT__ "SNESAppendOptionsPrefix" 32083c7409f5SSatish Balay /*@C 3209f525115eSLois Curfman McInnes SNESAppendOptionsPrefix - Appends to the prefix used for searching for all 3210d850072dSLois Curfman McInnes SNES options in the database. 32113c7409f5SSatish Balay 32123f9fe445SBarry Smith Logically Collective on SNES 3213fee21e36SBarry Smith 3214c7afd0dbSLois Curfman McInnes Input Parameters: 3215c7afd0dbSLois Curfman McInnes + snes - the SNES context 3216c7afd0dbSLois Curfman McInnes - prefix - the prefix to prepend to all option names 3217c7afd0dbSLois Curfman McInnes 3218d850072dSLois Curfman McInnes Notes: 3219a83b1b31SSatish Balay A hyphen (-) must NOT be given at the beginning of the prefix name. 3220c7afd0dbSLois Curfman McInnes The first character of all runtime options is AUTOMATICALLY the hyphen. 3221d850072dSLois Curfman McInnes 322236851e7fSLois Curfman McInnes Level: advanced 322336851e7fSLois Curfman McInnes 32243c7409f5SSatish Balay .keywords: SNES, append, options, prefix, database 3225a86d99e1SLois Curfman McInnes 3226a86d99e1SLois Curfman McInnes .seealso: SNESGetOptionsPrefix() 32273c7409f5SSatish Balay @*/ 32287087cfbeSBarry Smith PetscErrorCode SNESAppendOptionsPrefix(SNES snes,const char prefix[]) 32293c7409f5SSatish Balay { 3230dfbe8321SBarry Smith PetscErrorCode ierr; 32313c7409f5SSatish Balay 32323a40ed3dSBarry Smith PetscFunctionBegin; 32330700a824SBarry Smith PetscValidHeaderSpecific(snes,SNES_CLASSID,1); 3234639f9d9dSBarry Smith ierr = PetscObjectAppendOptionsPrefix((PetscObject)snes,prefix);CHKERRQ(ierr); 32351cee3971SBarry Smith if (!snes->ksp) {ierr = SNESGetKSP(snes,&snes->ksp);CHKERRQ(ierr);} 323694b7f48cSBarry Smith ierr = KSPAppendOptionsPrefix(snes->ksp,prefix);CHKERRQ(ierr); 32373a40ed3dSBarry Smith PetscFunctionReturn(0); 32383c7409f5SSatish Balay } 32393c7409f5SSatish Balay 32404a2ae208SSatish Balay #undef __FUNCT__ 32414a2ae208SSatish Balay #define __FUNCT__ "SNESGetOptionsPrefix" 32429ab63eb5SSatish Balay /*@C 32433c7409f5SSatish Balay SNESGetOptionsPrefix - Sets the prefix used for searching for all 32443c7409f5SSatish Balay SNES options in the database. 32453c7409f5SSatish Balay 3246c7afd0dbSLois Curfman McInnes Not Collective 3247c7afd0dbSLois Curfman McInnes 32483c7409f5SSatish Balay Input Parameter: 32493c7409f5SSatish Balay . snes - the SNES context 32503c7409f5SSatish Balay 32513c7409f5SSatish Balay Output Parameter: 32523c7409f5SSatish Balay . prefix - pointer to the prefix string used 32533c7409f5SSatish Balay 32544ef407dbSRichard Tran Mills Notes: On the fortran side, the user should pass in a string 'prefix' of 32559ab63eb5SSatish Balay sufficient length to hold the prefix. 32569ab63eb5SSatish Balay 325736851e7fSLois Curfman McInnes Level: advanced 325836851e7fSLois Curfman McInnes 32593c7409f5SSatish Balay .keywords: SNES, get, options, prefix, database 3260a86d99e1SLois Curfman McInnes 3261a86d99e1SLois Curfman McInnes .seealso: SNESAppendOptionsPrefix() 32623c7409f5SSatish Balay @*/ 32637087cfbeSBarry Smith PetscErrorCode SNESGetOptionsPrefix(SNES snes,const char *prefix[]) 32643c7409f5SSatish Balay { 3265dfbe8321SBarry Smith PetscErrorCode ierr; 32663c7409f5SSatish Balay 32673a40ed3dSBarry Smith PetscFunctionBegin; 32680700a824SBarry Smith PetscValidHeaderSpecific(snes,SNES_CLASSID,1); 3269639f9d9dSBarry Smith ierr = PetscObjectGetOptionsPrefix((PetscObject)snes,prefix);CHKERRQ(ierr); 32703a40ed3dSBarry Smith PetscFunctionReturn(0); 32713c7409f5SSatish Balay } 32723c7409f5SSatish Balay 3273b2002411SLois Curfman McInnes 32744a2ae208SSatish Balay #undef __FUNCT__ 32754a2ae208SSatish Balay #define __FUNCT__ "SNESRegister" 32763cea93caSBarry Smith /*@C 32773cea93caSBarry Smith SNESRegister - See SNESRegisterDynamic() 32783cea93caSBarry Smith 32797f6c08e0SMatthew Knepley Level: advanced 32803cea93caSBarry Smith @*/ 32817087cfbeSBarry Smith PetscErrorCode SNESRegister(const char sname[],const char path[],const char name[],PetscErrorCode (*function)(SNES)) 3282b2002411SLois Curfman McInnes { 3283e2d1d2b7SBarry Smith char fullname[PETSC_MAX_PATH_LEN]; 3284dfbe8321SBarry Smith PetscErrorCode ierr; 3285b2002411SLois Curfman McInnes 3286b2002411SLois Curfman McInnes PetscFunctionBegin; 3287b0a32e0cSBarry Smith ierr = PetscFListConcat(path,name,fullname);CHKERRQ(ierr); 3288c134de8dSSatish Balay ierr = PetscFListAdd(&SNESList,sname,fullname,(void (*)(void))function);CHKERRQ(ierr); 3289b2002411SLois Curfman McInnes PetscFunctionReturn(0); 3290b2002411SLois Curfman McInnes } 3291da9b6338SBarry Smith 3292da9b6338SBarry Smith #undef __FUNCT__ 3293da9b6338SBarry Smith #define __FUNCT__ "SNESTestLocalMin" 32947087cfbeSBarry Smith PetscErrorCode SNESTestLocalMin(SNES snes) 3295da9b6338SBarry Smith { 3296dfbe8321SBarry Smith PetscErrorCode ierr; 329777431f27SBarry Smith PetscInt N,i,j; 3298da9b6338SBarry Smith Vec u,uh,fh; 3299da9b6338SBarry Smith PetscScalar value; 3300da9b6338SBarry Smith PetscReal norm; 3301da9b6338SBarry Smith 3302da9b6338SBarry Smith PetscFunctionBegin; 3303da9b6338SBarry Smith ierr = SNESGetSolution(snes,&u);CHKERRQ(ierr); 3304da9b6338SBarry Smith ierr = VecDuplicate(u,&uh);CHKERRQ(ierr); 3305da9b6338SBarry Smith ierr = VecDuplicate(u,&fh);CHKERRQ(ierr); 3306da9b6338SBarry Smith 3307da9b6338SBarry Smith /* currently only works for sequential */ 3308da9b6338SBarry Smith ierr = PetscPrintf(PETSC_COMM_WORLD,"Testing FormFunction() for local min\n"); 3309da9b6338SBarry Smith ierr = VecGetSize(u,&N);CHKERRQ(ierr); 3310da9b6338SBarry Smith for (i=0; i<N; i++) { 3311da9b6338SBarry Smith ierr = VecCopy(u,uh);CHKERRQ(ierr); 331277431f27SBarry Smith ierr = PetscPrintf(PETSC_COMM_WORLD,"i = %D\n",i);CHKERRQ(ierr); 3313da9b6338SBarry Smith for (j=-10; j<11; j++) { 3314ccae9161SBarry Smith value = PetscSign(j)*exp(PetscAbs(j)-10.0); 3315da9b6338SBarry Smith ierr = VecSetValue(uh,i,value,ADD_VALUES);CHKERRQ(ierr); 33163ab0aad5SBarry Smith ierr = SNESComputeFunction(snes,uh,fh);CHKERRQ(ierr); 3317da9b6338SBarry Smith ierr = VecNorm(fh,NORM_2,&norm);CHKERRQ(ierr); 331877431f27SBarry Smith ierr = PetscPrintf(PETSC_COMM_WORLD," j norm %D %18.16e\n",j,norm);CHKERRQ(ierr); 3319da9b6338SBarry Smith value = -value; 3320da9b6338SBarry Smith ierr = VecSetValue(uh,i,value,ADD_VALUES);CHKERRQ(ierr); 3321da9b6338SBarry Smith } 3322da9b6338SBarry Smith } 33236bf464f9SBarry Smith ierr = VecDestroy(&uh);CHKERRQ(ierr); 33246bf464f9SBarry Smith ierr = VecDestroy(&fh);CHKERRQ(ierr); 3325da9b6338SBarry Smith PetscFunctionReturn(0); 3326da9b6338SBarry Smith } 332771f87433Sdalcinl 332871f87433Sdalcinl #undef __FUNCT__ 3329fa9f3622SBarry Smith #define __FUNCT__ "SNESKSPSetUseEW" 333071f87433Sdalcinl /*@ 3331fa9f3622SBarry Smith SNESKSPSetUseEW - Sets SNES use Eisenstat-Walker method for 333271f87433Sdalcinl computing relative tolerance for linear solvers within an inexact 333371f87433Sdalcinl Newton method. 333471f87433Sdalcinl 33353f9fe445SBarry Smith Logically Collective on SNES 333671f87433Sdalcinl 333771f87433Sdalcinl Input Parameters: 333871f87433Sdalcinl + snes - SNES context 333971f87433Sdalcinl - flag - PETSC_TRUE or PETSC_FALSE 334071f87433Sdalcinl 334164ba62caSBarry Smith Options Database: 334264ba62caSBarry Smith + -snes_ksp_ew - use Eisenstat-Walker method for determining linear system convergence 334364ba62caSBarry Smith . -snes_ksp_ew_version ver - version of Eisenstat-Walker method 334464ba62caSBarry Smith . -snes_ksp_ew_rtol0 <rtol0> - Sets rtol0 334564ba62caSBarry Smith . -snes_ksp_ew_rtolmax <rtolmax> - Sets rtolmax 334664ba62caSBarry Smith . -snes_ksp_ew_gamma <gamma> - Sets gamma 334764ba62caSBarry Smith . -snes_ksp_ew_alpha <alpha> - Sets alpha 334864ba62caSBarry Smith . -snes_ksp_ew_alpha2 <alpha2> - Sets alpha2 334964ba62caSBarry Smith - -snes_ksp_ew_threshold <threshold> - Sets threshold 335064ba62caSBarry Smith 335171f87433Sdalcinl Notes: 335271f87433Sdalcinl Currently, the default is to use a constant relative tolerance for 335371f87433Sdalcinl the inner linear solvers. Alternatively, one can use the 335471f87433Sdalcinl Eisenstat-Walker method, where the relative convergence tolerance 335571f87433Sdalcinl is reset at each Newton iteration according progress of the nonlinear 335671f87433Sdalcinl solver. 335771f87433Sdalcinl 335871f87433Sdalcinl Level: advanced 335971f87433Sdalcinl 336071f87433Sdalcinl Reference: 336171f87433Sdalcinl S. C. Eisenstat and H. F. Walker, "Choosing the forcing terms in an 336271f87433Sdalcinl inexact Newton method", SISC 17 (1), pp.16-32, 1996. 336371f87433Sdalcinl 336471f87433Sdalcinl .keywords: SNES, KSP, Eisenstat, Walker, convergence, test, inexact, Newton 336571f87433Sdalcinl 3366fa9f3622SBarry Smith .seealso: SNESKSPGetUseEW(), SNESKSPGetParametersEW(), SNESKSPSetParametersEW() 336771f87433Sdalcinl @*/ 33687087cfbeSBarry Smith PetscErrorCode SNESKSPSetUseEW(SNES snes,PetscBool flag) 336971f87433Sdalcinl { 337071f87433Sdalcinl PetscFunctionBegin; 33710700a824SBarry Smith PetscValidHeaderSpecific(snes,SNES_CLASSID,1); 3372acfcf0e5SJed Brown PetscValidLogicalCollectiveBool(snes,flag,2); 337371f87433Sdalcinl snes->ksp_ewconv = flag; 337471f87433Sdalcinl PetscFunctionReturn(0); 337571f87433Sdalcinl } 337671f87433Sdalcinl 337771f87433Sdalcinl #undef __FUNCT__ 3378fa9f3622SBarry Smith #define __FUNCT__ "SNESKSPGetUseEW" 337971f87433Sdalcinl /*@ 3380fa9f3622SBarry Smith SNESKSPGetUseEW - Gets if SNES is using Eisenstat-Walker method 338171f87433Sdalcinl for computing relative tolerance for linear solvers within an 338271f87433Sdalcinl inexact Newton method. 338371f87433Sdalcinl 338471f87433Sdalcinl Not Collective 338571f87433Sdalcinl 338671f87433Sdalcinl Input Parameter: 338771f87433Sdalcinl . snes - SNES context 338871f87433Sdalcinl 338971f87433Sdalcinl Output Parameter: 339071f87433Sdalcinl . flag - PETSC_TRUE or PETSC_FALSE 339171f87433Sdalcinl 339271f87433Sdalcinl Notes: 339371f87433Sdalcinl Currently, the default is to use a constant relative tolerance for 339471f87433Sdalcinl the inner linear solvers. Alternatively, one can use the 339571f87433Sdalcinl Eisenstat-Walker method, where the relative convergence tolerance 339671f87433Sdalcinl is reset at each Newton iteration according progress of the nonlinear 339771f87433Sdalcinl solver. 339871f87433Sdalcinl 339971f87433Sdalcinl Level: advanced 340071f87433Sdalcinl 340171f87433Sdalcinl Reference: 340271f87433Sdalcinl S. C. Eisenstat and H. F. Walker, "Choosing the forcing terms in an 340371f87433Sdalcinl inexact Newton method", SISC 17 (1), pp.16-32, 1996. 340471f87433Sdalcinl 340571f87433Sdalcinl .keywords: SNES, KSP, Eisenstat, Walker, convergence, test, inexact, Newton 340671f87433Sdalcinl 3407fa9f3622SBarry Smith .seealso: SNESKSPSetUseEW(), SNESKSPGetParametersEW(), SNESKSPSetParametersEW() 340871f87433Sdalcinl @*/ 34097087cfbeSBarry Smith PetscErrorCode SNESKSPGetUseEW(SNES snes, PetscBool *flag) 341071f87433Sdalcinl { 341171f87433Sdalcinl PetscFunctionBegin; 34120700a824SBarry Smith PetscValidHeaderSpecific(snes,SNES_CLASSID,1); 341371f87433Sdalcinl PetscValidPointer(flag,2); 341471f87433Sdalcinl *flag = snes->ksp_ewconv; 341571f87433Sdalcinl PetscFunctionReturn(0); 341671f87433Sdalcinl } 341771f87433Sdalcinl 341871f87433Sdalcinl #undef __FUNCT__ 3419fa9f3622SBarry Smith #define __FUNCT__ "SNESKSPSetParametersEW" 342071f87433Sdalcinl /*@ 3421fa9f3622SBarry Smith SNESKSPSetParametersEW - Sets parameters for Eisenstat-Walker 342271f87433Sdalcinl convergence criteria for the linear solvers within an inexact 342371f87433Sdalcinl Newton method. 342471f87433Sdalcinl 34253f9fe445SBarry Smith Logically Collective on SNES 342671f87433Sdalcinl 342771f87433Sdalcinl Input Parameters: 342871f87433Sdalcinl + snes - SNES context 342971f87433Sdalcinl . version - version 1, 2 (default is 2) or 3 343071f87433Sdalcinl . rtol_0 - initial relative tolerance (0 <= rtol_0 < 1) 343171f87433Sdalcinl . rtol_max - maximum relative tolerance (0 <= rtol_max < 1) 343271f87433Sdalcinl . gamma - multiplicative factor for version 2 rtol computation 343371f87433Sdalcinl (0 <= gamma2 <= 1) 343471f87433Sdalcinl . alpha - power for version 2 rtol computation (1 < alpha <= 2) 343571f87433Sdalcinl . alpha2 - power for safeguard 343671f87433Sdalcinl - threshold - threshold for imposing safeguard (0 < threshold < 1) 343771f87433Sdalcinl 343871f87433Sdalcinl Note: 343971f87433Sdalcinl Version 3 was contributed by Luis Chacon, June 2006. 344071f87433Sdalcinl 344171f87433Sdalcinl Use PETSC_DEFAULT to retain the default for any of the parameters. 344271f87433Sdalcinl 344371f87433Sdalcinl Level: advanced 344471f87433Sdalcinl 344571f87433Sdalcinl Reference: 344671f87433Sdalcinl S. C. Eisenstat and H. F. Walker, "Choosing the forcing terms in an 344771f87433Sdalcinl inexact Newton method", Utah State University Math. Stat. Dept. Res. 344871f87433Sdalcinl Report 6/94/75, June, 1994, to appear in SIAM J. Sci. Comput. 344971f87433Sdalcinl 345071f87433Sdalcinl .keywords: SNES, KSP, Eisenstat, Walker, set, parameters 345171f87433Sdalcinl 3452fa9f3622SBarry Smith .seealso: SNESKSPSetUseEW(), SNESKSPGetUseEW(), SNESKSPGetParametersEW() 345371f87433Sdalcinl @*/ 34547087cfbeSBarry Smith PetscErrorCode SNESKSPSetParametersEW(SNES snes,PetscInt version,PetscReal rtol_0,PetscReal rtol_max, 345571f87433Sdalcinl PetscReal gamma,PetscReal alpha,PetscReal alpha2,PetscReal threshold) 345671f87433Sdalcinl { 3457fa9f3622SBarry Smith SNESKSPEW *kctx; 345871f87433Sdalcinl PetscFunctionBegin; 34590700a824SBarry Smith PetscValidHeaderSpecific(snes,SNES_CLASSID,1); 3460fa9f3622SBarry Smith kctx = (SNESKSPEW*)snes->kspconvctx; 3461e32f2f54SBarry Smith if (!kctx) SETERRQ(PETSC_COMM_SELF,PETSC_ERR_ARG_WRONGSTATE,"No Eisenstat-Walker context existing"); 3462c5eb9154SBarry Smith PetscValidLogicalCollectiveInt(snes,version,2); 3463c5eb9154SBarry Smith PetscValidLogicalCollectiveReal(snes,rtol_0,3); 3464c5eb9154SBarry Smith PetscValidLogicalCollectiveReal(snes,rtol_max,4); 3465c5eb9154SBarry Smith PetscValidLogicalCollectiveReal(snes,gamma,5); 3466c5eb9154SBarry Smith PetscValidLogicalCollectiveReal(snes,alpha,6); 3467c5eb9154SBarry Smith PetscValidLogicalCollectiveReal(snes,alpha2,7); 3468c5eb9154SBarry Smith PetscValidLogicalCollectiveReal(snes,threshold,8); 346971f87433Sdalcinl 347071f87433Sdalcinl if (version != PETSC_DEFAULT) kctx->version = version; 347171f87433Sdalcinl if (rtol_0 != PETSC_DEFAULT) kctx->rtol_0 = rtol_0; 347271f87433Sdalcinl if (rtol_max != PETSC_DEFAULT) kctx->rtol_max = rtol_max; 347371f87433Sdalcinl if (gamma != PETSC_DEFAULT) kctx->gamma = gamma; 347471f87433Sdalcinl if (alpha != PETSC_DEFAULT) kctx->alpha = alpha; 347571f87433Sdalcinl if (alpha2 != PETSC_DEFAULT) kctx->alpha2 = alpha2; 347671f87433Sdalcinl if (threshold != PETSC_DEFAULT) kctx->threshold = threshold; 347771f87433Sdalcinl 347871f87433Sdalcinl if (kctx->version < 1 || kctx->version > 3) { 3479e32f2f54SBarry Smith SETERRQ1(PETSC_COMM_SELF,PETSC_ERR_ARG_OUTOFRANGE,"Only versions 1, 2 and 3 are supported: %D",kctx->version); 348071f87433Sdalcinl } 348171f87433Sdalcinl if (kctx->rtol_0 < 0.0 || kctx->rtol_0 >= 1.0) { 3482e32f2f54SBarry Smith SETERRQ1(PETSC_COMM_SELF,PETSC_ERR_ARG_OUTOFRANGE,"0.0 <= rtol_0 < 1.0: %G",kctx->rtol_0); 348371f87433Sdalcinl } 348471f87433Sdalcinl if (kctx->rtol_max < 0.0 || kctx->rtol_max >= 1.0) { 3485e32f2f54SBarry Smith SETERRQ1(PETSC_COMM_SELF,PETSC_ERR_ARG_OUTOFRANGE,"0.0 <= rtol_max (%G) < 1.0\n",kctx->rtol_max); 348671f87433Sdalcinl } 348771f87433Sdalcinl if (kctx->gamma < 0.0 || kctx->gamma > 1.0) { 3488e32f2f54SBarry Smith SETERRQ1(PETSC_COMM_SELF,PETSC_ERR_ARG_OUTOFRANGE,"0.0 <= gamma (%G) <= 1.0\n",kctx->gamma); 348971f87433Sdalcinl } 349071f87433Sdalcinl if (kctx->alpha <= 1.0 || kctx->alpha > 2.0) { 3491e32f2f54SBarry Smith SETERRQ1(PETSC_COMM_SELF,PETSC_ERR_ARG_OUTOFRANGE,"1.0 < alpha (%G) <= 2.0\n",kctx->alpha); 349271f87433Sdalcinl } 349371f87433Sdalcinl if (kctx->threshold <= 0.0 || kctx->threshold >= 1.0) { 3494e32f2f54SBarry Smith SETERRQ1(PETSC_COMM_SELF,PETSC_ERR_ARG_OUTOFRANGE,"0.0 < threshold (%G) < 1.0\n",kctx->threshold); 349571f87433Sdalcinl } 349671f87433Sdalcinl PetscFunctionReturn(0); 349771f87433Sdalcinl } 349871f87433Sdalcinl 349971f87433Sdalcinl #undef __FUNCT__ 3500fa9f3622SBarry Smith #define __FUNCT__ "SNESKSPGetParametersEW" 350171f87433Sdalcinl /*@ 3502fa9f3622SBarry Smith SNESKSPGetParametersEW - Gets parameters for Eisenstat-Walker 350371f87433Sdalcinl convergence criteria for the linear solvers within an inexact 350471f87433Sdalcinl Newton method. 350571f87433Sdalcinl 350671f87433Sdalcinl Not Collective 350771f87433Sdalcinl 350871f87433Sdalcinl Input Parameters: 350971f87433Sdalcinl snes - SNES context 351071f87433Sdalcinl 351171f87433Sdalcinl Output Parameters: 351271f87433Sdalcinl + version - version 1, 2 (default is 2) or 3 351371f87433Sdalcinl . rtol_0 - initial relative tolerance (0 <= rtol_0 < 1) 351471f87433Sdalcinl . rtol_max - maximum relative tolerance (0 <= rtol_max < 1) 351571f87433Sdalcinl . gamma - multiplicative factor for version 2 rtol computation 351671f87433Sdalcinl (0 <= gamma2 <= 1) 351771f87433Sdalcinl . alpha - power for version 2 rtol computation (1 < alpha <= 2) 351871f87433Sdalcinl . alpha2 - power for safeguard 351971f87433Sdalcinl - threshold - threshold for imposing safeguard (0 < threshold < 1) 352071f87433Sdalcinl 352171f87433Sdalcinl Level: advanced 352271f87433Sdalcinl 352371f87433Sdalcinl .keywords: SNES, KSP, Eisenstat, Walker, get, parameters 352471f87433Sdalcinl 3525fa9f3622SBarry Smith .seealso: SNESKSPSetUseEW(), SNESKSPGetUseEW(), SNESKSPSetParametersEW() 352671f87433Sdalcinl @*/ 35277087cfbeSBarry Smith PetscErrorCode SNESKSPGetParametersEW(SNES snes,PetscInt *version,PetscReal *rtol_0,PetscReal *rtol_max, 352871f87433Sdalcinl PetscReal *gamma,PetscReal *alpha,PetscReal *alpha2,PetscReal *threshold) 352971f87433Sdalcinl { 3530fa9f3622SBarry Smith SNESKSPEW *kctx; 353171f87433Sdalcinl PetscFunctionBegin; 35320700a824SBarry Smith PetscValidHeaderSpecific(snes,SNES_CLASSID,1); 3533fa9f3622SBarry Smith kctx = (SNESKSPEW*)snes->kspconvctx; 3534e32f2f54SBarry Smith if (!kctx) SETERRQ(PETSC_COMM_SELF,PETSC_ERR_ARG_WRONGSTATE,"No Eisenstat-Walker context existing"); 353571f87433Sdalcinl if(version) *version = kctx->version; 353671f87433Sdalcinl if(rtol_0) *rtol_0 = kctx->rtol_0; 353771f87433Sdalcinl if(rtol_max) *rtol_max = kctx->rtol_max; 353871f87433Sdalcinl if(gamma) *gamma = kctx->gamma; 353971f87433Sdalcinl if(alpha) *alpha = kctx->alpha; 354071f87433Sdalcinl if(alpha2) *alpha2 = kctx->alpha2; 354171f87433Sdalcinl if(threshold) *threshold = kctx->threshold; 354271f87433Sdalcinl PetscFunctionReturn(0); 354371f87433Sdalcinl } 354471f87433Sdalcinl 354571f87433Sdalcinl #undef __FUNCT__ 3546fa9f3622SBarry Smith #define __FUNCT__ "SNESKSPEW_PreSolve" 3547fa9f3622SBarry Smith static PetscErrorCode SNESKSPEW_PreSolve(SNES snes, KSP ksp, Vec b, Vec x) 354871f87433Sdalcinl { 354971f87433Sdalcinl PetscErrorCode ierr; 3550fa9f3622SBarry Smith SNESKSPEW *kctx = (SNESKSPEW*)snes->kspconvctx; 355171f87433Sdalcinl PetscReal rtol=PETSC_DEFAULT,stol; 355271f87433Sdalcinl 355371f87433Sdalcinl PetscFunctionBegin; 3554e32f2f54SBarry Smith if (!kctx) SETERRQ(PETSC_COMM_SELF,PETSC_ERR_ARG_WRONGSTATE,"No Eisenstat-Walker context exists"); 355571f87433Sdalcinl if (!snes->iter) { /* first time in, so use the original user rtol */ 355671f87433Sdalcinl rtol = kctx->rtol_0; 355771f87433Sdalcinl } else { 355871f87433Sdalcinl if (kctx->version == 1) { 355971f87433Sdalcinl rtol = (snes->norm - kctx->lresid_last)/kctx->norm_last; 356071f87433Sdalcinl if (rtol < 0.0) rtol = -rtol; 356171f87433Sdalcinl stol = pow(kctx->rtol_last,kctx->alpha2); 356271f87433Sdalcinl if (stol > kctx->threshold) rtol = PetscMax(rtol,stol); 356371f87433Sdalcinl } else if (kctx->version == 2) { 356471f87433Sdalcinl rtol = kctx->gamma * pow(snes->norm/kctx->norm_last,kctx->alpha); 356571f87433Sdalcinl stol = kctx->gamma * pow(kctx->rtol_last,kctx->alpha); 356671f87433Sdalcinl if (stol > kctx->threshold) rtol = PetscMax(rtol,stol); 356771f87433Sdalcinl } else if (kctx->version == 3) {/* contributed by Luis Chacon, June 2006. */ 356871f87433Sdalcinl rtol = kctx->gamma * pow(snes->norm/kctx->norm_last,kctx->alpha); 356971f87433Sdalcinl /* safeguard: avoid sharp decrease of rtol */ 357071f87433Sdalcinl stol = kctx->gamma*pow(kctx->rtol_last,kctx->alpha); 357171f87433Sdalcinl stol = PetscMax(rtol,stol); 357271f87433Sdalcinl rtol = PetscMin(kctx->rtol_0,stol); 357371f87433Sdalcinl /* safeguard: avoid oversolving */ 357471f87433Sdalcinl stol = kctx->gamma*(snes->ttol)/snes->norm; 357571f87433Sdalcinl stol = PetscMax(rtol,stol); 357671f87433Sdalcinl rtol = PetscMin(kctx->rtol_0,stol); 3577e32f2f54SBarry Smith } else SETERRQ1(PETSC_COMM_SELF,PETSC_ERR_ARG_OUTOFRANGE,"Only versions 1, 2 or 3 are supported: %D",kctx->version); 357871f87433Sdalcinl } 357971f87433Sdalcinl /* safeguard: avoid rtol greater than one */ 358071f87433Sdalcinl rtol = PetscMin(rtol,kctx->rtol_max); 358171f87433Sdalcinl ierr = KSPSetTolerances(ksp,rtol,PETSC_DEFAULT,PETSC_DEFAULT,PETSC_DEFAULT);CHKERRQ(ierr); 358271f87433Sdalcinl ierr = PetscInfo3(snes,"iter %D, Eisenstat-Walker (version %D) KSP rtol=%G\n",snes->iter,kctx->version,rtol);CHKERRQ(ierr); 358371f87433Sdalcinl PetscFunctionReturn(0); 358471f87433Sdalcinl } 358571f87433Sdalcinl 358671f87433Sdalcinl #undef __FUNCT__ 3587fa9f3622SBarry Smith #define __FUNCT__ "SNESKSPEW_PostSolve" 3588fa9f3622SBarry Smith static PetscErrorCode SNESKSPEW_PostSolve(SNES snes, KSP ksp, Vec b, Vec x) 358971f87433Sdalcinl { 359071f87433Sdalcinl PetscErrorCode ierr; 3591fa9f3622SBarry Smith SNESKSPEW *kctx = (SNESKSPEW*)snes->kspconvctx; 359271f87433Sdalcinl PCSide pcside; 359371f87433Sdalcinl Vec lres; 359471f87433Sdalcinl 359571f87433Sdalcinl PetscFunctionBegin; 3596e32f2f54SBarry Smith if (!kctx) SETERRQ(PETSC_COMM_SELF,PETSC_ERR_ARG_WRONGSTATE,"No Eisenstat-Walker context exists"); 359771f87433Sdalcinl ierr = KSPGetTolerances(ksp,&kctx->rtol_last,0,0,0);CHKERRQ(ierr); 359871f87433Sdalcinl ierr = SNESGetFunctionNorm(snes,&kctx->norm_last);CHKERRQ(ierr); 359971f87433Sdalcinl if (kctx->version == 1) { 3600b037da10SBarry Smith ierr = KSPGetPCSide(ksp,&pcside);CHKERRQ(ierr); 360171f87433Sdalcinl if (pcside == PC_RIGHT) { /* XXX Should we also test KSP_UNPRECONDITIONED_NORM ? */ 360271f87433Sdalcinl /* KSP residual is true linear residual */ 360371f87433Sdalcinl ierr = KSPGetResidualNorm(ksp,&kctx->lresid_last);CHKERRQ(ierr); 360471f87433Sdalcinl } else { 360571f87433Sdalcinl /* KSP residual is preconditioned residual */ 360671f87433Sdalcinl /* compute true linear residual norm */ 360771f87433Sdalcinl ierr = VecDuplicate(b,&lres);CHKERRQ(ierr); 360871f87433Sdalcinl ierr = MatMult(snes->jacobian,x,lres);CHKERRQ(ierr); 360971f87433Sdalcinl ierr = VecAYPX(lres,-1.0,b);CHKERRQ(ierr); 361071f87433Sdalcinl ierr = VecNorm(lres,NORM_2,&kctx->lresid_last);CHKERRQ(ierr); 36116bf464f9SBarry Smith ierr = VecDestroy(&lres);CHKERRQ(ierr); 361271f87433Sdalcinl } 361371f87433Sdalcinl } 361471f87433Sdalcinl PetscFunctionReturn(0); 361571f87433Sdalcinl } 361671f87433Sdalcinl 361771f87433Sdalcinl #undef __FUNCT__ 361871f87433Sdalcinl #define __FUNCT__ "SNES_KSPSolve" 361971f87433Sdalcinl PetscErrorCode SNES_KSPSolve(SNES snes, KSP ksp, Vec b, Vec x) 362071f87433Sdalcinl { 362171f87433Sdalcinl PetscErrorCode ierr; 362271f87433Sdalcinl 362371f87433Sdalcinl PetscFunctionBegin; 3624fa9f3622SBarry Smith if (snes->ksp_ewconv) { ierr = SNESKSPEW_PreSolve(snes,ksp,b,x);CHKERRQ(ierr); } 362571f87433Sdalcinl ierr = KSPSolve(ksp,b,x);CHKERRQ(ierr); 3626fa9f3622SBarry Smith if (snes->ksp_ewconv) { ierr = SNESKSPEW_PostSolve(snes,ksp,b,x);CHKERRQ(ierr); } 362771f87433Sdalcinl PetscFunctionReturn(0); 362871f87433Sdalcinl } 36296c699258SBarry Smith 36306c699258SBarry Smith #undef __FUNCT__ 36316c699258SBarry Smith #define __FUNCT__ "SNESSetDM" 36326c699258SBarry Smith /*@ 36336c699258SBarry Smith SNESSetDM - Sets the DM that may be used by some preconditioners 36346c699258SBarry Smith 36353f9fe445SBarry Smith Logically Collective on SNES 36366c699258SBarry Smith 36376c699258SBarry Smith Input Parameters: 36386c699258SBarry Smith + snes - the preconditioner context 36396c699258SBarry Smith - dm - the dm 36406c699258SBarry Smith 36416c699258SBarry Smith Level: intermediate 36426c699258SBarry Smith 36436c699258SBarry Smith 36446c699258SBarry Smith .seealso: SNESGetDM(), KSPSetDM(), KSPGetDM() 36456c699258SBarry Smith @*/ 36467087cfbeSBarry Smith PetscErrorCode SNESSetDM(SNES snes,DM dm) 36476c699258SBarry Smith { 36486c699258SBarry Smith PetscErrorCode ierr; 3649345fed2cSBarry Smith KSP ksp; 36506c699258SBarry Smith 36516c699258SBarry Smith PetscFunctionBegin; 36520700a824SBarry Smith PetscValidHeaderSpecific(snes,SNES_CLASSID,1); 3653d0660788SBarry Smith if (dm) {ierr = PetscObjectReference((PetscObject)dm);CHKERRQ(ierr);} 36546bf464f9SBarry Smith ierr = DMDestroy(&snes->dm);CHKERRQ(ierr); 36556c699258SBarry Smith snes->dm = dm; 3656345fed2cSBarry Smith ierr = SNESGetKSP(snes,&ksp);CHKERRQ(ierr); 3657345fed2cSBarry Smith ierr = KSPSetDM(ksp,dm);CHKERRQ(ierr); 3658f22f69f0SBarry Smith ierr = KSPSetDMActive(ksp,PETSC_FALSE);CHKERRQ(ierr); 36592c155ee1SBarry Smith if (snes->pc) { 36602c155ee1SBarry Smith ierr = SNESSetDM(snes->pc, snes->dm);CHKERRQ(ierr); 36612c155ee1SBarry Smith } 36626c699258SBarry Smith PetscFunctionReturn(0); 36636c699258SBarry Smith } 36646c699258SBarry Smith 36656c699258SBarry Smith #undef __FUNCT__ 36666c699258SBarry Smith #define __FUNCT__ "SNESGetDM" 36676c699258SBarry Smith /*@ 36686c699258SBarry Smith SNESGetDM - Gets the DM that may be used by some preconditioners 36696c699258SBarry Smith 36703f9fe445SBarry Smith Not Collective but DM obtained is parallel on SNES 36716c699258SBarry Smith 36726c699258SBarry Smith Input Parameter: 36736c699258SBarry Smith . snes - the preconditioner context 36746c699258SBarry Smith 36756c699258SBarry Smith Output Parameter: 36766c699258SBarry Smith . dm - the dm 36776c699258SBarry Smith 36786c699258SBarry Smith Level: intermediate 36796c699258SBarry Smith 36806c699258SBarry Smith 36816c699258SBarry Smith .seealso: SNESSetDM(), KSPSetDM(), KSPGetDM() 36826c699258SBarry Smith @*/ 36837087cfbeSBarry Smith PetscErrorCode SNESGetDM(SNES snes,DM *dm) 36846c699258SBarry Smith { 36856c699258SBarry Smith PetscFunctionBegin; 36860700a824SBarry Smith PetscValidHeaderSpecific(snes,SNES_CLASSID,1); 36876c699258SBarry Smith *dm = snes->dm; 36886c699258SBarry Smith PetscFunctionReturn(0); 36896c699258SBarry Smith } 36900807856dSBarry Smith 369131823bd8SMatthew G Knepley #undef __FUNCT__ 369231823bd8SMatthew G Knepley #define __FUNCT__ "SNESSetPC" 369331823bd8SMatthew G Knepley /*@ 3694fd4b34e9SJed Brown SNESSetPC - Sets the nonlinear preconditioner to be used. 369531823bd8SMatthew G Knepley 369631823bd8SMatthew G Knepley Collective on SNES 369731823bd8SMatthew G Knepley 369831823bd8SMatthew G Knepley Input Parameters: 369931823bd8SMatthew G Knepley + snes - iterative context obtained from SNESCreate() 370031823bd8SMatthew G Knepley - pc - the preconditioner object 370131823bd8SMatthew G Knepley 370231823bd8SMatthew G Knepley Notes: 370331823bd8SMatthew G Knepley Use SNESGetPC() to retrieve the preconditioner context (for example, 370431823bd8SMatthew G Knepley to configure it using the API). 370531823bd8SMatthew G Knepley 370631823bd8SMatthew G Knepley Level: developer 370731823bd8SMatthew G Knepley 370831823bd8SMatthew G Knepley .keywords: SNES, set, precondition 370931823bd8SMatthew G Knepley .seealso: SNESGetPC() 371031823bd8SMatthew G Knepley @*/ 371131823bd8SMatthew G Knepley PetscErrorCode SNESSetPC(SNES snes, SNES pc) 371231823bd8SMatthew G Knepley { 371331823bd8SMatthew G Knepley PetscErrorCode ierr; 371431823bd8SMatthew G Knepley 371531823bd8SMatthew G Knepley PetscFunctionBegin; 371631823bd8SMatthew G Knepley PetscValidHeaderSpecific(snes, SNES_CLASSID, 1); 371731823bd8SMatthew G Knepley PetscValidHeaderSpecific(pc, SNES_CLASSID, 2); 371831823bd8SMatthew G Knepley PetscCheckSameComm(snes, 1, pc, 2); 371931823bd8SMatthew G Knepley ierr = PetscObjectReference((PetscObject) pc);CHKERRQ(ierr); 3720bf11d3b6SBarry Smith ierr = SNESDestroy(&snes->pc);CHKERRQ(ierr); 372131823bd8SMatthew G Knepley snes->pc = pc; 372231823bd8SMatthew G Knepley ierr = PetscLogObjectParent(snes, snes->pc);CHKERRQ(ierr); 372331823bd8SMatthew G Knepley PetscFunctionReturn(0); 372431823bd8SMatthew G Knepley } 372531823bd8SMatthew G Knepley 372631823bd8SMatthew G Knepley #undef __FUNCT__ 372731823bd8SMatthew G Knepley #define __FUNCT__ "SNESGetPC" 372831823bd8SMatthew G Knepley /*@ 3729fd4b34e9SJed Brown SNESGetPC - Returns a pointer to the nonlinear preconditioning context set with SNESSetPC(). 373031823bd8SMatthew G Knepley 373131823bd8SMatthew G Knepley Not Collective 373231823bd8SMatthew G Knepley 373331823bd8SMatthew G Knepley Input Parameter: 373431823bd8SMatthew G Knepley . snes - iterative context obtained from SNESCreate() 373531823bd8SMatthew G Knepley 373631823bd8SMatthew G Knepley Output Parameter: 373731823bd8SMatthew G Knepley . pc - preconditioner context 373831823bd8SMatthew G Knepley 373931823bd8SMatthew G Knepley Level: developer 374031823bd8SMatthew G Knepley 374131823bd8SMatthew G Knepley .keywords: SNES, get, preconditioner 374231823bd8SMatthew G Knepley .seealso: SNESSetPC() 374331823bd8SMatthew G Knepley @*/ 374431823bd8SMatthew G Knepley PetscErrorCode SNESGetPC(SNES snes, SNES *pc) 374531823bd8SMatthew G Knepley { 374631823bd8SMatthew G Knepley PetscErrorCode ierr; 374731823bd8SMatthew G Knepley 374831823bd8SMatthew G Knepley PetscFunctionBegin; 374931823bd8SMatthew G Knepley PetscValidHeaderSpecific(snes, SNES_CLASSID, 1); 375031823bd8SMatthew G Knepley PetscValidPointer(pc, 2); 375131823bd8SMatthew G Knepley if (!snes->pc) { 375231823bd8SMatthew G Knepley ierr = SNESCreate(((PetscObject) snes)->comm, &snes->pc);CHKERRQ(ierr); 37534a0c5b0cSMatthew G Knepley ierr = PetscObjectIncrementTabLevel((PetscObject) snes->pc, (PetscObject) snes, 1);CHKERRQ(ierr); 375431823bd8SMatthew G Knepley ierr = PetscLogObjectParent(snes, snes->pc);CHKERRQ(ierr); 375531823bd8SMatthew G Knepley } 375631823bd8SMatthew G Knepley *pc = snes->pc; 375731823bd8SMatthew G Knepley PetscFunctionReturn(0); 375831823bd8SMatthew G Knepley } 375931823bd8SMatthew G Knepley 376069b4f73cSBarry Smith #if defined(PETSC_HAVE_MATLAB_ENGINE) 3761c6db04a5SJed Brown #include <mex.h> 376269b4f73cSBarry Smith 37638f6e6473SBarry Smith typedef struct {char *funcname; mxArray *ctx;} SNESMatlabContext; 37648f6e6473SBarry Smith 37650807856dSBarry Smith #undef __FUNCT__ 37660807856dSBarry Smith #define __FUNCT__ "SNESComputeFunction_Matlab" 37670807856dSBarry Smith /* 37680807856dSBarry Smith SNESComputeFunction_Matlab - Calls the function that has been set with 37690807856dSBarry Smith SNESSetFunctionMatlab(). 37700807856dSBarry Smith 37710807856dSBarry Smith Collective on SNES 37720807856dSBarry Smith 37730807856dSBarry Smith Input Parameters: 37740807856dSBarry Smith + snes - the SNES context 37750807856dSBarry Smith - x - input vector 37760807856dSBarry Smith 37770807856dSBarry Smith Output Parameter: 37780807856dSBarry Smith . y - function vector, as set by SNESSetFunction() 37790807856dSBarry Smith 37800807856dSBarry Smith Notes: 37810807856dSBarry Smith SNESComputeFunction() is typically used within nonlinear solvers 37820807856dSBarry Smith implementations, so most users would not generally call this routine 37830807856dSBarry Smith themselves. 37840807856dSBarry Smith 37850807856dSBarry Smith Level: developer 37860807856dSBarry Smith 37870807856dSBarry Smith .keywords: SNES, nonlinear, compute, function 37880807856dSBarry Smith 37890807856dSBarry Smith .seealso: SNESSetFunction(), SNESGetFunction() 379061b2408cSBarry Smith */ 37917087cfbeSBarry Smith PetscErrorCode SNESComputeFunction_Matlab(SNES snes,Vec x,Vec y, void *ctx) 37920807856dSBarry Smith { 3793e650e774SBarry Smith PetscErrorCode ierr; 37948f6e6473SBarry Smith SNESMatlabContext *sctx = (SNESMatlabContext *)ctx; 37958f6e6473SBarry Smith int nlhs = 1,nrhs = 5; 37968f6e6473SBarry Smith mxArray *plhs[1],*prhs[5]; 379791621f2eSBarry Smith long long int lx = 0,ly = 0,ls = 0; 3798e650e774SBarry Smith 37990807856dSBarry Smith PetscFunctionBegin; 38000807856dSBarry Smith PetscValidHeaderSpecific(snes,SNES_CLASSID,1); 38010807856dSBarry Smith PetscValidHeaderSpecific(x,VEC_CLASSID,2); 38020807856dSBarry Smith PetscValidHeaderSpecific(y,VEC_CLASSID,3); 38030807856dSBarry Smith PetscCheckSameComm(snes,1,x,2); 38040807856dSBarry Smith PetscCheckSameComm(snes,1,y,3); 38050807856dSBarry Smith 38060807856dSBarry Smith /* call Matlab function in ctx with arguments x and y */ 3807e650e774SBarry Smith 380891621f2eSBarry Smith ierr = PetscMemcpy(&ls,&snes,sizeof(snes));CHKERRQ(ierr); 3809e650e774SBarry Smith ierr = PetscMemcpy(&lx,&x,sizeof(x));CHKERRQ(ierr); 3810e650e774SBarry Smith ierr = PetscMemcpy(&ly,&y,sizeof(x));CHKERRQ(ierr); 381191621f2eSBarry Smith prhs[0] = mxCreateDoubleScalar((double)ls); 381291621f2eSBarry Smith prhs[1] = mxCreateDoubleScalar((double)lx); 381391621f2eSBarry Smith prhs[2] = mxCreateDoubleScalar((double)ly); 38148f6e6473SBarry Smith prhs[3] = mxCreateString(sctx->funcname); 38158f6e6473SBarry Smith prhs[4] = sctx->ctx; 3816b807a863SBarry Smith ierr = mexCallMATLAB(nlhs,plhs,nrhs,prhs,"PetscSNESComputeFunctionInternal");CHKERRQ(ierr); 3817e650e774SBarry Smith ierr = mxGetScalar(plhs[0]);CHKERRQ(ierr); 3818e650e774SBarry Smith mxDestroyArray(prhs[0]); 3819e650e774SBarry Smith mxDestroyArray(prhs[1]); 3820e650e774SBarry Smith mxDestroyArray(prhs[2]); 38218f6e6473SBarry Smith mxDestroyArray(prhs[3]); 3822e650e774SBarry Smith mxDestroyArray(plhs[0]); 38230807856dSBarry Smith PetscFunctionReturn(0); 38240807856dSBarry Smith } 38250807856dSBarry Smith 38260807856dSBarry Smith 38270807856dSBarry Smith #undef __FUNCT__ 38280807856dSBarry Smith #define __FUNCT__ "SNESSetFunctionMatlab" 382961b2408cSBarry Smith /* 38300807856dSBarry Smith SNESSetFunctionMatlab - Sets the function evaluation routine and function 38310807856dSBarry Smith vector for use by the SNES routines in solving systems of nonlinear 3832e3c5b3baSBarry Smith equations from MATLAB. Here the function is a string containing the name of a MATLAB function 38330807856dSBarry Smith 38340807856dSBarry Smith Logically Collective on SNES 38350807856dSBarry Smith 38360807856dSBarry Smith Input Parameters: 38370807856dSBarry Smith + snes - the SNES context 38380807856dSBarry Smith . r - vector to store function value 38390807856dSBarry Smith - func - function evaluation routine 38400807856dSBarry Smith 38410807856dSBarry Smith Calling sequence of func: 384261b2408cSBarry Smith $ func (SNES snes,Vec x,Vec f,void *ctx); 38430807856dSBarry Smith 38440807856dSBarry Smith 38450807856dSBarry Smith Notes: 38460807856dSBarry Smith The Newton-like methods typically solve linear systems of the form 38470807856dSBarry Smith $ f'(x) x = -f(x), 38480807856dSBarry Smith where f'(x) denotes the Jacobian matrix and f(x) is the function. 38490807856dSBarry Smith 38500807856dSBarry Smith Level: beginner 38510807856dSBarry Smith 38520807856dSBarry Smith .keywords: SNES, nonlinear, set, function 38530807856dSBarry Smith 38540807856dSBarry Smith .seealso: SNESGetFunction(), SNESComputeFunction(), SNESSetJacobian(), SNESSetFunction() 385561b2408cSBarry Smith */ 38567087cfbeSBarry Smith PetscErrorCode SNESSetFunctionMatlab(SNES snes,Vec r,const char *func,mxArray *ctx) 38570807856dSBarry Smith { 38580807856dSBarry Smith PetscErrorCode ierr; 38598f6e6473SBarry Smith SNESMatlabContext *sctx; 38600807856dSBarry Smith 38610807856dSBarry Smith PetscFunctionBegin; 38628f6e6473SBarry Smith /* currently sctx is memory bleed */ 38638f6e6473SBarry Smith ierr = PetscMalloc(sizeof(SNESMatlabContext),&sctx);CHKERRQ(ierr); 38648f6e6473SBarry Smith ierr = PetscStrallocpy(func,&sctx->funcname);CHKERRQ(ierr); 38658f6e6473SBarry Smith /* 38668f6e6473SBarry Smith This should work, but it doesn't 38678f6e6473SBarry Smith sctx->ctx = ctx; 38688f6e6473SBarry Smith mexMakeArrayPersistent(sctx->ctx); 38698f6e6473SBarry Smith */ 38708f6e6473SBarry Smith sctx->ctx = mxDuplicateArray(ctx); 38718f6e6473SBarry Smith ierr = SNESSetFunction(snes,r,SNESComputeFunction_Matlab,sctx);CHKERRQ(ierr); 38720807856dSBarry Smith PetscFunctionReturn(0); 38730807856dSBarry Smith } 387469b4f73cSBarry Smith 387561b2408cSBarry Smith #undef __FUNCT__ 387661b2408cSBarry Smith #define __FUNCT__ "SNESComputeJacobian_Matlab" 387761b2408cSBarry Smith /* 387861b2408cSBarry Smith SNESComputeJacobian_Matlab - Calls the function that has been set with 387961b2408cSBarry Smith SNESSetJacobianMatlab(). 388061b2408cSBarry Smith 388161b2408cSBarry Smith Collective on SNES 388261b2408cSBarry Smith 388361b2408cSBarry Smith Input Parameters: 388461b2408cSBarry Smith + snes - the SNES context 388561b2408cSBarry Smith . x - input vector 388661b2408cSBarry Smith . A, B - the matrices 388761b2408cSBarry Smith - ctx - user context 388861b2408cSBarry Smith 388961b2408cSBarry Smith Output Parameter: 389061b2408cSBarry Smith . flag - structure of the matrix 389161b2408cSBarry Smith 389261b2408cSBarry Smith Level: developer 389361b2408cSBarry Smith 389461b2408cSBarry Smith .keywords: SNES, nonlinear, compute, function 389561b2408cSBarry Smith 389661b2408cSBarry Smith .seealso: SNESSetFunction(), SNESGetFunction() 389761b2408cSBarry Smith @*/ 38987087cfbeSBarry Smith PetscErrorCode SNESComputeJacobian_Matlab(SNES snes,Vec x,Mat *A,Mat *B,MatStructure *flag, void *ctx) 389961b2408cSBarry Smith { 390061b2408cSBarry Smith PetscErrorCode ierr; 390161b2408cSBarry Smith SNESMatlabContext *sctx = (SNESMatlabContext *)ctx; 390261b2408cSBarry Smith int nlhs = 2,nrhs = 6; 390361b2408cSBarry Smith mxArray *plhs[2],*prhs[6]; 390461b2408cSBarry Smith long long int lx = 0,lA = 0,ls = 0, lB = 0; 390561b2408cSBarry Smith 390661b2408cSBarry Smith PetscFunctionBegin; 390761b2408cSBarry Smith PetscValidHeaderSpecific(snes,SNES_CLASSID,1); 390861b2408cSBarry Smith PetscValidHeaderSpecific(x,VEC_CLASSID,2); 390961b2408cSBarry Smith 391061b2408cSBarry Smith /* call Matlab function in ctx with arguments x and y */ 391161b2408cSBarry Smith 391261b2408cSBarry Smith ierr = PetscMemcpy(&ls,&snes,sizeof(snes));CHKERRQ(ierr); 391361b2408cSBarry Smith ierr = PetscMemcpy(&lx,&x,sizeof(x));CHKERRQ(ierr); 391461b2408cSBarry Smith ierr = PetscMemcpy(&lA,A,sizeof(x));CHKERRQ(ierr); 391561b2408cSBarry Smith ierr = PetscMemcpy(&lB,B,sizeof(x));CHKERRQ(ierr); 391661b2408cSBarry Smith prhs[0] = mxCreateDoubleScalar((double)ls); 391761b2408cSBarry Smith prhs[1] = mxCreateDoubleScalar((double)lx); 391861b2408cSBarry Smith prhs[2] = mxCreateDoubleScalar((double)lA); 391961b2408cSBarry Smith prhs[3] = mxCreateDoubleScalar((double)lB); 392061b2408cSBarry Smith prhs[4] = mxCreateString(sctx->funcname); 392161b2408cSBarry Smith prhs[5] = sctx->ctx; 3922b807a863SBarry Smith ierr = mexCallMATLAB(nlhs,plhs,nrhs,prhs,"PetscSNESComputeJacobianInternal");CHKERRQ(ierr); 392361b2408cSBarry Smith ierr = mxGetScalar(plhs[0]);CHKERRQ(ierr); 392461b2408cSBarry Smith *flag = (MatStructure) mxGetScalar(plhs[1]);CHKERRQ(ierr); 392561b2408cSBarry Smith mxDestroyArray(prhs[0]); 392661b2408cSBarry Smith mxDestroyArray(prhs[1]); 392761b2408cSBarry Smith mxDestroyArray(prhs[2]); 392861b2408cSBarry Smith mxDestroyArray(prhs[3]); 392961b2408cSBarry Smith mxDestroyArray(prhs[4]); 393061b2408cSBarry Smith mxDestroyArray(plhs[0]); 393161b2408cSBarry Smith mxDestroyArray(plhs[1]); 393261b2408cSBarry Smith PetscFunctionReturn(0); 393361b2408cSBarry Smith } 393461b2408cSBarry Smith 393561b2408cSBarry Smith 393661b2408cSBarry Smith #undef __FUNCT__ 393761b2408cSBarry Smith #define __FUNCT__ "SNESSetJacobianMatlab" 393861b2408cSBarry Smith /* 393961b2408cSBarry Smith SNESSetJacobianMatlab - Sets the Jacobian function evaluation routine and two empty Jacobian matrices 394061b2408cSBarry Smith vector for use by the SNES routines in solving systems of nonlinear 3941e3c5b3baSBarry Smith equations from MATLAB. Here the function is a string containing the name of a MATLAB function 394261b2408cSBarry Smith 394361b2408cSBarry Smith Logically Collective on SNES 394461b2408cSBarry Smith 394561b2408cSBarry Smith Input Parameters: 394661b2408cSBarry Smith + snes - the SNES context 394761b2408cSBarry Smith . A,B - Jacobian matrices 394861b2408cSBarry Smith . func - function evaluation routine 394961b2408cSBarry Smith - ctx - user context 395061b2408cSBarry Smith 395161b2408cSBarry Smith Calling sequence of func: 395261b2408cSBarry Smith $ flag = func (SNES snes,Vec x,Mat A,Mat B,void *ctx); 395361b2408cSBarry Smith 395461b2408cSBarry Smith 395561b2408cSBarry Smith Level: developer 395661b2408cSBarry Smith 395761b2408cSBarry Smith .keywords: SNES, nonlinear, set, function 395861b2408cSBarry Smith 395961b2408cSBarry Smith .seealso: SNESGetFunction(), SNESComputeFunction(), SNESSetJacobian(), SNESSetFunction() 396061b2408cSBarry Smith */ 39617087cfbeSBarry Smith PetscErrorCode SNESSetJacobianMatlab(SNES snes,Mat A,Mat B,const char *func,mxArray *ctx) 396261b2408cSBarry Smith { 396361b2408cSBarry Smith PetscErrorCode ierr; 396461b2408cSBarry Smith SNESMatlabContext *sctx; 396561b2408cSBarry Smith 396661b2408cSBarry Smith PetscFunctionBegin; 396761b2408cSBarry Smith /* currently sctx is memory bleed */ 396861b2408cSBarry Smith ierr = PetscMalloc(sizeof(SNESMatlabContext),&sctx);CHKERRQ(ierr); 396961b2408cSBarry Smith ierr = PetscStrallocpy(func,&sctx->funcname);CHKERRQ(ierr); 397061b2408cSBarry Smith /* 397161b2408cSBarry Smith This should work, but it doesn't 397261b2408cSBarry Smith sctx->ctx = ctx; 397361b2408cSBarry Smith mexMakeArrayPersistent(sctx->ctx); 397461b2408cSBarry Smith */ 397561b2408cSBarry Smith sctx->ctx = mxDuplicateArray(ctx); 397661b2408cSBarry Smith ierr = SNESSetJacobian(snes,A,B,SNESComputeJacobian_Matlab,sctx);CHKERRQ(ierr); 397761b2408cSBarry Smith PetscFunctionReturn(0); 397861b2408cSBarry Smith } 397969b4f73cSBarry Smith 3980f9eb7ae2SShri Abhyankar #undef __FUNCT__ 3981f9eb7ae2SShri Abhyankar #define __FUNCT__ "SNESMonitor_Matlab" 3982f9eb7ae2SShri Abhyankar /* 3983f9eb7ae2SShri Abhyankar SNESMonitor_Matlab - Calls the function that has been set with SNESMonitorSetMatlab(). 3984f9eb7ae2SShri Abhyankar 3985f9eb7ae2SShri Abhyankar Collective on SNES 3986f9eb7ae2SShri Abhyankar 3987f9eb7ae2SShri Abhyankar .seealso: SNESSetFunction(), SNESGetFunction() 3988f9eb7ae2SShri Abhyankar @*/ 39897087cfbeSBarry Smith PetscErrorCode SNESMonitor_Matlab(SNES snes,PetscInt it, PetscReal fnorm, void *ctx) 3990f9eb7ae2SShri Abhyankar { 3991f9eb7ae2SShri Abhyankar PetscErrorCode ierr; 399248f37e70SShri Abhyankar SNESMatlabContext *sctx = (SNESMatlabContext *)ctx; 3993f9eb7ae2SShri Abhyankar int nlhs = 1,nrhs = 6; 3994f9eb7ae2SShri Abhyankar mxArray *plhs[1],*prhs[6]; 3995f9eb7ae2SShri Abhyankar long long int lx = 0,ls = 0; 3996f9eb7ae2SShri Abhyankar Vec x=snes->vec_sol; 3997f9eb7ae2SShri Abhyankar 3998f9eb7ae2SShri Abhyankar PetscFunctionBegin; 3999f9eb7ae2SShri Abhyankar PetscValidHeaderSpecific(snes,SNES_CLASSID,1); 4000f9eb7ae2SShri Abhyankar 4001f9eb7ae2SShri Abhyankar ierr = PetscMemcpy(&ls,&snes,sizeof(snes));CHKERRQ(ierr); 4002f9eb7ae2SShri Abhyankar ierr = PetscMemcpy(&lx,&x,sizeof(x));CHKERRQ(ierr); 4003f9eb7ae2SShri Abhyankar prhs[0] = mxCreateDoubleScalar((double)ls); 4004f9eb7ae2SShri Abhyankar prhs[1] = mxCreateDoubleScalar((double)it); 4005f9eb7ae2SShri Abhyankar prhs[2] = mxCreateDoubleScalar((double)fnorm); 4006f9eb7ae2SShri Abhyankar prhs[3] = mxCreateDoubleScalar((double)lx); 4007f9eb7ae2SShri Abhyankar prhs[4] = mxCreateString(sctx->funcname); 4008f9eb7ae2SShri Abhyankar prhs[5] = sctx->ctx; 4009f9eb7ae2SShri Abhyankar ierr = mexCallMATLAB(nlhs,plhs,nrhs,prhs,"PetscSNESMonitorInternal");CHKERRQ(ierr); 4010f9eb7ae2SShri Abhyankar ierr = mxGetScalar(plhs[0]);CHKERRQ(ierr); 4011f9eb7ae2SShri Abhyankar mxDestroyArray(prhs[0]); 4012f9eb7ae2SShri Abhyankar mxDestroyArray(prhs[1]); 4013f9eb7ae2SShri Abhyankar mxDestroyArray(prhs[2]); 4014f9eb7ae2SShri Abhyankar mxDestroyArray(prhs[3]); 4015f9eb7ae2SShri Abhyankar mxDestroyArray(prhs[4]); 4016f9eb7ae2SShri Abhyankar mxDestroyArray(plhs[0]); 4017f9eb7ae2SShri Abhyankar PetscFunctionReturn(0); 4018f9eb7ae2SShri Abhyankar } 4019f9eb7ae2SShri Abhyankar 4020f9eb7ae2SShri Abhyankar 4021f9eb7ae2SShri Abhyankar #undef __FUNCT__ 4022f9eb7ae2SShri Abhyankar #define __FUNCT__ "SNESMonitorSetMatlab" 4023f9eb7ae2SShri Abhyankar /* 4024e3c5b3baSBarry Smith SNESMonitorSetMatlab - Sets the monitor function from MATLAB 4025f9eb7ae2SShri Abhyankar 4026f9eb7ae2SShri Abhyankar Level: developer 4027f9eb7ae2SShri Abhyankar 4028f9eb7ae2SShri Abhyankar .keywords: SNES, nonlinear, set, function 4029f9eb7ae2SShri Abhyankar 4030f9eb7ae2SShri Abhyankar .seealso: SNESGetFunction(), SNESComputeFunction(), SNESSetJacobian(), SNESSetFunction() 4031f9eb7ae2SShri Abhyankar */ 40327087cfbeSBarry Smith PetscErrorCode SNESMonitorSetMatlab(SNES snes,const char *func,mxArray *ctx) 4033f9eb7ae2SShri Abhyankar { 4034f9eb7ae2SShri Abhyankar PetscErrorCode ierr; 4035f9eb7ae2SShri Abhyankar SNESMatlabContext *sctx; 4036f9eb7ae2SShri Abhyankar 4037f9eb7ae2SShri Abhyankar PetscFunctionBegin; 4038f9eb7ae2SShri Abhyankar /* currently sctx is memory bleed */ 4039f9eb7ae2SShri Abhyankar ierr = PetscMalloc(sizeof(SNESMatlabContext),&sctx);CHKERRQ(ierr); 4040f9eb7ae2SShri Abhyankar ierr = PetscStrallocpy(func,&sctx->funcname);CHKERRQ(ierr); 4041f9eb7ae2SShri Abhyankar /* 4042f9eb7ae2SShri Abhyankar This should work, but it doesn't 4043f9eb7ae2SShri Abhyankar sctx->ctx = ctx; 4044f9eb7ae2SShri Abhyankar mexMakeArrayPersistent(sctx->ctx); 4045f9eb7ae2SShri Abhyankar */ 4046f9eb7ae2SShri Abhyankar sctx->ctx = mxDuplicateArray(ctx); 4047f9eb7ae2SShri Abhyankar ierr = SNESMonitorSet(snes,SNESMonitor_Matlab,sctx,PETSC_NULL);CHKERRQ(ierr); 4048f9eb7ae2SShri Abhyankar PetscFunctionReturn(0); 4049f9eb7ae2SShri Abhyankar } 4050f9eb7ae2SShri Abhyankar 405169b4f73cSBarry Smith #endif 4052