SNESSetDM#
Sets the DM
that may be used by some nonlinear solvers or their underlying preconditioners
Synopsis#
#include "petscsnes.h"
PetscErrorCode SNESSetDM(SNES snes, DM dm)
Logically Collective
Input Parameters#
snes - the nonlinear solver context
dm - the
DM
, cannot beNULL
Note#
A DM
can only be used for solving one problem at a time because information about the problem is stored on the DM
,
even when not using interfaces like DMSNESSetFunction()
. Use DMClone()
to get a distinct DM
when solving different
problems using the same function space.
See Also#
SNES: Nonlinear Solvers, DM
, SNES
, SNESGetDM()
, KSPSetDM()
, KSPGetDM()
Level#
intermediate
Location#
Examples#
src/snes/tutorials/ex26.c
src/snes/tutorials/ex55.c
src/ts/tutorials/ex30.c
src/tao/tutorials/ex2.c
src/tao/tutorials/ex1.c
src/snes/tutorials/ex69.c
src/snes/tutorials/ex48.c
src/snes/tutorials/ex35.c
src/snes/tutorials/ex24.c
src/snes/tutorials/ex77.c
Index of all SNES routines
Table of Contents for all manual pages
Index of all manual pages