petsc-3.3-p7 2013-05-11

DMDAGetOwnershipRanges

Gets the ranges of indices in the x, y and z direction that are owned by each process

Synopsis

#include "petscdmda.h"   
PetscErrorCode  DMDAGetOwnershipRanges(DM da,const PetscInt *lx[],const PetscInt *ly[],const PetscInt *lz[])
Not Collective

Input Parameter

da - the DMDA object

Output Parameter

lx - ownership along x direction (optional)
ly - ownership along y direction (optional)
lz - ownership along z direction (optional)

Note: these correspond to the optional final arguments passed to DMDACreate(), DMDACreate2d(), DMDACreate3d()

In Fortran one must pass in arrays lx, ly, and lz that are long enough to hold the values; the sixth, seventh and eighth arguments from DMDAGetInfo()

In C you should not free these arrays, nor change the values in them. They will only have valid values while the DMDA they came from still exists (has not been destroyed).

See Also

DMDAGetCorners(), DMDAGetGhostCorners(), DMDACreate(), DMDACreate1d(), DMDACreate2d(), DMDACreate3d(), VecGetOwnershipRanges()

Level:intermediate
Location:
src/dm/impls/da/da.c
Index of all DM routines
Table of Contents for all manual pages
Index of all manual pages

Examples

src/ksp/ksp/examples/tutorials/ex42.c.html
src/snes/examples/tutorials/ex10.c.html
src/snes/examples/tutorials/ex28.c.html
src/snes/examples/tutorials/ex51.c.html
src/ts/examples/tutorials/ex10.c.html