# comments in the metadata file are ignored
# grid dimensions are specified using the following convention:
nx=1024, ny=1024, nz=512
# Data arrays are expected in single precision IEEE floating
# point format, one array per file, in the same folder, and
# named following the pattern:
#
# NAME_XXXX.gda
#
# where "NAME" is an aribtrary identifier and optionally a
# component id (eg, den, Vx, or pi-xx). "XXXX" identifies
# the time step id and must be present even when there is
# only a single timestep.
#
# Arrays must be enumerated in the metadata file using the
# following conventions typed and named using the following
# conventions:
# for scalars name a single array
scalar:den
# for vectors the the component arrays are grouped
# into VTK vector for visualization. All vector
# components must be present and named following the
# convention NAMEx, NAMEy, NAMEz
vector:B
# for tensors all components must be present
# and follow the convention NAME-xx, NAME-xy, ... NAME-zz
tensor:V
# for symetric tensors 6 components must be present
# following the same convention
stensor:pi
# vector, stensor, and tensor components could be treated as
# scalars by enumerating them as follows:
scalar:Bx
scalar:By
scalar:Bz
scalar:pi-xx
scalar:pi-xy
scalar:pi-xz
scalar:pi-yy
scalar:pi-yz
scalar:pi-zz
|