Retrieve a state¶
saf_read_state is a function defined in state.c.
Synopsis:
-
int
saf_read_state(SAF_ParMode pmode, SAF_StateGrp *state_grp, int state_index, SAF_Set *mesh, SAF_Field *deflt_coords, void *coord_data, SAF_Field **fields)¶
Formal Arguments:
pmode: The parallel modestate_grp: The state group from which this state will be read.state_index: An index that specifies which state within the state group will be read. This index is 0-based.mesh: [OUT] ReturnedIDof the mesh associated with this state.deflt_coords: [OUT] ReturnedIDof the default coordinate field ofmesh; we may want to delete this argument since the client can call saf_find_default_coords formesh.coord_data: [OUT] Returned coordinate ofstate_indexwithin the state group. For instance, this is typically the time value of the state.fields: The IDs of the fields (the dependent variables) to be read from this state. The caller may supply a pointer to a value ofNULLif this function is to allocate a buffer. If the caller supplies a pointer to a non-nil pointer, then it is the responsibility of the caller to ensure that the buffer is of sufficient size to contain the coordinates. This size (NUM_FIELDS) is the number of field templates (NUM_FTMPLS) obtained by a call to saf_describe_state_tmpl.
Description: Read all the elements of a state. This includes the following:
IDof the computational mesh (i.e., a setID) associated with this state;IDof the default coordinate field of the mesh;- the parametric value (e.g., the time value) associated with this state;
- IDs of all the fields (the dependent variables) attached to the mesh at this state.
Return Value: The constant SAF__SUCCESS is returned when this function is successful. Otherwise this function either returns
an error number or throws an exception, depending on the value of the library’s error handling property.
See Also:
- saf_describe_state_tmpl: 17.3: Get a description of a state template
- saf_find_default_coords: 16.15: Find default coordinate fields
- States: Introduction for current chapter