VariableNamingConvention Enumeration |
Defines how variables have been constructed.
Namespace:
Emulate3D.FMI.V3
Assembly:
Emulate3D.FMI (in Emulate3D.FMI.dll) Version: 18.04.00
Syntaxpublic enum VariableNamingConvention
Members|
| Member name | Value | Description |
|---|
| Flat | 0 |
Name is a normalized string.
|
| Structured | 1 |
Structured names are using "." as a separator between hierarchies. A name consists of "_", letters and digits or may consist of any characters enclosed in single apostrophes.
A name may identify an array element on every hierarchical level using "[…]" to identify the respective array index. If an array is a leaf node of the variable hierarchy then
the array can also be represented as a single variable of type array. A derivative of a variable is defined with der(name) for the first time derivative and der(name,N) for the N-th derivative.
|
See Also