Click or drag to resize

Causality Enumeration

Defines the causality of a variable.

Namespace:  Emulate3D.FMI.V3
Assembly:  Emulate3D.FMI (in Emulate3D.FMI.dll) Version: 18.04.00
Syntax
C#
public enum Causality
Members
  Member nameValueDescription
Parameter0 A data value that is provided by the importer or user to change the behavior of the FMU.
CalculatedParameter1 A data value that is constant during the simulation and is computed during initialization or when tunable parameters change.
Input2 The variable value may be provided by the importer.
Output3 The variable value may be used by the importer.
Local4 The variable value is local.
Independent5 The independent variable (usually time [but could also be, for example, angle]). All variables are a function of this independent variable.
StructuralParameter6 The variable value can only be changed in configuration mode or reconfiguration mode. The start attribute is mandatory.
See Also