DMDAGetInfo#
Gets information about a given distributed array.
Synopsis#
#include "petscdmda.h"
PetscErrorCode DMDAGetInfo(DM da, PetscInt *dim, PetscInt *M, PetscInt *N, PetscInt *P, PetscInt *m, PetscInt *n, PetscInt *p, PetscInt *dof, PetscInt *s, DMBoundaryType *bx, DMBoundaryType *by, DMBoundaryType *bz, DMDAStencilType *st)
Not Collective
Input Parameter#
da - the distributed array
Output Parameters#
dim - dimension of the distributed array (1, 2, or 3)
M - global dimension in first direction of the array
N - global dimension in second direction of the array
P - global dimension in third direction of the array
m - corresponding number of procs in first dimension
n - corresponding number of procs in second dimension
p - corresponding number of procs in third dimension
dof - number of degrees of freedom per node
s - stencil width
bx - type of ghost nodes at boundary in first dimension
by - type of ghost nodes at boundary in second dimension
bz - type of ghost nodes at boundary in third dimension
st - stencil type, either
DMDA_STENCIL_STAR
orDMDA_STENCIL_BOX
Note#
Use NULL
(PETSC_NULL_INTEGER
in Fortran) in place of any output parameter that is not of interest.
See Also#
DMDA - Creating vectors for structured grids, DM
, DMDA
, DMView()
, DMDAGetCorners()
, DMDAGetLocalInfo()
Level#
beginner
Location#
Examples#
src/ksp/ksp/tutorials/ex28.c
src/dm/tutorials/swarm_ex3.c
src/ksp/ksp/tutorials/ex42.c
src/ksp/ksp/tutorials/ex32.c
src/ksp/ksp/tutorials/ex43.c
src/ksp/ksp/tutorials/ex25.c
src/dm/tutorials/ex22.c
src/ksp/ksp/tutorials/ex34.c
src/ksp/ksp/tutorials/ex29.c
src/dm/tutorials/ex15.c
Index of all DMDA routines
Table of Contents for all manual pages
Index of all manual pages