forked from modelica/Reference-FMUs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathFMI1CS.xml
29 lines (25 loc) · 1.01 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
<?xml version="1.0" encoding="UTF-8"?>
<fmiModelDescription
fmiVersion="1.0"
modelName="Stair"
modelIdentifier="Stair"
description="This model generates a stair signal using time events"
generationTool="Reference FMUs (development build)"
guid="{BD403596-3166-4232-ABC2-132BDF73E644}"
numberOfContinuousStates="0"
numberOfEventIndicators="0">
<DefaultExperiment startTime="0" stopTime="10"/>
<ModelVariables>
<ScalarVariable name="time" valueReference="0" causality="internal" variability="continuous" description="Simulation time">
<Real/>
</ScalarVariable>
<ScalarVariable name="counter" valueReference="1" description="counts the seconds" causality="output" variability="discrete">
<Integer start="1" fixed="true" max="10"/>
</ScalarVariable>
</ModelVariables>
<Implementation>
<CoSimulation_StandAlone>
<Capabilities canHandleVariableCommunicationStepSize="true" canHandleEvents="true"/>
</CoSimulation_StandAlone>
</Implementation>
</fmiModelDescription>