Package ptolemy.actor.lib.fmi
Class FMUImport.Input
- java.lang.Object
-
- ptolemy.actor.lib.fmi.FMUImport.Input
-
- Enclosing class:
- FMUImport
protected static class FMUImport.Input extends java.lang.Object
A data structure representing an input to the FMU.
-
-
Field Summary
Fields Modifier and Type Field Description boolean
hasChanged
The flag which indicates that input changed.double
lastInputModelValue
The last input double variable.double
lastInputPortValue
The last double token seen at the input port.TypedIOPort
port
The Ptolemy output port for this output.FMIScalarVariable
scalarVariable
The FMI scalar variable for this output.java.lang.Double
start
The start value for this variable, or null if it is not given.
-
Constructor Summary
Constructors Modifier Constructor Description protected
Input()
-
-
-
Field Detail
-
hasChanged
public boolean hasChanged
The flag which indicates that input changed.
-
lastInputModelValue
public double lastInputModelValue
The last input double variable.
-
lastInputPortValue
public double lastInputPortValue
The last double token seen at the input port.
-
port
public TypedIOPort port
The Ptolemy output port for this output.
-
scalarVariable
public FMIScalarVariable scalarVariable
The FMI scalar variable for this output.
-
start
public java.lang.Double start
The start value for this variable, or null if it is not given.
-
-