Click or drag to resize

Causality Enumeration

Defines the causality of a variable.

Namespace:  Emulate3D.FMI.V2
Assembly:  Emulate3D.FMI (in Emulate3D.FMI.dll) Version: 18.04.00
Syntax
C#
public enum Causality
Members
  Member nameValueDescription
Parameter0 Independent parameter. A data value that is constant during the simulation and is provided by the environment and cannot be used in connections.
CalculatedParameter1 Calculated parameter. A data value that is constant during the simulation and is computed during initialization or when tunable parameters change.
Input2 The variable value can be provided from another model or slave.
Output3 The variable value can be used by another model or slave.
Local4 Local variable that is calculated from other variables or is a continuous-time state. It is not allowed to use the variable value in another model or slave.
Independent5 The independent variable (usually "time"). All variables are a function of this independent variable.
See Also