diff --git a/CHANGELOG.md b/CHANGELOG.md index 5a48496..ffd9809 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,10 @@ All notable changes to this project will be documented in this file. +## [0.3.0] - 2025-10-02 + +- Uses the [Modelica Standard Library](https://github.com/modelica/ModelicaStandardLibrary) 4.1.0. + ## [0.2.0] - 2024-06-13 ### Added diff --git a/Credibility/Resources/Language/Credibility.de.po b/Credibility/Resources/Language/Credibility.de.po index aa25c91..573c0c8 100644 --- a/Credibility/Resources/Language/Credibility.de.po +++ b/Credibility/Resources/Language/Credibility.de.po @@ -1114,6 +1114,11 @@ msgid " \n" "This section summarizes the changes that have been performed on the library.\n" "
\n" "\n" +"\n" +"Verwendet Modelica Standard Library 4.1.0. Keine weiteren Änderungen.\n" +"
\n" +"\n" "\n" "The following improvements have been realized.\n" diff --git a/Credibility/Resources/Language/Credibility.pot b/Credibility/Resources/Language/Credibility.pot index 4ad10dc..6a89dda 100644 --- a/Credibility/Resources/Language/Credibility.pot +++ b/Credibility/Resources/Language/Credibility.pot @@ -576,6 +576,11 @@ msgid " \n" "This section summarizes the changes that have been performed on the library.\n" "
\n" "\n" +"\n" +"Uses Modelica Standard Library 4.1.0. No other changes done.\n" +"
\n" +"\n" "\n" "The following improvements have been realized.\n" diff --git a/Credibility/Tests/TestRecords.mo b/Credibility/Tests/TestRecords.mo index 1334943..632f5f4 100644 --- a/Credibility/Tests/TestRecords.mo +++ b/Credibility/Tests/TestRecords.mo @@ -40,22 +40,26 @@ model TestRecords "Test of all records defined in the library" Credibility.Scalar scalar2( value(unit="kg") = 10.0, traceability(reference=""), - redeclare Credibility.Types.TruncatedNormalTolerance - uncertainty( + redeclare Credibility.Types.TruncatedNormalTolerance uncertainty( source=Credibility.Types.SourceType.Estimated, unitValue="kg", nominal=10.0, relTol=0.2), - redeclare Credibility.Types.Calibration - calibration( + redeclare Credibility.Types.Calibration calibration( unitValue="kg", start=9, lower=5, upper=15)) annotation (Placement(transformation(extent={{-20,20},{0,40}}))); - Credibility.Table1D table1D(redeclare Credibility.Types.Interval1D uncertainty(lambda=0.1, table=[0,100,90,110; 1,120,115,125; 2,115,110,123; 3,100,90,110; 4,70,50,90; 5,-10,-38,18])) annotation (Placement(transformation(extent={{-60,-60},{-40,-40}}))); - - Credibility.Types.Interval1D interval1D(lambda=0.8, table=[0,2,1,3; 1,3,2,4; 4,4,3,5]) annotation (Placement(transformation(extent={{-90,-20},{-70,0}}))); + Credibility.Table1D table1D( + redeclare Credibility.Types.Interval1D uncertainty( + lambda=0.1, + table=[0,100,90,110; 1,120,115,125; 2,115,110,123; 3,100,90,110; 4,70,50,90; 5,-10,-38,18])) + annotation (Placement(transformation(extent={{-60,-60},{-40,-40}}))); + Credibility.Types.Interval1D interval1D( + lambda=0.8, + table=[0,2,1,3; 1,3,2,4; 4,4,3,5]) + annotation (Placement(transformation(extent={{-90,-20},{-70,0}}))); Credibility.Types.Uniform1D uniform1D( source=Credibility.Types.SourceType.Provided, lambda=-0.1, diff --git a/Credibility/UsersGuide.mo b/Credibility/UsersGuide.mo index 398a9fb..9a4d322 100644 --- a/Credibility/UsersGuide.mo +++ b/Credibility/UsersGuide.mo @@ -502,6 +502,11 @@ is given in the next figure (from This section summarizes the changes that have been performed on the library.
++Uses Modelica Standard Library 4.1.0. No other changes done. +
+The following improvements have been realized. diff --git a/Credibility/package.mo b/Credibility/package.mo index 536d116..71cbe7f 100644 --- a/Credibility/package.mo +++ b/Credibility/package.mo @@ -1,16 +1,16 @@ within ; -package Credibility "Credibility Library - Version 0.2.0" +package Credibility "Credibility Library" extends Modelica.Icons.Package; import Modelica.Units; annotation ( preferredView="info", - version="0.2.0", - versionDate="2024-06-13", - dateModified = "2024-05-03 14:00:00Z", + version="0.3.0", + versionDate="2025-10-02", + dateModified = "2025-10-02 14:00:00Z", revisionId="$Format:%h %ci$", uses( - Modelica(version="4.0.0")), + Modelica(version="4.1.0")), Documentation( info="
@@ -47,5 +47,6 @@ For copyright and BSD 3-clause license, see points={{-56,-2},{-20,-56},{62,38},{48,52},{-20,-20},{-40,10},{-56,-2}}, lineColor={0,140,72}, fillColor={0,140,72}, - fillPattern=FillPattern.Solid)})); + fillPattern=FillPattern.Solid)}), + conversion(noneFromVersion="0.2.0")); end Credibility;