Exodus 8.24
|
#include "exodusII.h"
Functions | |
int | ex_put_glob_vars (int exoid, int time_step, int num_glob_vars, const void *glob_var_vals) |
int ex_put_glob_vars | ( | int | exoid, |
int | time_step, | ||
int | num_glob_vars, | ||
const void * | glob_var_vals ) |
The function ex_put_glob_vars() writes the values of all the global variables for a single time step. The function ex_put_variable_param() must be invoked before this call is made.
Because global variables are floating point values, the application code must declare the array passed to be the appropriate type (float or double) to match the compute word size passed in ex_create() or ex_open().
[in] | exoid | exodus file ID returned from a previous call to ex_create() or ex_open(). |
[in] | time_step | The time step number, as described under ex_put_time(). This is essentially a counter that is incremented when results variables are output. The first time step is 1. |
[in] | num_glob_vars | The number of global variables to be written to the database. |
[in] | glob_var_vals | Array of num_glob_vars global variable values for the time_step-th time step. |
As an example, the following coding will write the values of all the global variables at one time step to an open exodus II file: