1 | package TestTxtFile
|
---|
2 | model M
|
---|
3 | Modelica.Blocks.Sources.CombiTimeTable table( tableName = "tab1", tableOnFile = true,
|
---|
4 | fileName="Table.txt") annotation (
|
---|
5 | Placement(visible = true, transformation(origin={-20,0}, extent = {{-10, -10}, {10, 10}}, rotation = 0)));
|
---|
6 | annotation(uses(Modelica(version="3.2.2")),experiment(StopTime=4),
|
---|
7 | Diagram(coordinateSystem(extent={{-60,-40},{20,40}})),
|
---|
8 | Icon(coordinateSystem(extent={{-60,-40},{20,40}})));
|
---|
9 | end M;
|
---|
10 |
|
---|
11 |
|
---|
12 | annotation (
|
---|
13 | uses(Modelica(version = "3.2.2")));
|
---|
14 | end TestTxtFile;
|
---|