Skip to content

Commit 3a9ceff

Browse files
authored
Merge pull request #2497 from hubertus65/fixesforMedia3.2.3
Fixes for issues #2385, #2490 and #2499
2 parents 5e76fc7 + c577831 commit 3a9ceff

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Modelica/Media/IdealGases/MixtureGases.mo

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ package MixtureGases "Medium models consisting of mixtures of ideal gases"
3333
"Moist air without condensation";
3434

3535
package FlueGasLambdaOnePlus
36-
"Simple flue gas for over0stochiometric O2-fuel ratios"
36+
"Simple flue gas for overstochiometric O2-fuel ratios"
3737
extends Common.MixtureGasNasa(
3838
mediumName="FlueGasLambda1plus",
3939
data={Common.SingleGasesData.N2,

Modelica/Media/Water/IF97_Utilities.mo

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,7 @@ package IF97_Utilities
159159
record triple "Triple point data"
160160
extends Modelica.Icons.Record;
161161
constant SI.Temperature Ttriple=273.16 "The triple point temperature";
162-
constant SI.Pressure ptriple=611.657 "The triple point temperature";
162+
constant SI.Pressure ptriple=611.657 "The triple point pressure";
163163
constant SI.Density dltriple=999.792520031617642
164164
"The triple point liquid density";
165165
constant SI.Density dvtriple=0.485457572477861372e-2
@@ -3017,7 +3017,7 @@ package IF97_Utilities
30173017
Real Tlim=min(T, data.TCRIT);
30183018
algorithm
30193019
assert(T >= 273.16, "IF97 medium function psat: input temperature (= "
3020-
+ String(triple.ptriple) + " K).\n" +
3020+
+ String(triple.Ttriple) + " K).\n" +
30213021
"lower than the triple point temperature 273.16 K");
30223022
o[1] := -650.17534844798 + Tlim;
30233023
o[2] := 1/o[1];

0 commit comments

Comments
 (0)