Package org.ptolemy.fmi
Class FMI20Output
- java.lang.Object
-
- org.ptolemy.fmi.FMI20Output
-
public class FMI20Output extends java.lang.Object
An object that represents the Output of an FMUA Functional Mock-up Unit file is a .fmu file in zip format that contains a .xml file named "modelDescription.xml". In that file, the Derivatives element may contain elements such as Unknown.
FMI documentation may be found at http://www.modelisar.com/fmi.html.
- Since:
- Ptolemy II 11.0
- Version:
- $Id$
- Author:
- Thierry S. Nouidui
- Pt.AcceptedRating:
- Red (cxh)
- Pt.ProposedRating:
- Red (cxh)
-
-
Field Summary
Fields Modifier and Type Field Description java.util.LinkedList<FMIScalarVariable>
dependentScalarVariables
The list of dependent ScalarVariable elements.java.lang.Integer
index
The index of the output derivative.FMIScalarVariable
scalarVariable
The list of dependent ScalarVariable elements.
-
Constructor Summary
Constructors Constructor Description FMI20Output()
Create an empty Output.FMI20Output(FMIModelDescription fmiModelDescription, org.w3c.dom.Node element)
Create an Output variable element from an XML Element.
-
-
-
Field Detail
-
index
public java.lang.Integer index
The index of the output derivative.
-
dependentScalarVariables
public java.util.LinkedList<FMIScalarVariable> dependentScalarVariables
The list of dependent ScalarVariable elements.
-
scalarVariable
public FMIScalarVariable scalarVariable
The list of dependent ScalarVariable elements.
-
-
Constructor Detail
-
FMI20Output
public FMI20Output()
Create an empty Output.
-
FMI20Output
public FMI20Output(FMIModelDescription fmiModelDescription, org.w3c.dom.Node element)
Create an Output variable element from an XML Element.- Parameters:
fmiModelDescription
- the Model Description for this derivative.element
- The XML Node that contains attributes.
-
-