petsc-3.7.1 2016-05-15
Report Typos and Errors

DMDASNESSetJacobianLocal

set a local Jacobian evaluation function

Synopsis

#include "petscdmda.h" 
#include "petscsnes.h" 
PetscErrorCode DMDASNESSetJacobianLocal(DM dm,PetscErrorCode (*func)(DMDALocalInfo*,void*,Mat,Mat,void*),void *ctx)
Logically Collective Many br

Input Arguments

dm - DM to associate callback with Many br
func - local Jacobian evaluation Many br
ctx - optional context for local Jacobian evaluation Many br

Calling sequence

For PetscErrorCode (*func)(DMDALocalInfo *info,void *x,Mat J,Mat M,void *ctx), Many br
info - DMDALocalInfo defining the subdomain to evaluate the Jacobian at Many br
x - dimensional pointer to state at which to evaluate Jacobian (e.g. PetscScalar *x or **x or ***x) Many br
J - Mat object for the Jacobian Many br
M - Mat object for the Jacobian preconditioner matrix Many br
ctx - optional context passed above Many br

Many br

See Also

DMDASNESSetFunctionLocal(), DMSNESSetJacobian(), DMDACreate1d(), DMDACreate2d(), DMDACreate3d()

Level:beginner
Location:
src/snes/utils/dmdasnes.c
Index of all SNES routines
Table of Contents for all manual pages
Index of all manual pages

Examples

src/snes/examples/tutorials/ex5.c.html
src/snes/examples/tutorials/ex7.c.html
src/snes/examples/tutorials/ex15.c.html
src/snes/examples/tutorials/ex48.c.html
src/snes/examples/tutorials/ex5f.F.html