DMSubDomainHookAdd#
adds a callback to be run when restricting a problem to subdomain DM
s with DMCreateDomainDecomposition()
Synopsis#
#include "petscdm.h"
#include "petscdmlabel.h"
#include "petscds.h"
PetscErrorCode DMSubDomainHookAdd(DM global, PetscErrorCode (*ddhook)(DM global, DM block, void *ctx), PetscErrorCode (*restricthook)(DM global, VecScatter out, VecScatter in, DM block, void *ctx), void *ctx)
Logically Collective; No Fortran Support
Input Parameters#
Calling sequence of ddhook
#
Calling sequence of restricthook
#
Notes#
This function can be used if auxiliary data needs to be set up on subdomain DM
s.
If this function is called multiple times, the hooks will be run in the order they are added.
In order to compose with nonlinear preconditioning without duplicating storage, the hook should be implemented to
extract the global information from its context (instead of from the SNES
).
Developer Note#
It is unclear what “block solve” means within the definition of restricthook
See Also#
DM Basics, DM
, DMSubDomainHookRemove()
, DMRefineHookAdd()
, SNESFASGetInterpolation()
, SNESFASGetInjection()
, PetscObjectCompose()
, PetscContainerCreate()
, DMCreateDomainDecomposition()
Level#
advanced
Location#
Examples#
Index of all DM routines
Table of Contents for all manual pages
Index of all manual pages