petsc-3.3-p7 2013-05-11
DMDAVecGetArrayDOF
Returns a multiple dimension array that shares data with the underlying vector and is indexed using the global dimensions.
Synopsis
#include "petscdmda.h"
PetscErrorCode DMDAVecGetArrayDOF(DM da,Vec vec,void *array)
Not Collective
Input Parameter
Output Parameter
array -the array
Notes
Call DMDAVecRestoreArrayDOF() once you have finished accessing the vector entries.
In C, the indexing is "backwards" from what expects: array[k][j][i][DOF] NOT array[i][j][k][DOF]!
Keywords
distributed array, get, corners, nodes, local indices, coordinates
See Also
DMDAGetGhostCorners(), DMDAGetCorners(), VecGetArray(), VecRestoreArray(), DMDAVecRestoreArray(), DMDAVecGetArray(), DMDAVecRestoreArrayDOF()
Level:intermediate
Location:src/dm/impls/da/dagetarray.c
Index of all DM routines
Table of Contents for all manual pages
Index of all manual pages
Examples
src/snes/examples/tutorials/ex51.c.html
src/snes/examples/tutorials/ex54.c.html
src/snes/examples/tutorials/ex55.c.html
src/snes/examples/tutorials/ex60.c.html
src/snes/examples/tutorials/ex61.c.html
src/snes/examples/tutorials/ex63.c.html
src/snes/examples/tutorials/ex633D_DB.c.html
src/snes/examples/tutorials/ex64.c.html
src/snes/examples/tutorials/ex65.c.html
src/ts/examples/tutorials/ex12.c.html
src/ts/examples/tutorials/ex23.c.html