Skip to content

Commit e333f8e

Browse files
authored
Merge pull request #9 from ScientificDataFormat/conversion
This merge request adds the missing conversions for previous versions. The Dymola conversion checker reported no issues, except some missing internal classes deleted in 0.3.0 and 0.4.0. 0.1.0 was never released to the public, hence it is not listed here. Deleted in 0.3.0: SDF.Internal.evaluate SDF.Internal.getErrorMessage Deleted in 0.4.0: SDF.Internal.Functions.internalGetAttributeString SDF.Internal.Functions.internalSetAttributeString
2 parents 0c68f45 + 69f9294 commit e333f8e

File tree

1 file changed

+22
-17
lines changed

1 file changed

+22
-17
lines changed

SDF/package.mo

Lines changed: 22 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,40 +1,45 @@
11
within ;
22
package SDF "Scientific Data Format"
3-
extends Modelica.Icons.Package;
3+
extends .Modelica.Icons.Package;
44

5-
6-
7-
8-
9-
10-
annotation (uses(Modelica(version="4.1.0")),
5+
annotation (
6+
uses(Modelica(version="4.1.0")),
117
version="0.4.6",
12-
Icon(coordinateSystem(preserveAspectRatio=false, extent={{-100,-100},
13-
{100,100}}), graphics={
8+
conversion(
9+
noneFromVersion = "0.4.5",
10+
noneFromVersion = "0.4.4",
11+
noneFromVersion = "0.4.3",
12+
noneFromVersion = "0.4.2",
13+
noneFromVersion = "0.4.1",
14+
noneFromVersion = "0.4.0",
15+
noneFromVersion = "0.3.1",
16+
noneFromVersion = "0.3.0",
17+
noneFromVersion = "0.2.0"),
18+
Icon(
19+
coordinateSystem(extent={{-100,-100}, {100,100}}),
20+
graphics={
1421
Rectangle(
15-
extent={{-60,60},{60,-60}},
22+
extent={{-60,60}, {60,-60}},
1623
lineColor={95,95,95},
1724
fillColor={235,235,235},
1825
fillPattern=FillPattern.Solid),
1926
Line(
20-
points={{-20,60},{-20,-60}},
27+
points={{-20,60}, {-20,-60}},
2128
color={95,95,95}),
2229
Line(
23-
points={{20,60},{20,-60}},
30+
points={{20,60}, {20,-60}},
2431
color={95,95,95}),
2532
Line(
26-
points={{0,80},{0,-40}},
33+
points={{0,80}, {0,-40}},
2734
color={95,95,95},
2835
origin={20,20},
2936
rotation=90),
3037
Line(
31-
points={{0,80},{0,-40}},
38+
points={{0,80}, {0,-40}},
3239
color={95,95,95},
3340
origin={20,-20},
3441
rotation=90)}),
3542
Documentation(info="<html>
3643
<p>The SDF package contains blocks and functions to read, write and interpolate multi-dimensional data using the <a href=\"https://github.com/ScientificDataFormat/SDF\">Scientific Data Format</a>.</p>
37-
</html>", revisions="<html>
38-
</html>"),
39-
conversion(noneFromVersion="0.4.5"));
44+
</html>"));
4045
end SDF;

0 commit comments

Comments
 (0)