xref: /petsc/src/snes/mf/snesmfj.c (revision 29bbc08cd5461c366aba6645924e8ff42acd1de0)
1*29bbc08cSBarry Smith /*$Id: snesmfj.c,v 1.113 2000/09/27 20:01:57 bsmith Exp bsmith $*/
281e6777dSBarry Smith 
39a6cb015SBarry Smith #include "src/snes/snesimpl.h"
4e090d566SSatish Balay #include "src/snes/mf/snesmfj.h"   /*I  "petscsnes.h"   I*/
581e6777dSBarry Smith 
65a655dc6SBarry Smith FList      MatSNESMFList              = 0;
74c49b128SBarry Smith PetscTruth MatSNESMFRegisterAllCalled = PETSC_FALSE;
8a4d4d686SBarry Smith 
95615d1e5SSatish Balay #undef __FUNC__
10b2863d3aSBarry Smith #define __FUNC__ /*<a name=""></a>*/"MatSNESMFSetType"
11fd4bdd07SBarry Smith /*@C
1265f2ba5bSLois Curfman McInnes     MatSNESMFSetType - Sets the method that is used to compute the
1365f2ba5bSLois Curfman McInnes     differencing parameter for finite difference matrix-free formulations.
149a6cb015SBarry Smith 
159a6cb015SBarry Smith     Input Parameters:
16ef4ad1fdSLois Curfman McInnes +   mat - the "matrix-free" matrix created via MatCreateSNESMF()
179a6cb015SBarry Smith -   ftype - the type requested
189a6cb015SBarry Smith 
1915091d37SBarry Smith     Level: advanced
2015091d37SBarry Smith 
2165f2ba5bSLois Curfman McInnes     Notes:
2265f2ba5bSLois Curfman McInnes     For example, such routines can compute h for use in
2365f2ba5bSLois Curfman McInnes     Jacobian-vector products of the form
2465f2ba5bSLois Curfman McInnes 
2565f2ba5bSLois Curfman McInnes                         F(x+ha) - F(x)
26ef4ad1fdSLois Curfman McInnes           F'(u)a  ~=  ----------------
2765f2ba5bSLois Curfman McInnes                               h
2865f2ba5bSLois Curfman McInnes 
29f1af5d2fSBarry Smith .seealso: MatCreateSNESMF(), MatSNESMFRegisterDynamic)
309a6cb015SBarry Smith @*/
31f6a0df18SBarry Smith int MatSNESMFSetType(Mat mat,MatSNESMFType ftype)
32b9fa9cd0SBarry Smith {
335a655dc6SBarry Smith   int          ierr,(*r)(MatSNESMFCtx);
345a655dc6SBarry Smith   MatSNESMFCtx ctx;
356831982aSBarry Smith   PetscTruth   match;
36a4d4d686SBarry Smith 
37a4d4d686SBarry Smith   PetscFunctionBegin;
380f5bd95cSBarry Smith   PetscValidHeaderSpecific(mat,MAT_COOKIE);
390f5bd95cSBarry Smith   PetscValidCharPointer(ftype);
400f5bd95cSBarry Smith 
41a4d4d686SBarry Smith   ierr = MatShellGetContext(mat,(void **)&ctx);CHKERRQ(ierr);
42a4d4d686SBarry Smith 
439a6cb015SBarry Smith   /* already set, so just return */
446831982aSBarry Smith   ierr = PetscTypeCompare((PetscObject)ctx,ftype,&match);CHKERRQ(ierr);
450f5bd95cSBarry Smith   if (match) PetscFunctionReturn(0);
46a4d4d686SBarry Smith 
479a6cb015SBarry Smith   /* destroy the old one if it exists */
489a6cb015SBarry Smith   if (ctx->ops->destroy) {
499a6cb015SBarry Smith     ierr = (*ctx->ops->destroy)(ctx);CHKERRQ(ierr);
509a6cb015SBarry Smith   }
519a6cb015SBarry Smith 
5265f2ba5bSLois Curfman McInnes   /* Get the function pointers for the requrested method */
535a655dc6SBarry Smith   if (!MatSNESMFRegisterAllCalled) {ierr = MatSNESMFRegisterAll(PETSC_NULL);CHKERRQ(ierr);}
549a6cb015SBarry Smith 
555a655dc6SBarry Smith   ierr =  FListFind(ctx->comm,MatSNESMFList,ftype,(int (**)(void *)) &r);CHKERRQ(ierr);
569a6cb015SBarry Smith 
57*29bbc08cSBarry Smith   if (!r) SETERRQ(1,"Unknown MatSNESMF type given");
589a6cb015SBarry Smith 
599a6cb015SBarry Smith   ierr = (*r)(ctx);CHKERRQ(ierr);
606831982aSBarry Smith 
616831982aSBarry Smith   ierr = PetscObjectChangeTypeName((PetscObject)ctx,ftype);CHKERRQ(ierr);
629a6cb015SBarry Smith 
639a6cb015SBarry Smith   PetscFunctionReturn(0);
649a6cb015SBarry Smith }
659a6cb015SBarry Smith 
669a6cb015SBarry Smith /*MC
67f1af5d2fSBarry Smith    MatSNESMFRegisterDynamic - Adds a method to the MatSNESMF registry.
689a6cb015SBarry Smith 
699a6cb015SBarry Smith    Synopsis:
70f1af5d2fSBarry Smith    MatSNESMFRegisterDynamicchar *name_solver,char *path,char *name_create,int (*routine_create)(MatSNESMF))
719a6cb015SBarry Smith 
729a6cb015SBarry Smith    Not Collective
739a6cb015SBarry Smith 
749a6cb015SBarry Smith    Input Parameters:
759a6cb015SBarry Smith +  name_solver - name of a new user-defined compute-h module
769a6cb015SBarry Smith .  path - path (either absolute or relative) the library containing this solver
779a6cb015SBarry Smith .  name_create - name of routine to create method context
789a6cb015SBarry Smith -  routine_create - routine to create method context
799a6cb015SBarry Smith 
8015091d37SBarry Smith    Level: developer
8115091d37SBarry Smith 
829a6cb015SBarry Smith    Notes:
83f1af5d2fSBarry Smith    MatSNESMFRegisterDynamic) may be called multiple times to add several user-defined solvers.
849a6cb015SBarry Smith 
859a6cb015SBarry Smith    If dynamic libraries are used, then the fourth input argument (routine_create)
869a6cb015SBarry Smith    is ignored.
879a6cb015SBarry Smith 
889a6cb015SBarry Smith    Sample usage:
899a6cb015SBarry Smith .vb
90f1af5d2fSBarry Smith    MatSNESMFRegisterDynamic"my_h",/home/username/my_lib/lib/libO/solaris/mylib.a,
919a6cb015SBarry Smith                "MyHCreate",MyHCreate);
929a6cb015SBarry Smith .ve
939a6cb015SBarry Smith 
949a6cb015SBarry Smith    Then, your solver can be chosen with the procedural interface via
955a655dc6SBarry Smith $     MatSNESMFSetType(mfctx,"my_h")
969a6cb015SBarry Smith    or at runtime via the option
979a6cb015SBarry Smith $     -snes_mf_type my_h
989a6cb015SBarry Smith 
995a655dc6SBarry Smith .keywords: MatSNESMF, register
1009a6cb015SBarry Smith 
1015a655dc6SBarry Smith .seealso: MatSNESMFRegisterAll(), MatSNESMFRegisterDestroy()
1029a6cb015SBarry Smith M*/
1039a6cb015SBarry Smith 
1049a6cb015SBarry Smith #undef __FUNC__
105b2863d3aSBarry Smith #define __FUNC__ /*<a name=""></a>*/"MatSNESMFRegister"
106f1af5d2fSBarry Smith int MatSNESMFRegister(char *sname,char *path,char *name,int (*function)(MatSNESMFCtx))
1079a6cb015SBarry Smith {
1089a6cb015SBarry Smith   int ierr;
1099a6cb015SBarry Smith   char fullname[256];
1109a6cb015SBarry Smith 
1119a6cb015SBarry Smith   PetscFunctionBegin;
112f1af5d2fSBarry Smith   ierr = FListConcat(path,name,fullname);CHKERRQ(ierr);
113f1af5d2fSBarry Smith   ierr = FListAdd(&MatSNESMFList,sname,fullname,(int (*)(void*))function);CHKERRQ(ierr);
1149a6cb015SBarry Smith   PetscFunctionReturn(0);
1159a6cb015SBarry Smith }
1169a6cb015SBarry Smith 
1179a6cb015SBarry Smith 
1189a6cb015SBarry Smith #undef __FUNC__
119b2863d3aSBarry Smith #define __FUNC__ /*<a name=""></a>*/"MatSNESMFRegisterDestroy"
1209a6cb015SBarry Smith /*@C
1215a655dc6SBarry Smith    MatSNESMFRegisterDestroy - Frees the list of MatSNESMF methods that were
122f1af5d2fSBarry Smith    registered by MatSNESMFRegisterDynamic).
1239a6cb015SBarry Smith 
1249a6cb015SBarry Smith    Not Collective
1259a6cb015SBarry Smith 
12615091d37SBarry Smith    Level: developer
12715091d37SBarry Smith 
1285a655dc6SBarry Smith .keywords: MatSNESMF, register, destroy
1299a6cb015SBarry Smith 
130f1af5d2fSBarry Smith .seealso: MatSNESMFRegisterDynamic), MatSNESMFRegisterAll()
1319a6cb015SBarry Smith @*/
1325a655dc6SBarry Smith int MatSNESMFRegisterDestroy(void)
1339a6cb015SBarry Smith {
1349a6cb015SBarry Smith   int ierr;
1359a6cb015SBarry Smith 
1369a6cb015SBarry Smith   PetscFunctionBegin;
1375a655dc6SBarry Smith   if (MatSNESMFList) {
1381d1367b7SBarry Smith     ierr = FListDestroy(&MatSNESMFList);CHKERRQ(ierr);
1395a655dc6SBarry Smith     MatSNESMFList = 0;
1409a6cb015SBarry Smith   }
1414c49b128SBarry Smith   MatSNESMFRegisterAllCalled = PETSC_FALSE;
1429a6cb015SBarry Smith   PetscFunctionReturn(0);
1439a6cb015SBarry Smith }
1449a6cb015SBarry Smith 
1459a6cb015SBarry Smith /* ----------------------------------------------------------------------------------------*/
146a4d4d686SBarry Smith #undef __FUNC__
147b2863d3aSBarry Smith #define __FUNC__ /*<a name=""></a>*/"MatSNESMFDestroy_Private"
1485a655dc6SBarry Smith int MatSNESMFDestroy_Private(Mat mat)
149a4d4d686SBarry Smith {
150a4d4d686SBarry Smith   int          ierr;
1515a655dc6SBarry Smith   MatSNESMFCtx ctx;
152fae171e0SBarry Smith 
1533a40ed3dSBarry Smith   PetscFunctionBegin;
1540a25c783SBarry Smith   ierr = MatShellGetContext(mat,(void **)&ctx);CHKERRQ(ierr);
155b9fa9cd0SBarry Smith   ierr = VecDestroy(ctx->w);CHKERRQ(ierr);
1569a6cb015SBarry Smith   if (ctx->ops->destroy) {ierr = (*ctx->ops->destroy)(ctx);CHKERRQ(ierr);}
15774637425SBarry Smith   if (ctx->sp) {ierr = MatNullSpaceDestroy(ctx->sp);CHKERRQ(ierr);}
1586831982aSBarry Smith   PetscHeaderDestroy(ctx);
1593a40ed3dSBarry Smith   PetscFunctionReturn(0);
160b9fa9cd0SBarry Smith }
16150361f65SLois Curfman McInnes 
1625615d1e5SSatish Balay #undef __FUNC__
163b2863d3aSBarry Smith #define __FUNC__ /*<a name=""></a>*/"MatSNESMFView_Private"
16439e2f89bSBarry Smith /*
1655a655dc6SBarry Smith    MatSNESMFView_Private - Views matrix-free parameters.
1668f6e3e37SBarry Smith 
16739e2f89bSBarry Smith */
1685a655dc6SBarry Smith int MatSNESMFView_Private(Mat J,Viewer viewer)
169eb9086c3SLois Curfman McInnes {
170eb9086c3SLois Curfman McInnes   int          ierr;
1715a655dc6SBarry Smith   MatSNESMFCtx ctx;
1726831982aSBarry Smith   PetscTruth   isascii;
173eb9086c3SLois Curfman McInnes 
1743a40ed3dSBarry Smith   PetscFunctionBegin;
175eb9086c3SLois Curfman McInnes   ierr = MatShellGetContext(J,(void **)&ctx);CHKERRQ(ierr);
1766831982aSBarry Smith   ierr = PetscTypeCompare((PetscObject)viewer,ASCII_VIEWER,&isascii);CHKERRQ(ierr);
1770f5bd95cSBarry Smith   if (isascii) {
1786831982aSBarry Smith      ierr = ViewerASCIIPrintf(viewer,"  SNES matrix-free approximation:\n");CHKERRQ(ierr);
1796831982aSBarry Smith      ierr = ViewerASCIIPrintf(viewer,"    err=%g (relative error in function evaluation)\n",ctx->error_rel);CHKERRQ(ierr);
180473c83c3SBarry Smith      if (!ctx->type_name) {
181473c83c3SBarry Smith        ierr = ViewerASCIIPrintf(viewer,"    The compute h routine has not yet been set\n");CHKERRQ(ierr);
182473c83c3SBarry Smith      } else {
1836831982aSBarry Smith        ierr = ViewerASCIIPrintf(viewer,"    Using %s compute h routine\n",ctx->type_name);CHKERRQ(ierr);
184473c83c3SBarry Smith      }
1859a6cb015SBarry Smith      if (ctx->ops->view) {
1869a6cb015SBarry Smith        ierr = (*ctx->ops->view)(ctx,viewer);CHKERRQ(ierr);
1879a6cb015SBarry Smith      }
1885cd90555SBarry Smith   } else {
189*29bbc08cSBarry Smith     SETERRQ1(1,"Viewer type %s not supported for SNES matrix free matrix",((PetscObject)viewer)->type_name);
190eb9086c3SLois Curfman McInnes   }
1913a40ed3dSBarry Smith   PetscFunctionReturn(0);
192eb9086c3SLois Curfman McInnes }
193eb9086c3SLois Curfman McInnes 
194be726c96SBarry Smith #undef __FUNC__
195b2863d3aSBarry Smith #define __FUNC__ /*<a name=""></a>*/"MatSNESMFAssemblyEnd_Private"
196be726c96SBarry Smith /*
1975a655dc6SBarry Smith    MatSNESMFAssemblyEnd_Private - Resets the ctx->ncurrenth to zero. This
19865f2ba5bSLois Curfman McInnes    allows the user to indicate the beginning of a new linear solve by calling
199be726c96SBarry Smith    MatAssemblyXXX() on the matrix free matrix. This then allows the
20065f2ba5bSLois Curfman McInnes    MatSNESMFCreate_WP() to properly compute ||U|| only the first time
20165f2ba5bSLois Curfman McInnes    in the linear solver rather than every time.
202be726c96SBarry Smith */
2035a655dc6SBarry Smith int MatSNESMFAssemblyEnd_Private(Mat J)
204be726c96SBarry Smith {
205be726c96SBarry Smith   int          ierr;
2061d1367b7SBarry Smith   MatSNESMFCtx j;
207be726c96SBarry Smith 
208be726c96SBarry Smith   PetscFunctionBegin;
2095a655dc6SBarry Smith   ierr = MatSNESMFResetHHistory(J);CHKERRQ(ierr);
2101d1367b7SBarry Smith   ierr = MatShellGetContext(J,(void **)&j);CHKERRQ(ierr);
2111d1367b7SBarry Smith   if (j->snes) {
2121d1367b7SBarry Smith     ierr = SNESGetSolution(j->snes,&j->current_u);CHKERRQ(ierr);
2131d1367b7SBarry Smith     if (j->snes->method_class == SNES_NONLINEAR_EQUATIONS) {
2141d1367b7SBarry Smith       ierr = SNESGetFunction(j->snes,&j->current_f,PETSC_NULL,PETSC_NULL);CHKERRQ(ierr);
2151d1367b7SBarry Smith     } else if (j->snes->method_class == SNES_UNCONSTRAINED_MINIMIZATION) {
2161d1367b7SBarry Smith       ierr = SNESGetGradient(j->snes,&j->current_f,PETSC_NULL);CHKERRQ(ierr);
217*29bbc08cSBarry Smith     } else SETERRQ(PETSC_ERR_ARG_OUTOFRANGE,"Invalid method class");
2181d1367b7SBarry Smith   }
219be726c96SBarry Smith   PetscFunctionReturn(0);
220be726c96SBarry Smith }
221be726c96SBarry Smith 
222c481317fSBarry Smith 
2235615d1e5SSatish Balay #undef __FUNC__
224b2863d3aSBarry Smith #define __FUNC__ /*<a name=""></a>*/"MatSNESMFMult_Private"
225eb9086c3SLois Curfman McInnes /*
2265a655dc6SBarry Smith   MatSNESMFMult_Private - Default matrix-free form for Jacobian-vector
227eb9086c3SLois Curfman McInnes   product, y = F'(u)*a:
228a4d4d686SBarry Smith 
2299a6cb015SBarry Smith         y ~= (F(u + ha) - F(u))/h,
230eb9086c3SLois Curfman McInnes   where F = nonlinear function, as set by SNESSetFunction()
231eb9086c3SLois Curfman McInnes         u = current iterate
232eb9086c3SLois Curfman McInnes         h = difference interval
233eb9086c3SLois Curfman McInnes */
2345a655dc6SBarry Smith int MatSNESMFMult_Private(Mat mat,Vec a,Vec y)
23539e2f89bSBarry Smith {
2365a655dc6SBarry Smith   MatSNESMFCtx ctx;
237fae171e0SBarry Smith   SNES           snes;
238a4d4d686SBarry Smith   Scalar         h,mone = -1.0;
239fae171e0SBarry Smith   Vec            w,U,F;
240a305c92eSSatish Balay   int            ierr,(*eval_fct)(SNES,Vec,Vec)=0;
24139e2f89bSBarry Smith 
2423a40ed3dSBarry Smith   PetscFunctionBegin;
2439a6cb015SBarry Smith   /* We log matrix-free matrix-vector products separately, so that we can
2449a6cb015SBarry Smith      separate the performance monitoring from the cases that use conventional
2459a6cb015SBarry Smith      storage.  We may eventually modify event logging to associate events
2469a6cb015SBarry Smith      with particular objects, hence alleviating the more general problem. */
24781bfdfe8SSatish Balay   ierr = PLogEventBegin(MAT_MatrixFreeMult,a,y,0,0);CHKERRQ(ierr);
24856cd22aeSBarry Smith 
2496e38a044SBarry Smith   ierr = MatShellGetContext(mat,(void **)&ctx);CHKERRQ(ierr);
250fae171e0SBarry Smith   snes = ctx->snes;
251fae171e0SBarry Smith   w    = ctx->w;
2521d1367b7SBarry Smith   U    = ctx->current_u;
25350361f65SLois Curfman McInnes 
25485614651SBarry Smith   /*
25585614651SBarry Smith       Compute differencing parameter
25685614651SBarry Smith   */
2579a6cb015SBarry Smith   if (!ctx->ops->compute) {
258b7fd4e64SBarry Smith     ierr = MatSNESMFSetType(mat,MATSNESMF_DEFAULT);CHKERRQ(ierr);
2595a655dc6SBarry Smith     ierr = MatSNESMFSetFromOptions(mat);CHKERRQ(ierr);
2609a6cb015SBarry Smith   }
2619a6cb015SBarry Smith   ierr = (*ctx->ops->compute)(ctx,U,a,&h);CHKERRQ(ierr);
262a4d4d686SBarry Smith 
263a4d4d686SBarry Smith   /* keep a record of the current differencing parameter h */
264a4d4d686SBarry Smith   ctx->currenth = h;
265aa482453SBarry Smith #if defined(PETSC_USE_COMPLEX)
266329f5518SBarry Smith   PLogInfo(mat,"Current differencing parameter: %g + %g i\n",PetscRealPart(h),PetscImaginaryPart(h));
267a4d4d686SBarry Smith #else
268a4d4d686SBarry Smith   PLogInfo(mat,"Current differencing parameter: %g\n",h);
269a4d4d686SBarry Smith #endif
270a4d4d686SBarry Smith   if (ctx->historyh && ctx->ncurrenth < ctx->maxcurrenth) {
27185614651SBarry Smith     ctx->historyh[ctx->ncurrenth] = h;
272a4d4d686SBarry Smith   }
27385614651SBarry Smith   ctx->ncurrenth++;
274a4d4d686SBarry Smith 
27585614651SBarry Smith   /* w = u + ha */
276a4d4d686SBarry Smith   ierr = VecWAXPY(&h,a,U,w);CHKERRQ(ierr);
27785614651SBarry Smith 
27885614651SBarry Smith 
27985614651SBarry Smith   if (!ctx->func) {
28085614651SBarry Smith     if (snes->method_class == SNES_NONLINEAR_EQUATIONS) {
28185614651SBarry Smith       eval_fct = SNESComputeFunction;
28285614651SBarry Smith     } else if (snes->method_class == SNES_UNCONSTRAINED_MINIMIZATION) {
28385614651SBarry Smith       eval_fct = SNESComputeGradient;
284*29bbc08cSBarry Smith     } else SETERRQ(PETSC_ERR_ARG_OUTOFRANGE,"Invalid method class");
2851d1367b7SBarry Smith     F    = ctx->current_f;
286*29bbc08cSBarry Smith     if (!F) SETERRQ(1,"You must call MatAssembly() even on matrix-free matrices");
287a4d4d686SBarry Smith     ierr = eval_fct(snes,w,y);CHKERRQ(ierr);
28885614651SBarry Smith   } else {
28985614651SBarry Smith     F = ctx->funcvec;
29085614651SBarry Smith     /* compute func(U) as base for differencing */
29185614651SBarry Smith     if (ctx->ncurrenth == 1) {
29285614651SBarry Smith       ierr = (*ctx->func)(snes,U,F,ctx->funcctx);CHKERRQ(ierr);
29385614651SBarry Smith     }
29485614651SBarry Smith     ierr = (*ctx->func)(snes,w,y,ctx->funcctx);CHKERRQ(ierr);
29585614651SBarry Smith   }
296a4d4d686SBarry Smith 
297a4d4d686SBarry Smith   ierr = VecAXPY(&mone,F,y);CHKERRQ(ierr);
298a4d4d686SBarry Smith   h    = 1.0/h;
299a4d4d686SBarry Smith   ierr = VecScale(&h,y);CHKERRQ(ierr);
30074637425SBarry Smith   if (ctx->sp) {ierr = MatNullSpaceRemove(ctx->sp,y,PETSC_NULL);CHKERRQ(ierr);}
301a4d4d686SBarry Smith 
30281bfdfe8SSatish Balay   ierr = PLogEventEnd(MAT_MatrixFreeMult,a,y,0,0);CHKERRQ(ierr);
303a4d4d686SBarry Smith   PetscFunctionReturn(0);
304a4d4d686SBarry Smith }
305a4d4d686SBarry Smith 
306a4d4d686SBarry Smith #undef __FUNC__
307b2863d3aSBarry Smith #define __FUNC__ /*<a name=""></a>*/"MatCreateSNESMF"
308a4d4d686SBarry Smith /*@C
30965f2ba5bSLois Curfman McInnes    MatCreateSNESMF - Creates a matrix-free matrix context for use with
31065f2ba5bSLois Curfman McInnes    a SNES solver.  This matrix can be used as the Jacobian argument for
31165f2ba5bSLois Curfman McInnes    the routine SNESSetJacobian().
312a4d4d686SBarry Smith 
313a4d4d686SBarry Smith    Collective on SNES and Vec
314a4d4d686SBarry Smith 
315a4d4d686SBarry Smith    Input Parameters:
316a4d4d686SBarry Smith +  snes - the SNES context
317a4d4d686SBarry Smith -  x - vector where SNES solution is to be stored.
318a4d4d686SBarry Smith 
319a4d4d686SBarry Smith    Output Parameter:
320a4d4d686SBarry Smith .  J - the matrix-free matrix
321a4d4d686SBarry Smith 
32215091d37SBarry Smith    Level: advanced
32315091d37SBarry Smith 
324a4d4d686SBarry Smith    Notes:
325a4d4d686SBarry Smith    The matrix-free matrix context merely contains the function pointers
326a4d4d686SBarry Smith    and work space for performing finite difference approximations of
32765f2ba5bSLois Curfman McInnes    Jacobian-vector products, F'(u)*a,
3289a6cb015SBarry Smith 
3299a6cb015SBarry Smith    The default code uses the following approach to compute h
330a4d4d686SBarry Smith 
331a4d4d686SBarry Smith .vb
33265f2ba5bSLois Curfman McInnes      F'(u)*a = [F(u+h*a) - F(u)]/h where
333a4d4d686SBarry Smith      h = error_rel*u'a/||a||^2                        if  |u'a| > umin*||a||_{1}
334a4d4d686SBarry Smith        = error_rel*umin*sign(u'a)*||a||_{1}/||a||^2   otherwise
335a4d4d686SBarry Smith  where
336a4d4d686SBarry Smith      error_rel = square root of relative error in function evaluation
337a4d4d686SBarry Smith      umin = minimum iterate parameter
338a4d4d686SBarry Smith .ve
339a4d4d686SBarry Smith 
3405a655dc6SBarry Smith    The user can set the error_rel via MatSNESMFSetFunctionError() and
34165f2ba5bSLois Curfman McInnes    umin via MatSNESMFDefaultSetUmin(); see the nonlinear solvers chapter
34265f2ba5bSLois Curfman McInnes    of the users manual for details.
343a4d4d686SBarry Smith 
344a4d4d686SBarry Smith    The user should call MatDestroy() when finished with the matrix-free
345a4d4d686SBarry Smith    matrix context.
346a4d4d686SBarry Smith 
347a4d4d686SBarry Smith    Options Database Keys:
348a4d4d686SBarry Smith +  -snes_mf_err <error_rel> - Sets error_rel
3499a6cb015SBarry Smith .  -snes_mf_unim <umin> - Sets umin (for default PETSc routine that computes h only)
350a4d4d686SBarry Smith -  -snes_mf_ksp_monitor - KSP monitor routine that prints differencing h
351a4d4d686SBarry Smith 
352a4d4d686SBarry Smith .keywords: SNES, default, matrix-free, create, matrix
353a4d4d686SBarry Smith 
3545a655dc6SBarry Smith .seealso: MatDestroy(), MatSNESMFSetFunctionError(), MatSNESMFDefaultSetUmin()
3551d1367b7SBarry Smith           MatSNESMFSetHHistory(), MatSNESMFResetHHistory(), MatCreateMF(),
3561d1367b7SBarry Smith           MatSNESMFGetH(),MatSNESMFKSPMonitor(), MatSNESMFRegisterDynamic), MatSNESMFFormJacobian()
357a4d4d686SBarry Smith 
358a4d4d686SBarry Smith @*/
3595a655dc6SBarry Smith int MatCreateSNESMF(SNES snes,Vec x,Mat *J)
360a4d4d686SBarry Smith {
3611d1367b7SBarry Smith   MatSNESMFCtx mfctx;
3621d1367b7SBarry Smith   int          ierr;
3631d1367b7SBarry Smith 
3641d1367b7SBarry Smith   PetscFunctionBegin;
3651d1367b7SBarry Smith   ierr = MatCreateMF(x,J);CHKERRQ(ierr);
3661d1367b7SBarry Smith   ierr = MatShellGetContext(*J,(void **)&mfctx);CHKERRQ(ierr);
3671d1367b7SBarry Smith   mfctx->snes = snes;
3681d1367b7SBarry Smith   PLogObjectParent(snes,*J);
3691d1367b7SBarry Smith   PetscFunctionReturn(0);
3701d1367b7SBarry Smith }
3711d1367b7SBarry Smith 
3721d1367b7SBarry Smith #undef __FUNC__
3731d1367b7SBarry Smith #define __FUNC__ /*<a name=""></a>*/"MatCreateMF"
3741d1367b7SBarry Smith /*@C
3751d1367b7SBarry Smith    MatCreateMF - Creates a matrix-free matrix. See also MatCreateSNESMF()
3761d1367b7SBarry Smith 
3771d1367b7SBarry Smith    Collective on Vec
3781d1367b7SBarry Smith 
3791d1367b7SBarry Smith    Input Parameters:
3801d1367b7SBarry Smith .  x - vector that defines layout of the vectors and matrices
3811d1367b7SBarry Smith 
3821d1367b7SBarry Smith    Output Parameter:
3831d1367b7SBarry Smith .  J - the matrix-free matrix
3841d1367b7SBarry Smith 
3851d1367b7SBarry Smith    Level: advanced
3861d1367b7SBarry Smith 
3871d1367b7SBarry Smith    Notes:
3881d1367b7SBarry Smith    The matrix-free matrix context merely contains the function pointers
3891d1367b7SBarry Smith    and work space for performing finite difference approximations of
3901d1367b7SBarry Smith    Jacobian-vector products, F'(u)*a,
3911d1367b7SBarry Smith 
3921d1367b7SBarry Smith    The default code uses the following approach to compute h
3931d1367b7SBarry Smith 
3941d1367b7SBarry Smith .vb
3951d1367b7SBarry Smith      F'(u)*a = [F(u+h*a) - F(u)]/h where
3961d1367b7SBarry Smith      h = error_rel*u'a/||a||^2                        if  |u'a| > umin*||a||_{1}
3971d1367b7SBarry Smith        = error_rel*umin*sign(u'a)*||a||_{1}/||a||^2   otherwise
3981d1367b7SBarry Smith  where
3991d1367b7SBarry Smith      error_rel = square root of relative error in function evaluation
4001d1367b7SBarry Smith      umin = minimum iterate parameter
4011d1367b7SBarry Smith .ve
4021d1367b7SBarry Smith 
4031d1367b7SBarry Smith    The user can set the error_rel via MatSNESMFSetFunctionError() and
4041d1367b7SBarry Smith    umin via MatSNESMFDefaultSetUmin(); see the nonlinear solvers chapter
4051d1367b7SBarry Smith    of the users manual for details.
4061d1367b7SBarry Smith 
4071d1367b7SBarry Smith    The user should call MatDestroy() when finished with the matrix-free
4081d1367b7SBarry Smith    matrix context.
4091d1367b7SBarry Smith 
4101d1367b7SBarry Smith    Options Database Keys:
4111d1367b7SBarry Smith +  -snes_mf_err <error_rel> - Sets error_rel
4121d1367b7SBarry Smith .  -snes_mf_unim <umin> - Sets umin (for default PETSc routine that computes h only)
4131d1367b7SBarry Smith -  -snes_mf_ksp_monitor - KSP monitor routine that prints differencing h
4141d1367b7SBarry Smith 
4151d1367b7SBarry Smith .keywords: default, matrix-free, create, matrix
4161d1367b7SBarry Smith 
4171d1367b7SBarry Smith .seealso: MatDestroy(), MatSNESMFSetFunctionError(), MatSNESMFDefaultSetUmin()
4181d1367b7SBarry Smith           MatSNESMFSetHHistory(), MatSNESMFResetHHistory(), MatCreateSNESMF(),
4191d1367b7SBarry Smith           MatSNESMFGetH(),MatSNESMFKSPMonitor(), MatSNESMFRegisterDynamic),, MatSNESMFFormJacobian()
4201d1367b7SBarry Smith 
4211d1367b7SBarry Smith @*/
4221d1367b7SBarry Smith int MatCreateMF(Vec x,Mat *J)
4231d1367b7SBarry Smith {
424a4d4d686SBarry Smith   MPI_Comm     comm;
4255a655dc6SBarry Smith   MatSNESMFCtx mfctx;
4269a6cb015SBarry Smith   int          n,nloc,ierr;
427a4d4d686SBarry Smith 
428a4d4d686SBarry Smith   PetscFunctionBegin;
4291d1367b7SBarry Smith   ierr = PetscObjectGetComm((PetscObject)x,&comm);CHKERRQ(ierr);
4301d1367b7SBarry Smith   PetscHeaderCreate(mfctx,_p_MatSNESMFCtx,struct _MFOps,MATSNESMFCTX_COOKIE,0,"SNESMF",comm,MatSNESMFDestroy_Private,MatSNESMFView_Private);
4316831982aSBarry Smith   PLogObjectCreate(mfctx);
432a4d4d686SBarry Smith   mfctx->sp              = 0;
4331d1367b7SBarry Smith   mfctx->snes            = 0;
434329f5518SBarry Smith   mfctx->error_rel       = 1.e-8; /* assumes PetscReal precision */
435329f5518SBarry Smith   mfctx->recomputeperiod = 1;
436329f5518SBarry Smith   mfctx->count           = 0;
437a4d4d686SBarry Smith   mfctx->currenth        = 0.0;
438a4d4d686SBarry Smith   mfctx->historyh        = PETSC_NULL;
439a4d4d686SBarry Smith   mfctx->ncurrenth       = 0;
440a4d4d686SBarry Smith   mfctx->maxcurrenth     = 0;
4416831982aSBarry Smith   mfctx->type_name       = 0;
442a4d4d686SBarry Smith 
4439a6cb015SBarry Smith   /*
4449a6cb015SBarry Smith      Create the empty data structure to contain compute-h routines.
4459a6cb015SBarry Smith      These will be filled in below from the command line options or
4465a655dc6SBarry Smith      a later call with MatSNESMFSetType() or if that is not called
4475a655dc6SBarry Smith      then it will default in the first use of MatSNESMFMult_private()
4489a6cb015SBarry Smith   */
4499a6cb015SBarry Smith   mfctx->ops->compute        = 0;
4509a6cb015SBarry Smith   mfctx->ops->destroy        = 0;
4519a6cb015SBarry Smith   mfctx->ops->view           = 0;
4529a6cb015SBarry Smith   mfctx->ops->setfromoptions = 0;
4539a6cb015SBarry Smith   mfctx->hctx                = 0;
4549a6cb015SBarry Smith 
45585614651SBarry Smith   mfctx->func                = 0;
45685614651SBarry Smith   mfctx->funcctx             = 0;
45785614651SBarry Smith   mfctx->funcvec             = 0;
45885614651SBarry Smith 
459a4d4d686SBarry Smith   ierr = VecDuplicate(x,&mfctx->w);CHKERRQ(ierr);
4601d1367b7SBarry Smith   ierr = VecGetSize(mfctx->w,&n);CHKERRQ(ierr);
4611d1367b7SBarry Smith   ierr = VecGetLocalSize(mfctx->w,&nloc);CHKERRQ(ierr);
462ffa0fd9eSBarry Smith   ierr = MatCreateShell(comm,nloc,nloc,n,n,mfctx,J);CHKERRQ(ierr);
4635a655dc6SBarry Smith   ierr = MatShellSetOperation(*J,MATOP_MULT,(void*)MatSNESMFMult_Private);CHKERRQ(ierr);
4645a655dc6SBarry Smith   ierr = MatShellSetOperation(*J,MATOP_DESTROY,(void *)MatSNESMFDestroy_Private);CHKERRQ(ierr);
4655a655dc6SBarry Smith   ierr = MatShellSetOperation(*J,MATOP_VIEW,(void *)MatSNESMFView_Private);CHKERRQ(ierr);
4665a655dc6SBarry Smith   ierr = MatShellSetOperation(*J,MATOP_ASSEMBLY_END,(void *)MatSNESMFAssemblyEnd_Private);CHKERRQ(ierr);
467a4d4d686SBarry Smith   PLogObjectParent(*J,mfctx->w);
4689a6cb015SBarry Smith 
4699a6cb015SBarry Smith   mfctx->mat = *J;
4709a6cb015SBarry Smith   PetscFunctionReturn(0);
4719a6cb015SBarry Smith }
4729a6cb015SBarry Smith 
4739a6cb015SBarry Smith #undef __FUNC__
474b2863d3aSBarry Smith #define __FUNC__ /*<a name=""></a>*/"MatSNESMFSetFromOptions"
4759a6cb015SBarry Smith /*@
4765a655dc6SBarry Smith    MatSNESMFSetFromOptions - Sets the MatSNESMF options from the command line
4779a6cb015SBarry Smith    parameter.
4789a6cb015SBarry Smith 
4799a6cb015SBarry Smith    Collective on Mat
4809a6cb015SBarry Smith 
4819a6cb015SBarry Smith    Input Parameters:
4825a655dc6SBarry Smith .  mat - the matrix obtained with MatCreateSNESMF()
4835a655dc6SBarry Smith 
4845a655dc6SBarry Smith    Options Database Keys:
4855a655dc6SBarry Smith +  -snes_mf_type - <default,wp>
4865a655dc6SBarry Smith -  -snes_mf_err - square root of estimated relative error in function evaluation
487329f5518SBarry Smith -  -snes_mf_period - how often h is recomputed, defaults to 1, everytime
4889a6cb015SBarry Smith 
48915091d37SBarry Smith    Level: advanced
49015091d37SBarry Smith 
4919a6cb015SBarry Smith .keywords: SNES, matrix-free, parameters
4929a6cb015SBarry Smith 
4935a655dc6SBarry Smith .seealso: MatCreateSNESMF(),MatSNESMFSetHHistory(),
4945a655dc6SBarry Smith           MatSNESMFResetHHistory(), MatSNESMFKSPMonitor()
4959a6cb015SBarry Smith @*/
4965a655dc6SBarry Smith int MatSNESMFSetFromOptions(Mat mat)
4979a6cb015SBarry Smith {
4985a655dc6SBarry Smith   MatSNESMFCtx mfctx;
499f1af5d2fSBarry Smith   int          ierr;
500f1af5d2fSBarry Smith   PetscTruth   flg;
501186905e3SBarry Smith   char         ftype[256];
5029a6cb015SBarry Smith 
5039a6cb015SBarry Smith   PetscFunctionBegin;
5049a6cb015SBarry Smith   ierr = MatShellGetContext(mat,(void **)&mfctx);CHKERRQ(ierr);
5059a6cb015SBarry Smith   if (mfctx) {
506186905e3SBarry Smith     if (!MatSNESMFRegisterAllCalled) {ierr = MatSNESMFRegisterAll(PETSC_NULL);CHKERRQ(ierr);}
507186905e3SBarry Smith 
508cd5578b5SBarry Smith     ierr = OptionsBegin(mfctx->comm,mfctx->prefix,"Set matrix free computation parameters","MatSNESMF");CHKERRQ(ierr);
509186905e3SBarry Smith       ierr = OptionsList("-snes_mf_type","Matrix free type","MatSNESMFSetType",MatSNESMFList,mfctx->type_name,ftype,256,&flg);CHKERRQ(ierr);
5109a6cb015SBarry Smith       if (flg) {
5115a655dc6SBarry Smith         ierr = MatSNESMFSetType(mat,ftype);CHKERRQ(ierr);
5129a6cb015SBarry Smith       }
5139a6cb015SBarry Smith 
514186905e3SBarry Smith       ierr = OptionsDouble("-snes_mf_err","set sqrt relative error in function","MatSNESMFSetFunctionError",mfctx->error_rel,&mfctx->error_rel,0);CHKERRQ(ierr);
515186905e3SBarry Smith       ierr = OptionsInt("-snes_mf_period","how often h is recomputed","MatSNESMFSetPeriod",mfctx->recomputeperiod,&mfctx->recomputeperiod,0);CHKERRQ(ierr);
516186905e3SBarry Smith       if (mfctx->snes) {
517186905e3SBarry Smith         ierr = OptionsName("-snes_mf_ksp_monitor","Monitor matrix-free parameters","MatSNESMFKSPMonitor",&flg);CHKERRQ(ierr);
518186905e3SBarry Smith         if (flg) {
519186905e3SBarry Smith           SLES sles;
520186905e3SBarry Smith           KSP  ksp;
521186905e3SBarry Smith           ierr = SNESGetSLES(mfctx->snes,&sles);CHKERRQ(ierr);
522186905e3SBarry Smith           ierr = SLESGetKSP(sles,&ksp);CHKERRQ(ierr);
523186905e3SBarry Smith           ierr = KSPSetMonitor(ksp,MatSNESMFKSPMonitor,PETSC_NULL,0);CHKERRQ(ierr);
524186905e3SBarry Smith         }
525186905e3SBarry Smith       }
5269a6cb015SBarry Smith       if (mfctx->ops->setfromoptions) {
5279a6cb015SBarry Smith         ierr = (*mfctx->ops->setfromoptions)(mfctx);CHKERRQ(ierr);
5289a6cb015SBarry Smith       }
5294bbc92c1SBarry Smith     ierr = OptionsEnd();CHKERRQ(ierr);
5304bbc92c1SBarry Smith 
5319a6cb015SBarry Smith   }
532a4d4d686SBarry Smith   PetscFunctionReturn(0);
533a4d4d686SBarry Smith }
534a4d4d686SBarry Smith 
535a4d4d686SBarry Smith #undef __FUNC__
536b2863d3aSBarry Smith #define __FUNC__ /*<a name=""></a>*/"MatSNESMFGetH"
537a4d4d686SBarry Smith /*@
53865f2ba5bSLois Curfman McInnes    MatSNESMFGetH - Gets the last value that was used as the differencing
539a4d4d686SBarry Smith    parameter.
540a4d4d686SBarry Smith 
541a4d4d686SBarry Smith    Not Collective
542a4d4d686SBarry Smith 
543a4d4d686SBarry Smith    Input Parameters:
5445a655dc6SBarry Smith .  mat - the matrix obtained with MatCreateSNESMF()
545a4d4d686SBarry Smith 
546a4d4d686SBarry Smith    Output Paramter:
547a4d4d686SBarry Smith .  h - the differencing step size
548a4d4d686SBarry Smith 
54915091d37SBarry Smith    Level: advanced
55015091d37SBarry Smith 
551a4d4d686SBarry Smith .keywords: SNES, matrix-free, parameters
552a4d4d686SBarry Smith 
5535a655dc6SBarry Smith .seealso: MatCreateSNESMF(),MatSNESMFSetHHistory(),
5545a655dc6SBarry Smith           MatSNESMFResetHHistory(),MatSNESMFKSPMonitor()
555a4d4d686SBarry Smith @*/
5565a655dc6SBarry Smith int MatSNESMFGetH(Mat mat,Scalar *h)
557a4d4d686SBarry Smith {
5585a655dc6SBarry Smith   MatSNESMFCtx ctx;
559a4d4d686SBarry Smith   int          ierr;
560a4d4d686SBarry Smith 
561a4d4d686SBarry Smith   PetscFunctionBegin;
562a4d4d686SBarry Smith   ierr = MatShellGetContext(mat,(void **)&ctx);CHKERRQ(ierr);
563a4d4d686SBarry Smith   if (ctx) {
564a4d4d686SBarry Smith     *h = ctx->currenth;
565a4d4d686SBarry Smith   }
566a4d4d686SBarry Smith   PetscFunctionReturn(0);
567a4d4d686SBarry Smith }
568a4d4d686SBarry Smith 
569a4d4d686SBarry Smith #undef __FUNC__
570b2863d3aSBarry Smith #define __FUNC__ /*<a name=""></a>*/"MatSNESMFKSPMonitor"
571a4d4d686SBarry Smith /*
5725a655dc6SBarry Smith    MatSNESMFKSPMonitor - A KSP monitor for use with the default PETSc
57365f2ba5bSLois Curfman McInnes    SNES matrix free routines. Prints the differencing parameter used at
57465f2ba5bSLois Curfman McInnes    each step.
575a4d4d686SBarry Smith */
576329f5518SBarry Smith int MatSNESMFKSPMonitor(KSP ksp,int n,PetscReal rnorm,void *dummy)
577a4d4d686SBarry Smith {
578a4d4d686SBarry Smith   PC             pc;
5795a655dc6SBarry Smith   MatSNESMFCtx   ctx;
580a4d4d686SBarry Smith   int            ierr;
581a4d4d686SBarry Smith   Mat            mat;
582a4d4d686SBarry Smith   MPI_Comm       comm;
583a4d4d686SBarry Smith   PetscTruth     nonzeroinitialguess;
584a4d4d686SBarry Smith 
585a4d4d686SBarry Smith   PetscFunctionBegin;
586a4d4d686SBarry Smith   ierr = PetscObjectGetComm((PetscObject)ksp,&comm);CHKERRQ(ierr);
587a4d4d686SBarry Smith   ierr = KSPGetPC(ksp,&pc);CHKERRQ(ierr);
588a4d4d686SBarry Smith   ierr = KSPGetInitialGuessNonzero(ksp,&nonzeroinitialguess);CHKERRQ(ierr);
589a4d4d686SBarry Smith   ierr = PCGetOperators(pc,&mat,PETSC_NULL,PETSC_NULL);CHKERRQ(ierr);
590a4d4d686SBarry Smith   ierr = MatShellGetContext(mat,(void **)&ctx);CHKERRQ(ierr);
5919a6cb015SBarry Smith   if (!ctx) {
592*29bbc08cSBarry Smith     SETERRQ(1,"Matrix is not a matrix free shell matrix");
5939a6cb015SBarry Smith   }
594a4d4d686SBarry Smith   if (n > 0 || nonzeroinitialguess) {
595aa482453SBarry Smith #if defined(PETSC_USE_COMPLEX)
596d132466eSBarry Smith     ierr = PetscPrintf(comm,"%d KSP Residual norm %14.12e h %g + %g i\n",n,rnorm,
597329f5518SBarry Smith                 PetscRealPart(ctx->currenth),PetscImaginaryPart(ctx->currenth));CHKERRQ(ierr);
598a4d4d686SBarry Smith #else
599d132466eSBarry Smith     ierr = PetscPrintf(comm,"%d KSP Residual norm %14.12e h %g \n",n,rnorm,ctx->currenth);CHKERRQ(ierr);
600a4d4d686SBarry Smith #endif
601a4d4d686SBarry Smith   } else {
602d132466eSBarry Smith     ierr = PetscPrintf(comm,"%d KSP Residual norm %14.12e\n",n,rnorm);CHKERRQ(ierr);
603a4d4d686SBarry Smith   }
604a4d4d686SBarry Smith   PetscFunctionReturn(0);
605a4d4d686SBarry Smith }
606a4d4d686SBarry Smith 
607a4d4d686SBarry Smith #undef __FUNC__
608b2863d3aSBarry Smith #define __FUNC__ /*<a name=""></a>*/"MatSNESMFSetFunction"
60985614651SBarry Smith /*@C
61085614651SBarry Smith    MatSNESMFSetFunction - Sets the function used in applying the matrix free.
61185614651SBarry Smith 
61285614651SBarry Smith    Collective on Mat
61385614651SBarry Smith 
61485614651SBarry Smith    Input Parameters:
61585614651SBarry Smith +  mat - the matrix free matrix created via MatCreateSNESMF()
61685614651SBarry Smith .  v   - workspace vector
61785614651SBarry Smith .  func - the function to use
61885614651SBarry Smith -  funcctx - optional function context passed to function
61985614651SBarry Smith 
62085614651SBarry Smith    Level: advanced
62185614651SBarry Smith 
62285614651SBarry Smith    Notes:
62385614651SBarry Smith     If you use this you MUST call MatAssemblyBegin()/MatAssemblyEnd() on the matrix free
62485614651SBarry Smith     matrix inside your compute Jacobian routine
62585614651SBarry Smith 
62685614651SBarry Smith     If this is not set then it will use the function set with SNESSetFunction()
62785614651SBarry Smith 
62885614651SBarry Smith .keywords: SNES, matrix-free, function
62985614651SBarry Smith 
63085614651SBarry Smith .seealso: MatCreateSNESMF(),MatSNESMFGetH(),
63185614651SBarry Smith           MatSNESMFSetHHistory(), MatSNESMFResetHHistory(),
63285614651SBarry Smith           MatSNESMFKSPMonitor(), SNESetFunction()
63385614651SBarry Smith @*/
63485614651SBarry Smith int MatSNESMFSetFunction(Mat mat,Vec v,int (*func)(SNES,Vec,Vec,void *),void *funcctx)
63585614651SBarry Smith {
63685614651SBarry Smith   MatSNESMFCtx ctx;
63785614651SBarry Smith   int          ierr;
63885614651SBarry Smith 
63985614651SBarry Smith   PetscFunctionBegin;
64085614651SBarry Smith   ierr = MatShellGetContext(mat,(void **)&ctx);CHKERRQ(ierr);
64185614651SBarry Smith   if (ctx) {
64285614651SBarry Smith     ctx->func    = func;
64385614651SBarry Smith     ctx->funcctx = funcctx;
64485614651SBarry Smith     ctx->funcvec = v;
64585614651SBarry Smith   }
64685614651SBarry Smith   PetscFunctionReturn(0);
64785614651SBarry Smith }
64885614651SBarry Smith 
64985614651SBarry Smith 
65085614651SBarry Smith #undef __FUNC__
651b2863d3aSBarry Smith #define __FUNC__ /*<a name=""></a>*/"MatSNESMFSetPeriod"
652329f5518SBarry Smith /*@
653329f5518SBarry Smith    MatSNESMFSetPeriod - Sets how often h is recomputed, by default it is everytime
654329f5518SBarry Smith 
655329f5518SBarry Smith    Collective on Mat
656329f5518SBarry Smith 
657329f5518SBarry Smith    Input Parameters:
658329f5518SBarry Smith +  mat - the matrix free matrix created via MatCreateSNESMF()
659329f5518SBarry Smith -  period - 1 for everytime, 2 for every second etc
660329f5518SBarry Smith 
661329f5518SBarry Smith    Options Database Keys:
662329f5518SBarry Smith +  -snes_mf_period <period>
663329f5518SBarry Smith 
664329f5518SBarry Smith    Level: advanced
665329f5518SBarry Smith 
666329f5518SBarry Smith 
667329f5518SBarry Smith .keywords: SNES, matrix-free, parameters
668329f5518SBarry Smith 
669329f5518SBarry Smith .seealso: MatCreateSNESMF(),MatSNESMFGetH(),
670329f5518SBarry Smith           MatSNESMFSetHHistory(), MatSNESMFResetHHistory(),
671329f5518SBarry Smith           MatSNESMFKSPMonitor()
672329f5518SBarry Smith @*/
673329f5518SBarry Smith int MatSNESMFSetPeriod(Mat mat,int period)
674329f5518SBarry Smith {
675329f5518SBarry Smith   MatSNESMFCtx ctx;
676329f5518SBarry Smith   int          ierr;
677329f5518SBarry Smith 
678329f5518SBarry Smith   PetscFunctionBegin;
679329f5518SBarry Smith   ierr = MatShellGetContext(mat,(void **)&ctx);CHKERRQ(ierr);
680329f5518SBarry Smith   if (ctx) {
681329f5518SBarry Smith     ctx->recomputeperiod = period;
682329f5518SBarry Smith   }
683329f5518SBarry Smith   PetscFunctionReturn(0);
684329f5518SBarry Smith }
685329f5518SBarry Smith 
686329f5518SBarry Smith #undef __FUNC__
687b2863d3aSBarry Smith #define __FUNC__ /*<a name=""></a>*/"MatSNESMFSetFunctionError"
688a4d4d686SBarry Smith /*@
6895a655dc6SBarry Smith    MatSNESMFSetFunctionError - Sets the error_rel for the approximation of
690a4d4d686SBarry Smith    matrix-vector products using finite differences.
691a4d4d686SBarry Smith 
692a4d4d686SBarry Smith    Collective on Mat
693a4d4d686SBarry Smith 
694a4d4d686SBarry Smith    Input Parameters:
6955a655dc6SBarry Smith +  mat - the matrix free matrix created via MatCreateSNESMF()
6969a6cb015SBarry Smith -  error_rel - relative error (should be set to the square root of
697a4d4d686SBarry Smith                the relative error in the function evaluations)
698a4d4d686SBarry Smith 
69915091d37SBarry Smith    Options Database Keys:
70015091d37SBarry Smith +  -snes_mf_err <error_rel> - Sets error_rel
70115091d37SBarry Smith 
70215091d37SBarry Smith    Level: advanced
70315091d37SBarry Smith 
704a4d4d686SBarry Smith    Notes:
705a4d4d686SBarry Smith    The default matrix-free matrix-vector product routine computes
706a4d4d686SBarry Smith .vb
70765f2ba5bSLois Curfman McInnes      F'(u)*a = [F(u+h*a) - F(u)]/h where
708a4d4d686SBarry Smith      h = error_rel*u'a/||a||^2                        if  |u'a| > umin*||a||_{1}
709a4d4d686SBarry Smith        = error_rel*umin*sign(u'a)*||a||_{1}/||a||^2   else
710a4d4d686SBarry Smith .ve
711a4d4d686SBarry Smith 
712a4d4d686SBarry Smith .keywords: SNES, matrix-free, parameters
713a4d4d686SBarry Smith 
7145a655dc6SBarry Smith .seealso: MatCreateSNESMF(),MatSNESMFGetH(),
7155a655dc6SBarry Smith           MatSNESMFSetHHistory(), MatSNESMFResetHHistory(),
7165a655dc6SBarry Smith           MatSNESMFKSPMonitor()
717a4d4d686SBarry Smith @*/
718329f5518SBarry Smith int MatSNESMFSetFunctionError(Mat mat,PetscReal error)
719a4d4d686SBarry Smith {
7205a655dc6SBarry Smith   MatSNESMFCtx ctx;
721a4d4d686SBarry Smith   int          ierr;
722a4d4d686SBarry Smith 
723a4d4d686SBarry Smith   PetscFunctionBegin;
724a4d4d686SBarry Smith   ierr = MatShellGetContext(mat,(void **)&ctx);CHKERRQ(ierr);
725a4d4d686SBarry Smith   if (ctx) {
726a4d4d686SBarry Smith     if (error != PETSC_DEFAULT) ctx->error_rel = error;
727a4d4d686SBarry Smith   }
728a4d4d686SBarry Smith   PetscFunctionReturn(0);
729a4d4d686SBarry Smith }
730a4d4d686SBarry Smith 
731a4d4d686SBarry Smith #undef __FUNC__
732b2863d3aSBarry Smith #define __FUNC__ /*<a name=""></a>*/"MatSNESMFAddNullSpace"
733a4d4d686SBarry Smith /*@
73465f2ba5bSLois Curfman McInnes    MatSNESMFAddNullSpace - Provides a null space that an operator is
73565f2ba5bSLois Curfman McInnes    supposed to have.  Since roundoff will create a small component in
73665f2ba5bSLois Curfman McInnes    the null space, if you know the null space you may have it
73765f2ba5bSLois Curfman McInnes    automatically removed.
738a4d4d686SBarry Smith 
739a4d4d686SBarry Smith    Collective on Mat
740a4d4d686SBarry Smith 
741a4d4d686SBarry Smith    Input Parameters:
742a4d4d686SBarry Smith +  J - the matrix-free matrix context
74374637425SBarry Smith -  nullsp - object created with MatNullSpaceCreate()
744a4d4d686SBarry Smith 
74515091d37SBarry Smith    Level: advanced
74615091d37SBarry Smith 
747a4d4d686SBarry Smith .keywords: SNES, matrix-free, null space
748a4d4d686SBarry Smith 
74974637425SBarry Smith .seealso: MatNullSpaceCreate(), MatSNESMFGetH(), MatCreateSNESMF(),
7505a655dc6SBarry Smith           MatSNESMFSetHHistory(), MatSNESMFResetHHistory(),
7515a655dc6SBarry Smith           MatSNESMFKSPMonitor(), MatSNESMFErrorRel()
752a4d4d686SBarry Smith @*/
75374637425SBarry Smith int MatSNESMFAddNullSpace(Mat J,MatNullSpace nullsp)
754a4d4d686SBarry Smith {
755a4d4d686SBarry Smith   int          ierr;
7565a655dc6SBarry Smith   MatSNESMFCtx ctx;
757a4d4d686SBarry Smith   MPI_Comm     comm;
758a4d4d686SBarry Smith 
759a4d4d686SBarry Smith   PetscFunctionBegin;
7602d0c0e3bSBarry Smith   ierr = PetscObjectGetComm((PetscObject)J,&comm);CHKERRQ(ierr);
761a4d4d686SBarry Smith 
762a4d4d686SBarry Smith   ierr = MatShellGetContext(J,(void **)&ctx);CHKERRQ(ierr);
763a4d4d686SBarry Smith   /* no context indicates that it is not the "matrix free" matrix type */
764a4d4d686SBarry Smith   if (!ctx) PetscFunctionReturn(0);
76585614651SBarry Smith   ctx->sp = nullsp;
76685614651SBarry Smith   ierr = PetscObjectReference((PetscObject)nullsp);CHKERRQ(ierr);
767a4d4d686SBarry Smith   PetscFunctionReturn(0);
768a4d4d686SBarry Smith }
769a4d4d686SBarry Smith 
770a4d4d686SBarry Smith #undef __FUNC__
771b2863d3aSBarry Smith #define __FUNC__ /*<a name=""></a>*/"MatSNESMFSetHHistory"
772a4d4d686SBarry Smith /*@
77365f2ba5bSLois Curfman McInnes    MatSNESMFSetHHistory - Sets an array to collect a history of the
77465f2ba5bSLois Curfman McInnes    differencing values (h) computed for the matrix-free product.
775a4d4d686SBarry Smith 
776a4d4d686SBarry Smith    Collective on Mat
777a4d4d686SBarry Smith 
778a4d4d686SBarry Smith    Input Parameters:
779a4d4d686SBarry Smith +  J - the matrix-free matrix context
78065f2ba5bSLois Curfman McInnes .  histroy - space to hold the history
78165f2ba5bSLois Curfman McInnes -  nhistory - number of entries in history, if more entries are generated than
78265f2ba5bSLois Curfman McInnes               nhistory, then the later ones are discarded
783a4d4d686SBarry Smith 
78415091d37SBarry Smith    Level: advanced
78515091d37SBarry Smith 
786a4d4d686SBarry Smith    Notes:
78765f2ba5bSLois Curfman McInnes    Use MatSNESMFResetHHistory() to reset the history counter and collect
78865f2ba5bSLois Curfman McInnes    a new batch of differencing parameters, h.
789a4d4d686SBarry Smith 
790a4d4d686SBarry Smith .keywords: SNES, matrix-free, h history, differencing history
791a4d4d686SBarry Smith 
7925a655dc6SBarry Smith .seealso: MatSNESMFGetH(), MatCreateSNESMF(),
7935a655dc6SBarry Smith           MatSNESMFResetHHistory(),
7945a655dc6SBarry Smith           MatSNESMFKSPMonitor(), MatSNESMFSetFunctionError()
795a4d4d686SBarry Smith 
796a4d4d686SBarry Smith @*/
7975a655dc6SBarry Smith int MatSNESMFSetHHistory(Mat J,Scalar *history,int nhistory)
798a4d4d686SBarry Smith {
799a4d4d686SBarry Smith   int          ierr;
8005a655dc6SBarry Smith   MatSNESMFCtx ctx;
801a4d4d686SBarry Smith 
802a4d4d686SBarry Smith   PetscFunctionBegin;
803a4d4d686SBarry Smith 
804a4d4d686SBarry Smith   ierr = MatShellGetContext(J,(void **)&ctx);CHKERRQ(ierr);
805a4d4d686SBarry Smith   /* no context indicates that it is not the "matrix free" matrix type */
806a4d4d686SBarry Smith   if (!ctx) PetscFunctionReturn(0);
807a4d4d686SBarry Smith   ctx->historyh    = history;
808a4d4d686SBarry Smith   ctx->maxcurrenth = nhistory;
809a4d4d686SBarry Smith   ctx->currenth    = 0;
810a4d4d686SBarry Smith 
811a4d4d686SBarry Smith   PetscFunctionReturn(0);
812a4d4d686SBarry Smith }
813a4d4d686SBarry Smith 
814a4d4d686SBarry Smith #undef __FUNC__
815b2863d3aSBarry Smith #define __FUNC__ /*<a name=""></a>*/"MatSNESMFResetHHistory"
816a4d4d686SBarry Smith /*@
8175a655dc6SBarry Smith    MatSNESMFResetHHistory - Resets the counter to zero to begin
818a4d4d686SBarry Smith    collecting a new set of differencing histories.
819a4d4d686SBarry Smith 
820a4d4d686SBarry Smith    Collective on Mat
821a4d4d686SBarry Smith 
822a4d4d686SBarry Smith    Input Parameters:
823a4d4d686SBarry Smith .  J - the matrix-free matrix context
824a4d4d686SBarry Smith 
82515091d37SBarry Smith    Level: advanced
82615091d37SBarry Smith 
827a4d4d686SBarry Smith    Notes:
82865f2ba5bSLois Curfman McInnes    Use MatSNESMFSetHHistory() to create the original history counter.
829a4d4d686SBarry Smith 
830a4d4d686SBarry Smith .keywords: SNES, matrix-free, h history, differencing history
831a4d4d686SBarry Smith 
8325a655dc6SBarry Smith .seealso: MatSNESMFGetH(), MatCreateSNESMF(),
8335a655dc6SBarry Smith           MatSNESMFSetHHistory(),
8345a655dc6SBarry Smith           MatSNESMFKSPMonitor(), MatSNESMFSetFunctionError()
835a4d4d686SBarry Smith 
836a4d4d686SBarry Smith @*/
8375a655dc6SBarry Smith int MatSNESMFResetHHistory(Mat J)
838a4d4d686SBarry Smith {
839a4d4d686SBarry Smith   int          ierr;
8405a655dc6SBarry Smith   MatSNESMFCtx ctx;
841a4d4d686SBarry Smith 
842a4d4d686SBarry Smith   PetscFunctionBegin;
843a4d4d686SBarry Smith 
844a4d4d686SBarry Smith   ierr = MatShellGetContext(J,(void **)&ctx);CHKERRQ(ierr);
845a4d4d686SBarry Smith   /* no context indicates that it is not the "matrix free" matrix type */
846a4d4d686SBarry Smith   if (!ctx) PetscFunctionReturn(0);
847be726c96SBarry Smith   ctx->ncurrenth    = 0;
848a4d4d686SBarry Smith 
849a4d4d686SBarry Smith   PetscFunctionReturn(0);
850a4d4d686SBarry Smith }
851a4d4d686SBarry Smith 
8521d1367b7SBarry Smith #undef __FUNC__
8531d1367b7SBarry Smith #define __FUNC__ /*<a name=""></a>*/"MatSNESMFFormJacobian"
8541d1367b7SBarry Smith int MatSNESMFFormJacobian(SNES snes,Vec x,Mat *jac,Mat *B,MatStructure *flag,void *dummy)
8551d1367b7SBarry Smith {
8561d1367b7SBarry Smith   int ierr;
8571d1367b7SBarry Smith   PetscFunctionBegin;
8581d1367b7SBarry Smith   ierr = MatAssemblyBegin(*jac,MAT_FINAL_ASSEMBLY);CHKERRQ(ierr);
8591d1367b7SBarry Smith   ierr = MatAssemblyEnd(*jac,MAT_FINAL_ASSEMBLY);CHKERRQ(ierr);
8601d1367b7SBarry Smith   PetscFunctionReturn(0);
8611d1367b7SBarry Smith }
8621d1367b7SBarry Smith 
8631d1367b7SBarry Smith #undef __FUNC__
8641d1367b7SBarry Smith #define __FUNC__ /*<a name=""></a>*/"MatSNESMFSetBase"
8651d1367b7SBarry Smith int MatSNESMFSetBase(Mat J,Vec U)
8661d1367b7SBarry Smith {
8671d1367b7SBarry Smith   int          ierr;
8681d1367b7SBarry Smith   MatSNESMFCtx ctx;
8691d1367b7SBarry Smith 
8701d1367b7SBarry Smith   PetscFunctionBegin;
8711d1367b7SBarry Smith   PetscValidHeaderSpecific(J,MAT_COOKIE);
8721d1367b7SBarry Smith   PetscValidHeaderSpecific(U,VEC_COOKIE);
8731d1367b7SBarry Smith 
8741d1367b7SBarry Smith   ierr = MatShellGetContext(J,(void **)&ctx);CHKERRQ(ierr);
8751d1367b7SBarry Smith   ctx->current_u = U;
8761d1367b7SBarry Smith   PetscFunctionReturn(0);
8771d1367b7SBarry Smith }
878