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.ObjectA data structure representing an output from the FMU.
-
-
Field Summary
Fields Modifier and Type Field Description java.util.Set<TypedIOPort>dependenciesThe set of input ports on which the output declares it depends.java.util.List<FMIScalarVariable>inputStateDependentScalarVariablesThe list of dependent ScalarVariable elements.doublelastOutputPortValueThe last double output seen at the input port.TypedIOPortportThe Ptolemy output port for this output.FMIScalarVariablescalarVariableThe FMI scalar variable for this output.
-
Constructor Summary
Constructors Modifier Constructor Description protectedOutput()
-
-
-
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.
-
-