-
Notifications
You must be signed in to change notification settings - Fork 63
/
FMI1CS.xml
35 lines (31 loc) · 1.18 KB
/
FMI1CS.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
<?xml version="1.0" encoding="UTF-8"?>
<fmiModelDescription
fmiVersion="1.0"
modelName="Dahlquist"
modelIdentifier="Dahlquist"
description="This model implements the Dahlquist test equation"
generationTool="Reference FMUs (development build)"
guid="{221063D2-EF4A-45FE-B954-B5BFEEA9A59B}"
numberOfContinuousStates="1"
numberOfEventIndicators="0">
<DefaultExperiment startTime="0" stopTime="10"/>
<ModelVariables>
<ScalarVariable name="time" valueReference="0" causality="internal" variability="continuous" description="Simulation time">
<Real/>
</ScalarVariable>
<ScalarVariable name="x" valueReference="1" causality="output" description="the only state">
<Real start="1" fixed="true"/>
</ScalarVariable>
<ScalarVariable name="der(x)" valueReference="2">
<Real/>
</ScalarVariable>
<ScalarVariable name="k" valueReference="3" variability="parameter">
<Real start="1" fixed="true"/>
</ScalarVariable>
</ModelVariables>
<Implementation>
<CoSimulation_StandAlone>
<Capabilities canHandleVariableCommunicationStepSize="true" canHandleEvents="true"/>
</CoSimulation_StandAlone>
</Implementation>
</fmiModelDescription>