Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
5 changes: 5 additions & 0 deletions Credibility/Resources/Language/Credibility.de.po
Original file line number Diff line number Diff line change
Expand Up @@ -1114,6 +1114,11 @@ msgid "<html> \n"
"This section summarizes the changes that have been performed on the library.\n"
"</p>\n"
"\n"
"<h4>Version 0.3.0 (2025-10-02)</h4>\n"
"<p>\n"
"Verwendet Modelica Standard Library 4.1.0. Keine weiteren Änderungen.\n"
"</p>\n"
"\n"
"<h4>Version 0.2.0 (2024-06-13)</h4>\n"
"<p>\n"
"The following improvements have been realized.\n"
Expand Down
5 changes: 5 additions & 0 deletions Credibility/Resources/Language/Credibility.pot
Original file line number Diff line number Diff line change
Expand Up @@ -576,6 +576,11 @@ msgid "<html> \n"
"This section summarizes the changes that have been performed on the library.\n"
"</p>\n"
"\n"
"<h4>Version 0.3.0 (2025-10-02)</h4>\n"
"<p>\n"
"Uses Modelica Standard Library 4.1.0. No other changes done.\n"
"</p>\n"
"\n"
"<h4>Version 0.2.0 (2024-06-13)</h4>\n"
"<p>\n"
"The following improvements have been realized.\n"
Expand Down
18 changes: 11 additions & 7 deletions Credibility/Tests/TestRecords.mo
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down
5 changes: 5 additions & 0 deletions Credibility/UsersGuide.mo
Original file line number Diff line number Diff line change
Expand Up @@ -502,6 +502,11 @@ is given in the next figure (from
This section summarizes the changes that have been performed on the library.
</p>

<h4>Version 0.3.0 (2025-10-02)</h4>
<p>
Uses Modelica Standard Library 4.1.0. No other changes done.
</p>

<h4>Version 0.2.0 (2024-06-13)</h4>
<p>
The following improvements have been realized.
Expand Down
13 changes: 7 additions & 6 deletions Credibility/package.mo
Original file line number Diff line number Diff line change
@@ -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="<html>
<p>
Expand Down Expand Up @@ -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;