DMDASNESSetFunctionLocalVec#
set a local residual evaluation function that operates on a local vector for DMDA
Synopsis#
#include "petscdmda.h"
#include "petscsnes.h"
PetscErrorCode DMDASNESSetFunctionLocalVec(DM dm, InsertMode imode, PetscErrorCode (*func)(DMDALocalInfo *info, Vec x, Vec f, void *ctx), void *ctx)
Logically Collective
Input Parameters#
dm -
DM
to associate callback withimode -
INSERT_VALUES
if local function computes owned part,ADD_VALUES
if it contributes to ghosted partfunc - local residual evaluation
ctx - optional context for local residual evaluation
Calling sequence of func
#
info -
DMDALocalInfo
defining the subdomain to evaluate the residual onx - state vector at which to evaluate residual
f - residual vector
ctx - optional context passed above
See Also#
SNES: Nonlinear Solvers, DMDA
, DMDASNESSetFunctionLocal()
, DMDASNESSetJacobianLocalVec()
, DMSNESSetFunction()
, DMDACreate1d()
, DMDACreate2d()
, DMDACreate3d()
Level#
beginner
Location#
Examples#
Index of all SNES routines
Table of Contents for all manual pages
Index of all manual pages