From 30e4aa181cfe462e45177639f3247d1027ed2378 Mon Sep 17 00:00:00 2001 From: HOS Date: Thu, 8 Jun 2023 15:23:17 +0200 Subject: [PATCH] Remove unknown parameter useMeanDensity --- Modelica/Fluid/Dissipation.mo | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Modelica/Fluid/Dissipation.mo b/Modelica/Fluid/Dissipation.mo index 2d095c1187..a7b59961b2 100644 --- a/Modelica/Fluid/Dissipation.mo +++ b/Modelica/Fluid/Dissipation.mo @@ -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; @@ -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;