petsc-3.3-p7 2013-05-11

DMCreateFieldIS

Creates a set of IS objects with the global indices of dofs for each field

Synopsis

#include "petscdm.h"     
PetscErrorCode DMCreateFieldIS(DM dm, PetscInt *numFields, char ***fieldNames, IS **fields)
Not collective

Input Parameter

dm -the DM object

Output Parameters

numFields - The number of fields (or PETSC_NULL if not requested)
fieldNames - The name for each field (or PETSC_NULL if not requested)
fields - The global indices for each field (or PETSC_NULL if not requested)

Notes

The user is responsible for freeing all requested arrays. In particular, every entry of names should be freed with PetscFree(), every entry of fields should be destroyed with ISDestroy(), and both arrays should be freed with PetscFree().

See Also

DMDestroy(), DMView(), DMCreateInterpolation(), DMCreateColoring(), DMCreateMatrix()

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