xref: /petsc/src/snes/mf/snesmfj.c (revision cf3bea4382c8f7f959bc014fa0e432f3e21e4969)
1*cf3bea43SBarry Smith /*$Id: snesmfj.c,v 1.121 2001/05/22 03:29:12 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 
6b0a32e0cSBarry Smith PetscFList      MatSNESMPetscFList              = 0;
74c49b128SBarry Smith PetscTruth MatSNESMFRegisterAllCalled = PETSC_FALSE;
8a4d4d686SBarry Smith 
94a2ae208SSatish Balay #undef __FUNCT__
104a2ae208SSatish Balay #define __FUNCT__ "MatSNESMFSetType"
11fd4bdd07SBarry Smith /*@C
1265f2ba5bSLois Curfman McInnes     MatSNESMFSetType - Sets the method that is used to compute the
13b0a32e0cSBarry Smith     differencing parameter for finite differene 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 
55b9617806SBarry Smith   ierr =  PetscFListFind(ctx->comm,MatSNESMPetscFList,ftype,(void (**)(void)) &r);CHKERRQ(ierr);
569a6cb015SBarry Smith 
5729bbc08cSBarry 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:
70fed8bd04SBarry Smith    int MatSNESMFRegisterDynamic(char *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 
1044a2ae208SSatish Balay #undef __FUNCT__
1054a2ae208SSatish Balay #define __FUNCT__ "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;
112b0a32e0cSBarry Smith   ierr = PetscFListConcat(path,name,fullname);CHKERRQ(ierr);
113b9617806SBarry Smith   ierr = PetscFListAdd(&MatSNESMPetscFList,sname,fullname,(void (*)())function);CHKERRQ(ierr);
1149a6cb015SBarry Smith   PetscFunctionReturn(0);
1159a6cb015SBarry Smith }
1169a6cb015SBarry Smith 
1179a6cb015SBarry Smith 
1184a2ae208SSatish Balay #undef __FUNCT__
1194a2ae208SSatish Balay #define __FUNCT__ "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;
137b0a32e0cSBarry Smith   if (MatSNESMPetscFList) {
138b0a32e0cSBarry Smith     ierr = PetscFListDestroy(&MatSNESMPetscFList);CHKERRQ(ierr);
139b0a32e0cSBarry Smith     MatSNESMPetscFList = 0;
1409a6cb015SBarry Smith   }
1414c49b128SBarry Smith   MatSNESMFRegisterAllCalled = PETSC_FALSE;
1429a6cb015SBarry Smith   PetscFunctionReturn(0);
1439a6cb015SBarry Smith }
1449a6cb015SBarry Smith 
1459a6cb015SBarry Smith /* ----------------------------------------------------------------------------------------*/
1464a2ae208SSatish Balay #undef __FUNCT__
1474a2ae208SSatish Balay #define __FUNCT__ "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 
1624a2ae208SSatish Balay #undef __FUNCT__
1634a2ae208SSatish Balay #define __FUNCT__ "MatSNESMFView_Private"
16439e2f89bSBarry Smith /*
1655a655dc6SBarry Smith    MatSNESMFView_Private - Views matrix-free parameters.
1668f6e3e37SBarry Smith 
16739e2f89bSBarry Smith */
168b0a32e0cSBarry Smith int MatSNESMFView_Private(Mat J,PetscViewer 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);
176b0a32e0cSBarry Smith   ierr = PetscTypeCompare((PetscObject)viewer,PETSC_VIEWER_ASCII,&isascii);CHKERRQ(ierr);
1770f5bd95cSBarry Smith   if (isascii) {
178b0a32e0cSBarry Smith      ierr = PetscViewerASCIIPrintf(viewer,"  SNES matrix-free approximation:\n");CHKERRQ(ierr);
179b0a32e0cSBarry Smith      ierr = PetscViewerASCIIPrintf(viewer,"    err=%g (relative error in function evaluation)\n",ctx->error_rel);CHKERRQ(ierr);
180473c83c3SBarry Smith      if (!ctx->type_name) {
181b0a32e0cSBarry Smith        ierr = PetscViewerASCIIPrintf(viewer,"    The compute h routine has not yet been set\n");CHKERRQ(ierr);
182473c83c3SBarry Smith      } else {
183b0a32e0cSBarry Smith        ierr = PetscViewerASCIIPrintf(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 {
18929bbc08cSBarry 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 
1944a2ae208SSatish Balay #undef __FUNCT__
1954a2ae208SSatish Balay #define __FUNCT__ "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);
211b0a32e0cSBarry Smith   if (j->usesnes) {
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);
21729bbc08cSBarry Smith     } else SETERRQ(PETSC_ERR_ARG_OUTOFRANGE,"Invalid method class");
2181d1367b7SBarry Smith   }
219be726c96SBarry Smith   PetscFunctionReturn(0);
220be726c96SBarry Smith }
221be726c96SBarry Smith 
222c481317fSBarry Smith 
2234a2ae208SSatish Balay #undef __FUNCT__
2244a2ae208SSatish Balay #define __FUNCT__ "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. */
247b0a32e0cSBarry Smith   ierr = PetscLogEventBegin(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)
266b0a32e0cSBarry Smith   PetscLogInfo(mat,"MatSNESMFMult_Private:Current differencing parameter: %g + %g i\n",PetscRealPart(h),PetscImaginaryPart(h));
267a4d4d686SBarry Smith #else
268b0a32e0cSBarry Smith   PetscLogInfo(mat,"MatSNESMFMult_Private:Current differencing parameter: %15.12e\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 
278b0a32e0cSBarry Smith   if (ctx->usesnes) {
27985614651SBarry Smith     if (snes->method_class == SNES_NONLINEAR_EQUATIONS) {
28085614651SBarry Smith       eval_fct = SNESComputeFunction;
28185614651SBarry Smith     } else if (snes->method_class == SNES_UNCONSTRAINED_MINIMIZATION) {
28285614651SBarry Smith       eval_fct = SNESComputeGradient;
28329bbc08cSBarry Smith     } else SETERRQ(PETSC_ERR_ARG_OUTOFRANGE,"Invalid method class");
2841d1367b7SBarry Smith     F    = ctx->current_f;
28529bbc08cSBarry Smith     if (!F) SETERRQ(1,"You must call MatAssembly() even on matrix-free matrices");
28639903ad8SBarry Smith     ierr = (*eval_fct)(snes,w,y);CHKERRQ(ierr);
28785614651SBarry Smith   } else {
28885614651SBarry Smith     F = ctx->funcvec;
28985614651SBarry Smith     /* compute func(U) as base for differencing */
29085614651SBarry Smith     if (ctx->ncurrenth == 1) {
29185614651SBarry Smith       ierr = (*ctx->func)(snes,U,F,ctx->funcctx);CHKERRQ(ierr);
29285614651SBarry Smith     }
29385614651SBarry Smith     ierr = (*ctx->func)(snes,w,y,ctx->funcctx);CHKERRQ(ierr);
29485614651SBarry Smith   }
295a4d4d686SBarry Smith 
296a4d4d686SBarry Smith   ierr = VecAXPY(&mone,F,y);CHKERRQ(ierr);
297a4d4d686SBarry Smith   h    = 1.0/h;
298a4d4d686SBarry Smith   ierr = VecScale(&h,y);CHKERRQ(ierr);
29974637425SBarry Smith   if (ctx->sp) {ierr = MatNullSpaceRemove(ctx->sp,y,PETSC_NULL);CHKERRQ(ierr);}
300a4d4d686SBarry Smith 
301b0a32e0cSBarry Smith   ierr = PetscLogEventEnd(MAT_MatrixFreeMult,a,y,0,0);CHKERRQ(ierr);
302a4d4d686SBarry Smith   PetscFunctionReturn(0);
303a4d4d686SBarry Smith }
304a4d4d686SBarry Smith 
3054a2ae208SSatish Balay #undef __FUNCT__
3064a2ae208SSatish Balay #define __FUNCT__ "MatCreateSNESMF"
307a4d4d686SBarry Smith /*@C
30865f2ba5bSLois Curfman McInnes    MatCreateSNESMF - Creates a matrix-free matrix context for use with
30965f2ba5bSLois Curfman McInnes    a SNES solver.  This matrix can be used as the Jacobian argument for
31065f2ba5bSLois Curfman McInnes    the routine SNESSetJacobian().
311a4d4d686SBarry Smith 
312a4d4d686SBarry Smith    Collective on SNES and Vec
313a4d4d686SBarry Smith 
314a4d4d686SBarry Smith    Input Parameters:
315a4d4d686SBarry Smith +  snes - the SNES context
316a4d4d686SBarry Smith -  x - vector where SNES solution is to be stored.
317a4d4d686SBarry Smith 
318a4d4d686SBarry Smith    Output Parameter:
319a4d4d686SBarry Smith .  J - the matrix-free matrix
320a4d4d686SBarry Smith 
32115091d37SBarry Smith    Level: advanced
32215091d37SBarry Smith 
323a4d4d686SBarry Smith    Notes:
324a4d4d686SBarry Smith    The matrix-free matrix context merely contains the function pointers
325a4d4d686SBarry Smith    and work space for performing finite difference approximations of
32665f2ba5bSLois Curfman McInnes    Jacobian-vector products, F'(u)*a,
3279a6cb015SBarry Smith 
3289a6cb015SBarry Smith    The default code uses the following approach to compute h
329a4d4d686SBarry Smith 
330a4d4d686SBarry Smith .vb
33165f2ba5bSLois Curfman McInnes      F'(u)*a = [F(u+h*a) - F(u)]/h where
332a4d4d686SBarry Smith      h = error_rel*u'a/||a||^2                        if  |u'a| > umin*||a||_{1}
333a4d4d686SBarry Smith        = error_rel*umin*sign(u'a)*||a||_{1}/||a||^2   otherwise
334a4d4d686SBarry Smith  where
335a4d4d686SBarry Smith      error_rel = square root of relative error in function evaluation
336a4d4d686SBarry Smith      umin = minimum iterate parameter
337a4d4d686SBarry Smith .ve
338a4d4d686SBarry Smith 
3395a655dc6SBarry Smith    The user can set the error_rel via MatSNESMFSetFunctionError() and
34065f2ba5bSLois Curfman McInnes    umin via MatSNESMFDefaultSetUmin(); see the nonlinear solvers chapter
34165f2ba5bSLois Curfman McInnes    of the users manual for details.
342a4d4d686SBarry Smith 
343a4d4d686SBarry Smith    The user should call MatDestroy() when finished with the matrix-free
344a4d4d686SBarry Smith    matrix context.
345a4d4d686SBarry Smith 
346a4d4d686SBarry Smith    Options Database Keys:
347a4d4d686SBarry Smith +  -snes_mf_err <error_rel> - Sets error_rel
3489a6cb015SBarry Smith .  -snes_mf_unim <umin> - Sets umin (for default PETSc routine that computes h only)
349a4d4d686SBarry Smith -  -snes_mf_ksp_monitor - KSP monitor routine that prints differencing h
350a4d4d686SBarry Smith 
351a4d4d686SBarry Smith .keywords: SNES, default, matrix-free, create, matrix
352a4d4d686SBarry Smith 
3535a655dc6SBarry Smith .seealso: MatDestroy(), MatSNESMFSetFunctionError(), MatSNESMFDefaultSetUmin()
3541d1367b7SBarry Smith           MatSNESMFSetHHistory(), MatSNESMFResetHHistory(), MatCreateMF(),
355fed8bd04SBarry Smith           MatSNESMFGetH(),MatSNESMFKSPMonitor(), MatSNESMFRegisterDynamic), MatSNESMFComputeJacobian()
356a4d4d686SBarry Smith 
357a4d4d686SBarry Smith @*/
3585a655dc6SBarry Smith int MatCreateSNESMF(SNES snes,Vec x,Mat *J)
359a4d4d686SBarry Smith {
3601d1367b7SBarry Smith   MatSNESMFCtx mfctx;
3611d1367b7SBarry Smith   int          ierr;
3621d1367b7SBarry Smith 
3631d1367b7SBarry Smith   PetscFunctionBegin;
3641d1367b7SBarry Smith   ierr = MatCreateMF(x,J);CHKERRQ(ierr);
3651d1367b7SBarry Smith   ierr = MatShellGetContext(*J,(void **)&mfctx);CHKERRQ(ierr);
3661d1367b7SBarry Smith   mfctx->snes    = snes;
367b0a32e0cSBarry Smith   mfctx->usesnes = PETSC_TRUE;
368b0a32e0cSBarry Smith   PetscLogObjectParent(snes,*J);
3691d1367b7SBarry Smith   PetscFunctionReturn(0);
3701d1367b7SBarry Smith }
3711d1367b7SBarry Smith 
372*cf3bea43SBarry Smith EXTERN_C_BEGIN
373*cf3bea43SBarry Smith #undef __FUNCT__
374*cf3bea43SBarry Smith #define __FUNCT__ "MatSNESMFSetBase_FD"
375*cf3bea43SBarry Smith int MatSNESMFSetBase_FD(Mat J,Vec U)
376*cf3bea43SBarry Smith {
377*cf3bea43SBarry Smith   int          ierr;
378*cf3bea43SBarry Smith   MatSNESMFCtx ctx;
379*cf3bea43SBarry Smith 
380*cf3bea43SBarry Smith   PetscFunctionBegin;
381*cf3bea43SBarry Smith   ierr = MatSNESMFResetHHistory(J);CHKERRQ(ierr);
382*cf3bea43SBarry Smith   ierr = MatShellGetContext(J,(void **)&ctx);CHKERRQ(ierr);
383*cf3bea43SBarry Smith   ctx->current_u = U;
384*cf3bea43SBarry Smith   ctx->usesnes   = PETSC_FALSE;
385*cf3bea43SBarry Smith   PetscFunctionReturn(0);
386*cf3bea43SBarry Smith }
387*cf3bea43SBarry Smith EXTERN_C_END
388*cf3bea43SBarry Smith 
3894a2ae208SSatish Balay #undef __FUNCT__
3904a2ae208SSatish Balay #define __FUNCT__ "MatCreateMF"
3911d1367b7SBarry Smith /*@C
3921d1367b7SBarry Smith    MatCreateMF - Creates a matrix-free matrix. See also MatCreateSNESMF()
3931d1367b7SBarry Smith 
3941d1367b7SBarry Smith    Collective on Vec
3951d1367b7SBarry Smith 
3961d1367b7SBarry Smith    Input Parameters:
3971d1367b7SBarry Smith .  x - vector that defines layout of the vectors and matrices
3981d1367b7SBarry Smith 
3991d1367b7SBarry Smith    Output Parameter:
4001d1367b7SBarry Smith .  J - the matrix-free matrix
4011d1367b7SBarry Smith 
4021d1367b7SBarry Smith    Level: advanced
4031d1367b7SBarry Smith 
4041d1367b7SBarry Smith    Notes:
4051d1367b7SBarry Smith    The matrix-free matrix context merely contains the function pointers
4061d1367b7SBarry Smith    and work space for performing finite difference approximations of
4071d1367b7SBarry Smith    Jacobian-vector products, F'(u)*a,
4081d1367b7SBarry Smith 
4091d1367b7SBarry Smith    The default code uses the following approach to compute h
4101d1367b7SBarry Smith 
4111d1367b7SBarry Smith .vb
4121d1367b7SBarry Smith      F'(u)*a = [F(u+h*a) - F(u)]/h where
4131d1367b7SBarry Smith      h = error_rel*u'a/||a||^2                        if  |u'a| > umin*||a||_{1}
4141d1367b7SBarry Smith        = error_rel*umin*sign(u'a)*||a||_{1}/||a||^2   otherwise
4151d1367b7SBarry Smith  where
4161d1367b7SBarry Smith      error_rel = square root of relative error in function evaluation
4171d1367b7SBarry Smith      umin = minimum iterate parameter
4181d1367b7SBarry Smith .ve
4191d1367b7SBarry Smith 
4201d1367b7SBarry Smith    The user can set the error_rel via MatSNESMFSetFunctionError() and
4211d1367b7SBarry Smith    umin via MatSNESMFDefaultSetUmin(); see the nonlinear solvers chapter
4221d1367b7SBarry Smith    of the users manual for details.
4231d1367b7SBarry Smith 
4241d1367b7SBarry Smith    The user should call MatDestroy() when finished with the matrix-free
4251d1367b7SBarry Smith    matrix context.
4261d1367b7SBarry Smith 
4271d1367b7SBarry Smith    Options Database Keys:
4281d1367b7SBarry Smith +  -snes_mf_err <error_rel> - Sets error_rel
4291d1367b7SBarry Smith .  -snes_mf_unim <umin> - Sets umin (for default PETSc routine that computes h only)
4301d1367b7SBarry Smith -  -snes_mf_ksp_monitor - KSP monitor routine that prints differencing h
4311d1367b7SBarry Smith 
4321d1367b7SBarry Smith .keywords: default, matrix-free, create, matrix
4331d1367b7SBarry Smith 
4341d1367b7SBarry Smith .seealso: MatDestroy(), MatSNESMFSetFunctionError(), MatSNESMFDefaultSetUmin()
4351d1367b7SBarry Smith           MatSNESMFSetHHistory(), MatSNESMFResetHHistory(), MatCreateSNESMF(),
436fed8bd04SBarry Smith           MatSNESMFGetH(),MatSNESMFKSPMonitor(), MatSNESMFRegisterDynamic),, MatSNESMFComputeJacobian()
4371d1367b7SBarry Smith 
4381d1367b7SBarry Smith @*/
4391d1367b7SBarry Smith int MatCreateMF(Vec x,Mat *J)
4401d1367b7SBarry Smith {
441a4d4d686SBarry Smith   MPI_Comm     comm;
4425a655dc6SBarry Smith   MatSNESMFCtx mfctx;
4439a6cb015SBarry Smith   int          n,nloc,ierr;
444a4d4d686SBarry Smith 
445a4d4d686SBarry Smith   PetscFunctionBegin;
4461d1367b7SBarry Smith   ierr = PetscObjectGetComm((PetscObject)x,&comm);CHKERRQ(ierr);
4471d1367b7SBarry Smith   PetscHeaderCreate(mfctx,_p_MatSNESMFCtx,struct _MFOps,MATSNESMFCTX_COOKIE,0,"SNESMF",comm,MatSNESMFDestroy_Private,MatSNESMFView_Private);
448b0a32e0cSBarry Smith   PetscLogObjectCreate(mfctx);
449a4d4d686SBarry Smith   mfctx->sp              = 0;
4501d1367b7SBarry Smith   mfctx->snes            = 0;
451329f5518SBarry Smith   mfctx->error_rel       = 1.e-8; /* assumes PetscReal precision */
452329f5518SBarry Smith   mfctx->recomputeperiod = 1;
453329f5518SBarry Smith   mfctx->count           = 0;
454a4d4d686SBarry Smith   mfctx->currenth        = 0.0;
455a4d4d686SBarry Smith   mfctx->historyh        = PETSC_NULL;
456a4d4d686SBarry Smith   mfctx->ncurrenth       = 0;
457a4d4d686SBarry Smith   mfctx->maxcurrenth     = 0;
4586831982aSBarry Smith   mfctx->type_name       = 0;
459b0a32e0cSBarry Smith   mfctx->usesnes         = PETSC_FALSE;
460a4d4d686SBarry Smith 
4619a6cb015SBarry Smith   /*
4629a6cb015SBarry Smith      Create the empty data structure to contain compute-h routines.
4639a6cb015SBarry Smith      These will be filled in below from the command line options or
4645a655dc6SBarry Smith      a later call with MatSNESMFSetType() or if that is not called
4655a655dc6SBarry Smith      then it will default in the first use of MatSNESMFMult_private()
4669a6cb015SBarry Smith   */
4679a6cb015SBarry Smith   mfctx->ops->compute        = 0;
4689a6cb015SBarry Smith   mfctx->ops->destroy        = 0;
4699a6cb015SBarry Smith   mfctx->ops->view           = 0;
4709a6cb015SBarry Smith   mfctx->ops->setfromoptions = 0;
4719a6cb015SBarry Smith   mfctx->hctx                = 0;
4729a6cb015SBarry Smith 
47385614651SBarry Smith   mfctx->func                = 0;
47485614651SBarry Smith   mfctx->funcctx             = 0;
47585614651SBarry Smith   mfctx->funcvec             = 0;
47685614651SBarry Smith 
477a4d4d686SBarry Smith   ierr = VecDuplicate(x,&mfctx->w);CHKERRQ(ierr);
4781d1367b7SBarry Smith   ierr = VecGetSize(mfctx->w,&n);CHKERRQ(ierr);
4791d1367b7SBarry Smith   ierr = VecGetLocalSize(mfctx->w,&nloc);CHKERRQ(ierr);
480ffa0fd9eSBarry Smith   ierr = MatCreateShell(comm,nloc,nloc,n,n,mfctx,J);CHKERRQ(ierr);
48137bd1cefSSatish Balay   ierr = MatShellSetOperation(*J,MATOP_MULT,(void(*)())MatSNESMFMult_Private);CHKERRQ(ierr);
48237bd1cefSSatish Balay   ierr = MatShellSetOperation(*J,MATOP_DESTROY,(void(*)())MatSNESMFDestroy_Private);CHKERRQ(ierr);
48337bd1cefSSatish Balay   ierr = MatShellSetOperation(*J,MATOP_VIEW,(void(*)())MatSNESMFView_Private);CHKERRQ(ierr);
48437bd1cefSSatish Balay   ierr = MatShellSetOperation(*J,MATOP_ASSEMBLY_END,(void(*)())MatSNESMFAssemblyEnd_Private);CHKERRQ(ierr);
485*cf3bea43SBarry Smith   ierr = PetscObjectComposeFunctionDynamic((PetscObject)*J,"MatSNESMFSetBase_C","MatSNESMFSetBase_FD",MatSNESMFSetBase_FD);CHKERRQ(ierr);
486b0a32e0cSBarry Smith   PetscLogObjectParent(*J,mfctx->w);
4879a6cb015SBarry Smith 
4889a6cb015SBarry Smith   mfctx->mat = *J;
4899a6cb015SBarry Smith   PetscFunctionReturn(0);
4909a6cb015SBarry Smith }
4919a6cb015SBarry Smith 
4924a2ae208SSatish Balay #undef __FUNCT__
4934a2ae208SSatish Balay #define __FUNCT__ "MatSNESMFSetFromOptions"
4949a6cb015SBarry Smith /*@
4955a655dc6SBarry Smith    MatSNESMFSetFromOptions - Sets the MatSNESMF options from the command line
4969a6cb015SBarry Smith    parameter.
4979a6cb015SBarry Smith 
4989a6cb015SBarry Smith    Collective on Mat
4999a6cb015SBarry Smith 
5009a6cb015SBarry Smith    Input Parameters:
5015a655dc6SBarry Smith .  mat - the matrix obtained with MatCreateSNESMF()
5025a655dc6SBarry Smith 
5035a655dc6SBarry Smith    Options Database Keys:
5045a655dc6SBarry Smith +  -snes_mf_type - <default,wp>
5055a655dc6SBarry Smith -  -snes_mf_err - square root of estimated relative error in function evaluation
506329f5518SBarry Smith -  -snes_mf_period - how often h is recomputed, defaults to 1, everytime
5079a6cb015SBarry Smith 
50815091d37SBarry Smith    Level: advanced
50915091d37SBarry Smith 
5109a6cb015SBarry Smith .keywords: SNES, matrix-free, parameters
5119a6cb015SBarry Smith 
5125a655dc6SBarry Smith .seealso: MatCreateSNESMF(),MatSNESMFSetHHistory(),
5135a655dc6SBarry Smith           MatSNESMFResetHHistory(), MatSNESMFKSPMonitor()
5149a6cb015SBarry Smith @*/
5155a655dc6SBarry Smith int MatSNESMFSetFromOptions(Mat mat)
5169a6cb015SBarry Smith {
5175a655dc6SBarry Smith   MatSNESMFCtx mfctx;
518f1af5d2fSBarry Smith   int          ierr;
519f1af5d2fSBarry Smith   PetscTruth   flg;
520186905e3SBarry Smith   char         ftype[256];
5219a6cb015SBarry Smith 
5229a6cb015SBarry Smith   PetscFunctionBegin;
5239a6cb015SBarry Smith   ierr = MatShellGetContext(mat,(void **)&mfctx);CHKERRQ(ierr);
5249a6cb015SBarry Smith   if (mfctx) {
525186905e3SBarry Smith     if (!MatSNESMFRegisterAllCalled) {ierr = MatSNESMFRegisterAll(PETSC_NULL);CHKERRQ(ierr);}
526186905e3SBarry Smith 
527b0a32e0cSBarry Smith     ierr = PetscOptionsBegin(mfctx->comm,mfctx->prefix,"Set matrix free computation parameters","MatSNESMF");CHKERRQ(ierr);
528b0a32e0cSBarry Smith       ierr = PetscOptionsList("-snes_mf_type","Matrix free type","MatSNESMFSetType",MatSNESMPetscFList,mfctx->type_name,ftype,256,&flg);CHKERRQ(ierr);
5299a6cb015SBarry Smith       if (flg) {
5305a655dc6SBarry Smith         ierr = MatSNESMFSetType(mat,ftype);CHKERRQ(ierr);
5319a6cb015SBarry Smith       }
5329a6cb015SBarry Smith 
533b0a32e0cSBarry Smith       ierr = PetscOptionsDouble("-snes_mf_err","set sqrt relative error in function","MatSNESMFSetFunctionError",mfctx->error_rel,&mfctx->error_rel,0);CHKERRQ(ierr);
534b0a32e0cSBarry Smith       ierr = PetscOptionsInt("-snes_mf_period","how often h is recomputed","MatSNESMFSetPeriod",mfctx->recomputeperiod,&mfctx->recomputeperiod,0);CHKERRQ(ierr);
535186905e3SBarry Smith       if (mfctx->snes) {
536b0a32e0cSBarry Smith         ierr = PetscOptionsName("-snes_mf_ksp_monitor","Monitor matrix-free parameters","MatSNESMFKSPMonitor",&flg);CHKERRQ(ierr);
537186905e3SBarry Smith         if (flg) {
538186905e3SBarry Smith           SLES sles;
539186905e3SBarry Smith           KSP  ksp;
540186905e3SBarry Smith           ierr = SNESGetSLES(mfctx->snes,&sles);CHKERRQ(ierr);
541186905e3SBarry Smith           ierr = SLESGetKSP(sles,&ksp);CHKERRQ(ierr);
542186905e3SBarry Smith           ierr = KSPSetMonitor(ksp,MatSNESMFKSPMonitor,PETSC_NULL,0);CHKERRQ(ierr);
543186905e3SBarry Smith         }
544186905e3SBarry Smith       }
5459a6cb015SBarry Smith       if (mfctx->ops->setfromoptions) {
5469a6cb015SBarry Smith         ierr = (*mfctx->ops->setfromoptions)(mfctx);CHKERRQ(ierr);
5479a6cb015SBarry Smith       }
548b0a32e0cSBarry Smith     ierr = PetscOptionsEnd();CHKERRQ(ierr);
5494bbc92c1SBarry Smith 
5509a6cb015SBarry Smith   }
551a4d4d686SBarry Smith   PetscFunctionReturn(0);
552a4d4d686SBarry Smith }
553a4d4d686SBarry Smith 
5544a2ae208SSatish Balay #undef __FUNCT__
5554a2ae208SSatish Balay #define __FUNCT__ "MatSNESMFGetH"
556a4d4d686SBarry Smith /*@
55765f2ba5bSLois Curfman McInnes    MatSNESMFGetH - Gets the last value that was used as the differencing
558a4d4d686SBarry Smith    parameter.
559a4d4d686SBarry Smith 
560a4d4d686SBarry Smith    Not Collective
561a4d4d686SBarry Smith 
562a4d4d686SBarry Smith    Input Parameters:
5635a655dc6SBarry Smith .  mat - the matrix obtained with MatCreateSNESMF()
564a4d4d686SBarry Smith 
565a4d4d686SBarry Smith    Output Paramter:
566a4d4d686SBarry Smith .  h - the differencing step size
567a4d4d686SBarry Smith 
56815091d37SBarry Smith    Level: advanced
56915091d37SBarry Smith 
570a4d4d686SBarry Smith .keywords: SNES, matrix-free, parameters
571a4d4d686SBarry Smith 
5725a655dc6SBarry Smith .seealso: MatCreateSNESMF(),MatSNESMFSetHHistory(),
5735a655dc6SBarry Smith           MatSNESMFResetHHistory(),MatSNESMFKSPMonitor()
574a4d4d686SBarry Smith @*/
5755a655dc6SBarry Smith int MatSNESMFGetH(Mat mat,Scalar *h)
576a4d4d686SBarry Smith {
5775a655dc6SBarry Smith   MatSNESMFCtx ctx;
578a4d4d686SBarry Smith   int          ierr;
579a4d4d686SBarry Smith 
580a4d4d686SBarry Smith   PetscFunctionBegin;
581a4d4d686SBarry Smith   ierr = MatShellGetContext(mat,(void **)&ctx);CHKERRQ(ierr);
582a4d4d686SBarry Smith   if (ctx) {
583a4d4d686SBarry Smith     *h = ctx->currenth;
584a4d4d686SBarry Smith   }
585a4d4d686SBarry Smith   PetscFunctionReturn(0);
586a4d4d686SBarry Smith }
587a4d4d686SBarry Smith 
5884a2ae208SSatish Balay #undef __FUNCT__
5894a2ae208SSatish Balay #define __FUNCT__ "MatSNESMFKSPMonitor"
590a4d4d686SBarry Smith /*
5915a655dc6SBarry Smith    MatSNESMFKSPMonitor - A KSP monitor for use with the default PETSc
59265f2ba5bSLois Curfman McInnes    SNES matrix free routines. Prints the differencing parameter used at
59365f2ba5bSLois Curfman McInnes    each step.
594a4d4d686SBarry Smith */
595329f5518SBarry Smith int MatSNESMFKSPMonitor(KSP ksp,int n,PetscReal rnorm,void *dummy)
596a4d4d686SBarry Smith {
597a4d4d686SBarry Smith   PC             pc;
5985a655dc6SBarry Smith   MatSNESMFCtx   ctx;
599a4d4d686SBarry Smith   int            ierr;
600a4d4d686SBarry Smith   Mat            mat;
601a4d4d686SBarry Smith   MPI_Comm       comm;
602a4d4d686SBarry Smith   PetscTruth     nonzeroinitialguess;
603a4d4d686SBarry Smith 
604a4d4d686SBarry Smith   PetscFunctionBegin;
605a4d4d686SBarry Smith   ierr = PetscObjectGetComm((PetscObject)ksp,&comm);CHKERRQ(ierr);
606a4d4d686SBarry Smith   ierr = KSPGetPC(ksp,&pc);CHKERRQ(ierr);
607a4d4d686SBarry Smith   ierr = KSPGetInitialGuessNonzero(ksp,&nonzeroinitialguess);CHKERRQ(ierr);
608a4d4d686SBarry Smith   ierr = PCGetOperators(pc,&mat,PETSC_NULL,PETSC_NULL);CHKERRQ(ierr);
609a4d4d686SBarry Smith   ierr = MatShellGetContext(mat,(void **)&ctx);CHKERRQ(ierr);
6109a6cb015SBarry Smith   if (!ctx) {
61129bbc08cSBarry Smith     SETERRQ(1,"Matrix is not a matrix free shell matrix");
6129a6cb015SBarry Smith   }
613a4d4d686SBarry Smith   if (n > 0 || nonzeroinitialguess) {
614aa482453SBarry Smith #if defined(PETSC_USE_COMPLEX)
615d132466eSBarry Smith     ierr = PetscPrintf(comm,"%d KSP Residual norm %14.12e h %g + %g i\n",n,rnorm,
616329f5518SBarry Smith                 PetscRealPart(ctx->currenth),PetscImaginaryPart(ctx->currenth));CHKERRQ(ierr);
617a4d4d686SBarry Smith #else
618d132466eSBarry Smith     ierr = PetscPrintf(comm,"%d KSP Residual norm %14.12e h %g \n",n,rnorm,ctx->currenth);CHKERRQ(ierr);
619a4d4d686SBarry Smith #endif
620a4d4d686SBarry Smith   } else {
621d132466eSBarry Smith     ierr = PetscPrintf(comm,"%d KSP Residual norm %14.12e\n",n,rnorm);CHKERRQ(ierr);
622a4d4d686SBarry Smith   }
623a4d4d686SBarry Smith   PetscFunctionReturn(0);
624a4d4d686SBarry Smith }
625a4d4d686SBarry Smith 
6264a2ae208SSatish Balay #undef __FUNCT__
6274a2ae208SSatish Balay #define __FUNCT__ "MatSNESMFSetFunction"
62885614651SBarry Smith /*@C
62985614651SBarry Smith    MatSNESMFSetFunction - Sets the function used in applying the matrix free.
63085614651SBarry Smith 
63185614651SBarry Smith    Collective on Mat
63285614651SBarry Smith 
63385614651SBarry Smith    Input Parameters:
63485614651SBarry Smith +  mat - the matrix free matrix created via MatCreateSNESMF()
63585614651SBarry Smith .  v   - workspace vector
63685614651SBarry Smith .  func - the function to use
63785614651SBarry Smith -  funcctx - optional function context passed to function
63885614651SBarry Smith 
63985614651SBarry Smith    Level: advanced
64085614651SBarry Smith 
64185614651SBarry Smith    Notes:
64285614651SBarry Smith     If you use this you MUST call MatAssemblyBegin()/MatAssemblyEnd() on the matrix free
64385614651SBarry Smith     matrix inside your compute Jacobian routine
64485614651SBarry Smith 
64585614651SBarry Smith     If this is not set then it will use the function set with SNESSetFunction()
64685614651SBarry Smith 
64785614651SBarry Smith .keywords: SNES, matrix-free, function
64885614651SBarry Smith 
64985614651SBarry Smith .seealso: MatCreateSNESMF(),MatSNESMFGetH(),
65085614651SBarry Smith           MatSNESMFSetHHistory(), MatSNESMFResetHHistory(),
65185614651SBarry Smith           MatSNESMFKSPMonitor(), SNESetFunction()
65285614651SBarry Smith @*/
65385614651SBarry Smith int MatSNESMFSetFunction(Mat mat,Vec v,int (*func)(SNES,Vec,Vec,void *),void *funcctx)
65485614651SBarry Smith {
65585614651SBarry Smith   MatSNESMFCtx ctx;
65685614651SBarry Smith   int          ierr;
65785614651SBarry Smith 
65885614651SBarry Smith   PetscFunctionBegin;
65985614651SBarry Smith   ierr = MatShellGetContext(mat,(void **)&ctx);CHKERRQ(ierr);
66085614651SBarry Smith   if (ctx) {
66185614651SBarry Smith     ctx->func    = func;
66285614651SBarry Smith     ctx->funcctx = funcctx;
66385614651SBarry Smith     ctx->funcvec = v;
66485614651SBarry Smith   }
66585614651SBarry Smith   PetscFunctionReturn(0);
66685614651SBarry Smith }
66785614651SBarry Smith 
66885614651SBarry Smith 
6694a2ae208SSatish Balay #undef __FUNCT__
6704a2ae208SSatish Balay #define __FUNCT__ "MatSNESMFSetPeriod"
671329f5518SBarry Smith /*@
672329f5518SBarry Smith    MatSNESMFSetPeriod - Sets how often h is recomputed, by default it is everytime
673329f5518SBarry Smith 
674329f5518SBarry Smith    Collective on Mat
675329f5518SBarry Smith 
676329f5518SBarry Smith    Input Parameters:
677329f5518SBarry Smith +  mat - the matrix free matrix created via MatCreateSNESMF()
678329f5518SBarry Smith -  period - 1 for everytime, 2 for every second etc
679329f5518SBarry Smith 
680329f5518SBarry Smith    Options Database Keys:
681329f5518SBarry Smith +  -snes_mf_period <period>
682329f5518SBarry Smith 
683329f5518SBarry Smith    Level: advanced
684329f5518SBarry Smith 
685329f5518SBarry Smith 
686329f5518SBarry Smith .keywords: SNES, matrix-free, parameters
687329f5518SBarry Smith 
688329f5518SBarry Smith .seealso: MatCreateSNESMF(),MatSNESMFGetH(),
689329f5518SBarry Smith           MatSNESMFSetHHistory(), MatSNESMFResetHHistory(),
690329f5518SBarry Smith           MatSNESMFKSPMonitor()
691329f5518SBarry Smith @*/
692329f5518SBarry Smith int MatSNESMFSetPeriod(Mat mat,int period)
693329f5518SBarry Smith {
694329f5518SBarry Smith   MatSNESMFCtx ctx;
695329f5518SBarry Smith   int          ierr;
696329f5518SBarry Smith 
697329f5518SBarry Smith   PetscFunctionBegin;
698329f5518SBarry Smith   ierr = MatShellGetContext(mat,(void **)&ctx);CHKERRQ(ierr);
699329f5518SBarry Smith   if (ctx) {
700329f5518SBarry Smith     ctx->recomputeperiod = period;
701329f5518SBarry Smith   }
702329f5518SBarry Smith   PetscFunctionReturn(0);
703329f5518SBarry Smith }
704329f5518SBarry Smith 
7054a2ae208SSatish Balay #undef __FUNCT__
7064a2ae208SSatish Balay #define __FUNCT__ "MatSNESMFSetFunctionError"
707a4d4d686SBarry Smith /*@
7085a655dc6SBarry Smith    MatSNESMFSetFunctionError - Sets the error_rel for the approximation of
709a4d4d686SBarry Smith    matrix-vector products using finite differences.
710a4d4d686SBarry Smith 
711a4d4d686SBarry Smith    Collective on Mat
712a4d4d686SBarry Smith 
713a4d4d686SBarry Smith    Input Parameters:
7145a655dc6SBarry Smith +  mat - the matrix free matrix created via MatCreateSNESMF()
7159a6cb015SBarry Smith -  error_rel - relative error (should be set to the square root of
716a4d4d686SBarry Smith                the relative error in the function evaluations)
717a4d4d686SBarry Smith 
71815091d37SBarry Smith    Options Database Keys:
71915091d37SBarry Smith +  -snes_mf_err <error_rel> - Sets error_rel
72015091d37SBarry Smith 
72115091d37SBarry Smith    Level: advanced
72215091d37SBarry Smith 
723a4d4d686SBarry Smith    Notes:
724a4d4d686SBarry Smith    The default matrix-free matrix-vector product routine computes
725a4d4d686SBarry Smith .vb
72665f2ba5bSLois Curfman McInnes      F'(u)*a = [F(u+h*a) - F(u)]/h where
727a4d4d686SBarry Smith      h = error_rel*u'a/||a||^2                        if  |u'a| > umin*||a||_{1}
728a4d4d686SBarry Smith        = error_rel*umin*sign(u'a)*||a||_{1}/||a||^2   else
729a4d4d686SBarry Smith .ve
730a4d4d686SBarry Smith 
731a4d4d686SBarry Smith .keywords: SNES, matrix-free, parameters
732a4d4d686SBarry Smith 
7335a655dc6SBarry Smith .seealso: MatCreateSNESMF(),MatSNESMFGetH(),
7345a655dc6SBarry Smith           MatSNESMFSetHHistory(), MatSNESMFResetHHistory(),
7355a655dc6SBarry Smith           MatSNESMFKSPMonitor()
736a4d4d686SBarry Smith @*/
737329f5518SBarry Smith int MatSNESMFSetFunctionError(Mat mat,PetscReal error)
738a4d4d686SBarry Smith {
7395a655dc6SBarry Smith   MatSNESMFCtx ctx;
740a4d4d686SBarry Smith   int          ierr;
741a4d4d686SBarry Smith 
742a4d4d686SBarry Smith   PetscFunctionBegin;
743a4d4d686SBarry Smith   ierr = MatShellGetContext(mat,(void **)&ctx);CHKERRQ(ierr);
744a4d4d686SBarry Smith   if (ctx) {
745a4d4d686SBarry Smith     if (error != PETSC_DEFAULT) ctx->error_rel = error;
746a4d4d686SBarry Smith   }
747a4d4d686SBarry Smith   PetscFunctionReturn(0);
748a4d4d686SBarry Smith }
749a4d4d686SBarry Smith 
7504a2ae208SSatish Balay #undef __FUNCT__
7514a2ae208SSatish Balay #define __FUNCT__ "MatSNESMFAddNullSpace"
752a4d4d686SBarry Smith /*@
75365f2ba5bSLois Curfman McInnes    MatSNESMFAddNullSpace - Provides a null space that an operator is
75465f2ba5bSLois Curfman McInnes    supposed to have.  Since roundoff will create a small component in
75565f2ba5bSLois Curfman McInnes    the null space, if you know the null space you may have it
75665f2ba5bSLois Curfman McInnes    automatically removed.
757a4d4d686SBarry Smith 
758a4d4d686SBarry Smith    Collective on Mat
759a4d4d686SBarry Smith 
760a4d4d686SBarry Smith    Input Parameters:
761a4d4d686SBarry Smith +  J - the matrix-free matrix context
76274637425SBarry Smith -  nullsp - object created with MatNullSpaceCreate()
763a4d4d686SBarry Smith 
76415091d37SBarry Smith    Level: advanced
76515091d37SBarry Smith 
766a4d4d686SBarry Smith .keywords: SNES, matrix-free, null space
767a4d4d686SBarry Smith 
76874637425SBarry Smith .seealso: MatNullSpaceCreate(), MatSNESMFGetH(), MatCreateSNESMF(),
7695a655dc6SBarry Smith           MatSNESMFSetHHistory(), MatSNESMFResetHHistory(),
7705a655dc6SBarry Smith           MatSNESMFKSPMonitor(), MatSNESMFErrorRel()
771a4d4d686SBarry Smith @*/
77274637425SBarry Smith int MatSNESMFAddNullSpace(Mat J,MatNullSpace nullsp)
773a4d4d686SBarry Smith {
774a4d4d686SBarry Smith   int          ierr;
7755a655dc6SBarry Smith   MatSNESMFCtx ctx;
776a4d4d686SBarry Smith   MPI_Comm     comm;
777a4d4d686SBarry Smith 
778a4d4d686SBarry Smith   PetscFunctionBegin;
7792d0c0e3bSBarry Smith   ierr = PetscObjectGetComm((PetscObject)J,&comm);CHKERRQ(ierr);
780a4d4d686SBarry Smith 
781a4d4d686SBarry Smith   ierr = MatShellGetContext(J,(void **)&ctx);CHKERRQ(ierr);
782a4d4d686SBarry Smith   /* no context indicates that it is not the "matrix free" matrix type */
783a4d4d686SBarry Smith   if (!ctx) PetscFunctionReturn(0);
78485614651SBarry Smith   ctx->sp = nullsp;
78585614651SBarry Smith   ierr = PetscObjectReference((PetscObject)nullsp);CHKERRQ(ierr);
786a4d4d686SBarry Smith   PetscFunctionReturn(0);
787a4d4d686SBarry Smith }
788a4d4d686SBarry Smith 
7894a2ae208SSatish Balay #undef __FUNCT__
7904a2ae208SSatish Balay #define __FUNCT__ "MatSNESMFSetHHistory"
791a4d4d686SBarry Smith /*@
79265f2ba5bSLois Curfman McInnes    MatSNESMFSetHHistory - Sets an array to collect a history of the
79365f2ba5bSLois Curfman McInnes    differencing values (h) computed for the matrix-free product.
794a4d4d686SBarry Smith 
795a4d4d686SBarry Smith    Collective on Mat
796a4d4d686SBarry Smith 
797a4d4d686SBarry Smith    Input Parameters:
798a4d4d686SBarry Smith +  J - the matrix-free matrix context
79965f2ba5bSLois Curfman McInnes .  histroy - space to hold the history
80065f2ba5bSLois Curfman McInnes -  nhistory - number of entries in history, if more entries are generated than
80165f2ba5bSLois Curfman McInnes               nhistory, then the later ones are discarded
802a4d4d686SBarry Smith 
80315091d37SBarry Smith    Level: advanced
80415091d37SBarry Smith 
805a4d4d686SBarry Smith    Notes:
80665f2ba5bSLois Curfman McInnes    Use MatSNESMFResetHHistory() to reset the history counter and collect
80765f2ba5bSLois Curfman McInnes    a new batch of differencing parameters, h.
808a4d4d686SBarry Smith 
809a4d4d686SBarry Smith .keywords: SNES, matrix-free, h history, differencing history
810a4d4d686SBarry Smith 
8115a655dc6SBarry Smith .seealso: MatSNESMFGetH(), MatCreateSNESMF(),
8125a655dc6SBarry Smith           MatSNESMFResetHHistory(),
8135a655dc6SBarry Smith           MatSNESMFKSPMonitor(), MatSNESMFSetFunctionError()
814a4d4d686SBarry Smith 
815a4d4d686SBarry Smith @*/
8165a655dc6SBarry Smith int MatSNESMFSetHHistory(Mat J,Scalar *history,int nhistory)
817a4d4d686SBarry Smith {
818a4d4d686SBarry Smith   int          ierr;
8195a655dc6SBarry Smith   MatSNESMFCtx ctx;
820a4d4d686SBarry Smith 
821a4d4d686SBarry Smith   PetscFunctionBegin;
822a4d4d686SBarry Smith 
823a4d4d686SBarry Smith   ierr = MatShellGetContext(J,(void **)&ctx);CHKERRQ(ierr);
824a4d4d686SBarry Smith   /* no context indicates that it is not the "matrix free" matrix type */
825a4d4d686SBarry Smith   if (!ctx) PetscFunctionReturn(0);
826a4d4d686SBarry Smith   ctx->historyh    = history;
827a4d4d686SBarry Smith   ctx->maxcurrenth = nhistory;
828a4d4d686SBarry Smith   ctx->currenth    = 0;
829a4d4d686SBarry Smith 
830a4d4d686SBarry Smith   PetscFunctionReturn(0);
831a4d4d686SBarry Smith }
832a4d4d686SBarry Smith 
8334a2ae208SSatish Balay #undef __FUNCT__
8344a2ae208SSatish Balay #define __FUNCT__ "MatSNESMFResetHHistory"
835a4d4d686SBarry Smith /*@
8365a655dc6SBarry Smith    MatSNESMFResetHHistory - Resets the counter to zero to begin
837a4d4d686SBarry Smith    collecting a new set of differencing histories.
838a4d4d686SBarry Smith 
839a4d4d686SBarry Smith    Collective on Mat
840a4d4d686SBarry Smith 
841a4d4d686SBarry Smith    Input Parameters:
842a4d4d686SBarry Smith .  J - the matrix-free matrix context
843a4d4d686SBarry Smith 
84415091d37SBarry Smith    Level: advanced
84515091d37SBarry Smith 
846a4d4d686SBarry Smith    Notes:
84765f2ba5bSLois Curfman McInnes    Use MatSNESMFSetHHistory() to create the original history counter.
848a4d4d686SBarry Smith 
849a4d4d686SBarry Smith .keywords: SNES, matrix-free, h history, differencing history
850a4d4d686SBarry Smith 
8515a655dc6SBarry Smith .seealso: MatSNESMFGetH(), MatCreateSNESMF(),
8525a655dc6SBarry Smith           MatSNESMFSetHHistory(),
8535a655dc6SBarry Smith           MatSNESMFKSPMonitor(), MatSNESMFSetFunctionError()
854a4d4d686SBarry Smith 
855a4d4d686SBarry Smith @*/
8565a655dc6SBarry Smith int MatSNESMFResetHHistory(Mat J)
857a4d4d686SBarry Smith {
858a4d4d686SBarry Smith   int          ierr;
8595a655dc6SBarry Smith   MatSNESMFCtx ctx;
860a4d4d686SBarry Smith 
861a4d4d686SBarry Smith   PetscFunctionBegin;
862a4d4d686SBarry Smith 
863a4d4d686SBarry Smith   ierr = MatShellGetContext(J,(void **)&ctx);CHKERRQ(ierr);
864a4d4d686SBarry Smith   /* no context indicates that it is not the "matrix free" matrix type */
865a4d4d686SBarry Smith   if (!ctx) PetscFunctionReturn(0);
866be726c96SBarry Smith   ctx->ncurrenth    = 0;
867a4d4d686SBarry Smith 
868a4d4d686SBarry Smith   PetscFunctionReturn(0);
869a4d4d686SBarry Smith }
870a4d4d686SBarry Smith 
8714a2ae208SSatish Balay #undef __FUNCT__
872fed8bd04SBarry Smith #define __FUNCT__ "MatSNESMFComputeJacobian"
873fed8bd04SBarry Smith int MatSNESMFComputeJacobian(SNES snes,Vec x,Mat *jac,Mat *B,MatStructure *flag,void *dummy)
8741d1367b7SBarry Smith {
8751d1367b7SBarry Smith   int ierr;
8761d1367b7SBarry Smith   PetscFunctionBegin;
8771d1367b7SBarry Smith   ierr = MatAssemblyBegin(*jac,MAT_FINAL_ASSEMBLY);CHKERRQ(ierr);
8781d1367b7SBarry Smith   ierr = MatAssemblyEnd(*jac,MAT_FINAL_ASSEMBLY);CHKERRQ(ierr);
8791d1367b7SBarry Smith   PetscFunctionReturn(0);
8801d1367b7SBarry Smith }
8811d1367b7SBarry Smith 
8824a2ae208SSatish Balay #undef __FUNCT__
8834a2ae208SSatish Balay #define __FUNCT__ "MatSNESMFSetBase"
8841d1367b7SBarry Smith int MatSNESMFSetBase(Mat J,Vec U)
8851d1367b7SBarry Smith {
886*cf3bea43SBarry Smith   int  ierr,(*f)(Mat J,Vec U);
8871d1367b7SBarry Smith 
8881d1367b7SBarry Smith   PetscFunctionBegin;
8891d1367b7SBarry Smith   PetscValidHeaderSpecific(J,MAT_COOKIE);
8901d1367b7SBarry Smith   PetscValidHeaderSpecific(U,VEC_COOKIE);
891*cf3bea43SBarry Smith   ierr = PetscObjectQueryFunction((PetscObject)J,"MatSNESMFSetBase_C",(void (**)())&f);CHKERRQ(ierr);
892*cf3bea43SBarry Smith   if (f) {
893*cf3bea43SBarry Smith     ierr = (*f)(J,U);CHKERRQ(ierr);
89449d4803aSBarry Smith   }
8951d1367b7SBarry Smith   PetscFunctionReturn(0);
8961d1367b7SBarry Smith }
897