var
# Each variable is represented as separate file of name <prefix>_<name>.<format>
# tag name type unit format
var v1 vector vF wdat # all fields are specified
var v2 complex eF # variable with specified unit (eF) and default format (wdat)
var v3 real # this variable has no unit (none) and default format (wdat)
var v4 vector none # this variable has no unit (none) and default format (wdat)
var v5 vector wdat # this variable has no unit (none) and spefified format (wdat)
link
# Links specify alternative names for variables
# tag name link-to
link v6 v4 # v5 is the same as variable v4
const
# Constants
# tag name value unit
const alpha 0.007297 # constant with no unit (none)
const pi 3.1415 none # constant with no unit (none)
const m 0.1 kg # constant with unit (kg)