Package ptolemy.actor.lib.fmi
Class FMUImport.Output
- java.lang.Object
-
- ptolemy.actor.lib.fmi.FMUImport.Output
-
- Enclosing class:
- FMUImport
protected static class FMUImport.Output extends java.lang.Object
A data structure representing an output from the FMU.
-
-
Field Summary
Fields Modifier and Type Field Description java.util.Set<TypedIOPort>
dependencies
The set of input ports on which the output declares it depends.java.util.List<FMIScalarVariable>
inputStateDependentScalarVariables
The list of dependent ScalarVariable elements.double
lastOutputPortValue
The last double output seen at the input port.TypedIOPort
port
The Ptolemy output port for this output.FMIScalarVariable
scalarVariable
The FMI scalar variable for this output.
-
Constructor Summary
Constructors Modifier Constructor Description protected
Output()
-
-
-
Field Detail
-
dependencies
public java.util.Set<TypedIOPort> dependencies
The set of input ports on which the output declares it depends.
-
inputStateDependentScalarVariables
public java.util.List<FMIScalarVariable> inputStateDependentScalarVariables
The list of dependent ScalarVariable elements.
-
lastOutputPortValue
public double lastOutputPortValue
The last double output seen at the input port.
-
scalarVariable
public FMIScalarVariable scalarVariable
The FMI scalar variable for this output.
-
port
public TypedIOPort port
The Ptolemy output port for this output.
-
-