Skip to content

Commit

Permalink
Remove unknown parameter useMeanDensity
Browse files Browse the repository at this point in the history
  • Loading branch information
HansOlsson committed Sep 12, 2023
1 parent 25ca24b commit 30e4aa1
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions Modelica/Fluid/Dissipation.mo
Expand Up @@ -12467,11 +12467,11 @@ In the picture below the input x is increased from 0 to 1. The range of interpol
extends Modelica.Icons.Record;

SI.Density rho_m "Mean density of ideal gas"
annotation (Dialog(group="Fluid properties", enable=useMeanDensity));
annotation (Dialog(group="Fluid properties"));
SI.Temperature T_m "Mean temperature of ideal gas"
annotation (Dialog(group="Fluid properties", enable=not (useMeanDensity)));
annotation (Dialog(group="Fluid properties"));
SI.Pressure p_m "Mean pressure of ideal gas"
annotation (Dialog(group="Fluid properties", enable=not (useMeanDensity)));
annotation (Dialog(group="Fluid properties"));

end IdealGas_var;

Expand Down Expand Up @@ -12608,11 +12608,11 @@ In the picture below the input x is increased from 0 to 1. The range of interpol
"Coefficient for pressure loss law [(Pa)^2/{(kg/s)^exp*K}]"
annotation (Dialog(group="Generic variables"));
SI.Density rho_m=p_m/(R_s*T_m) "Mean density of ideal gas"
annotation (Dialog(group="Fluid properties", enable=useMeanDensity));
annotation (Dialog(group="Fluid properties"));
SI.Temperature T_m "Mean temperature of ideal gas"
annotation (Dialog(group="Fluid properties", enable=not (useMeanDensity)));
annotation (Dialog(group="Fluid properties"));
SI.Pressure p_m "Mean pressure of ideal gas"
annotation (Dialog(group="Fluid properties", enable=not (useMeanDensity)));
annotation (Dialog(group="Fluid properties"));

end IdealGas;

Expand Down

0 comments on commit 30e4aa1

Please sign in to comment.