Click or drag to resize

Variability Enumeration

Defines the time dependency of a variable. Defines the time instants when a variable can change its value.

Namespace: Emulate3D.FMI.V2
Assembly: Emulate3D.FMI (in Emulate3D.FMI.dll) Version: 19.00.00
Syntax
C#
public enum Variability
Members
Member nameValueDescription
Constant0 The value of the variable never changes.
Fixed1 The value of the variable is fixed after initialization.
Tunable2 The value of the variable is constant between external events (model exchange) and between communication points (co-simulation).
Discrete3 For model exchange, the value of the variable is constant between external and internal events. For co-simulation, by convention, the variable is from a "real" sampled data system and its value is only changed at communication points.
Continuous4 For model exchange, no restrictions on value changes. For co-simulation, by convention, the variable is from a differential.
See Also