diff --git a/Modelica/Thermal/FluidHeatFlow/Examples/IndirectCooling.mo b/Modelica/Thermal/FluidHeatFlow/Examples/IndirectCooling.mo index 3fdc2fa7af..d8f4f8f45b 100644 --- a/Modelica/Thermal/FluidHeatFlow/Examples/IndirectCooling.mo +++ b/Modelica/Thermal/FluidHeatFlow/Examples/IndirectCooling.mo @@ -8,13 +8,13 @@ model IndirectCooling "Indirect cooling circuit" parameter SI.Temperature TAmb(displayUnit="degC")=293.15 "Ambient temperature"; output SI.TemperatureDifference dTSource= - prescribedHeatFlow.port.T-TAmb "Source over Ambient"; + prescribedHeatFlow.port.T-TAmb "Temperature difference between heat source and ambient condition"; output SI.TemperatureDifference dTtoPipe=prescribedHeatFlow.port.T-pipe1.T_q - "Source over inner Coolant"; + "Temperature difference between heat source and coolant in pipe 1"; output SI.TemperatureDifference dTinnerCoolant=pipe1.dT "Inner Coolant's temperature increase"; output SI.TemperatureDifference dTCooler=innerPipe.T_q-outerPipe.T_q - "Cooler's temperature increase between inner and outer pipes"; + "Coolant temperature difference between inner pipe and outer pipe"; output SI.TemperatureDifference dTouterCoolant=outerPipe.dT "Outer coolant's temperature increase"; FluidHeatFlow.Sources.Ambient ambient1( @@ -173,31 +173,31 @@ Inner coolant's temperature rise near the source is the same as temperature drop dTSource -Source over Ambient +Temperature difference between heat source and ambient condition dtouterCoolant + dtCooler + dTinnerCoolant + dtToPipe 40 K dTtoPipe -Source over inner Coolant +Temperature difference between heat source and coolant in pipe 1 Losses / ThermalConductor.G 10 K -dTinnerColant -inner Coolant's temperature increase +dTinnerCoolant +Inner Coolant's temperature increase Losses * cp * innerMassFlow 10 K dTCooler -Cooler's temperature rise between inner and outer pipes +Coolant temperature difference between inner pipe and outer pipe Losses * (innerGc + outerGc) 10 K -dTouterColant -outer Coolant's temperature increase +dTouterCoolant +Outer coolant's temperature increase Losses * cp * outerMassFlow 10 K diff --git a/Modelica/Thermal/FluidHeatFlow/Examples/OneMass.mo b/Modelica/Thermal/FluidHeatFlow/Examples/OneMass.mo index 2b37f5fbff..7b1869d7ee 100644 --- a/Modelica/Thermal/FluidHeatFlow/Examples/OneMass.mo +++ b/Modelica/Thermal/FluidHeatFlow/Examples/OneMass.mo @@ -8,9 +8,9 @@ model OneMass "Cooling of one hot mass" parameter SI.Temperature TMass(displayUnit="degC")=313.15 "Initial temperature of mass"; output SI.TemperatureDifference dTMass= - heatCapacitor.port.T-TAmb "Mass over Ambient"; + heatCapacitor.port.T-TAmb "Temperature difference between mass and ambient condition"; output SI.TemperatureDifference dTtoPipe=heatCapacitor.port.T-pipe.T_q - "Mass over Coolant"; + "Temperature difference between mass and coolant"; output SI.TemperatureDifference dTCoolant=pipe.dT "Coolant's temperature increase"; FluidHeatFlow.Sources.Ambient ambient1( diff --git a/Modelica/Thermal/FluidHeatFlow/Examples/ParallelCooling.mo b/Modelica/Thermal/FluidHeatFlow/Examples/ParallelCooling.mo index d3474660a2..062453a81e 100644 --- a/Modelica/Thermal/FluidHeatFlow/Examples/ParallelCooling.mo +++ b/Modelica/Thermal/FluidHeatFlow/Examples/ParallelCooling.mo @@ -7,17 +7,17 @@ model ParallelCooling "Cooling circuit with parallel branches" parameter SI.Temperature TAmb(displayUnit="degC")=293.15 "Ambient temperature"; output SI.TemperatureDifference dTSource1= - prescribedHeatFlow1.port.T-TAmb "Source1 over Ambient"; + prescribedHeatFlow1.port.T-TAmb "Temperature difference between heat source 1 and ambient condition"; output SI.TemperatureDifference dTtoPipe1=prescribedHeatFlow1.port.T-pipe1.T_q - "Source1 over Coolant1"; + "Temperature difference between heat source 1 and coolant in pipe 1"; output SI.TemperatureDifference dTCoolant1=pipe1.dT - "Coolant1's temperature increase"; + "Coolant1's temperature increase in pipe 1"; output SI.TemperatureDifference dTSource2= - prescribedHeatFlow2.port.T-TAmb "Source2 over Ambient"; + prescribedHeatFlow2.port.T-TAmb "Temperature difference between Heat source 2 and ambient condition"; output SI.TemperatureDifference dTtoPipe2=prescribedHeatFlow2.port.T-pipe2.T_q - "Source2 over Coolant2"; + "Temperature difference between heat source 2 and coolant in pipe 2"; output SI.TemperatureDifference dTCoolant2=pipe2.dT - "Coolant2's temperature increase"; + "Coolant2's temperature increase in pipe 2"; output SI.TemperatureDifference dTmixedCoolant=ambient2.T_port-ambient1.T_port "Mixed Coolant's temperature increase"; FluidHeatFlow.Sources.Ambient ambient1( @@ -169,43 +169,43 @@ Two prescribed heat sources dissipate their heat through thermal conductors to c dTSource1 -Source1 over Ambient +Temperature difference between heat source 1 and ambient condition dTCoolant1 + dTtoPipe1 15 K dTtoPipe1 -Source1 over Coolant1 +Temperature difference between heat source 1 and coolant in pipe 1 Losses1 / ThermalConductor1.G 5 K dTCoolant1 -Coolant's temperature increase +Coolant1's temperature increase in pipe 1 Losses * cp * totalMassFlow/2 10 K dTSource2 -Source2 over Ambient +Temperature difference between heat source 2 and ambient condition dTCoolant2 + dTtoPipe2 30 K dTtoPipe2 -Source2 over Coolant2 +Temperature difference between heat source 2 and coolant in pipe 2 Losses2 / ThermalConductor2.G 10 K dTCoolant2 -Coolant's temperature increase +Coolant2's temperature increase in pipe 2 Losses * cp * totalMassFlow/2 20 K dTmixedCoolant -mixed Coolant's temperature increase +Mixed coolant's temperature increase (dTCoolant1+dTCoolant2)/2 15 K diff --git a/Modelica/Thermal/FluidHeatFlow/Examples/ParallelPumpDropOut.mo b/Modelica/Thermal/FluidHeatFlow/Examples/ParallelPumpDropOut.mo index c13b60b615..55e3ae16f1 100644 --- a/Modelica/Thermal/FluidHeatFlow/Examples/ParallelPumpDropOut.mo +++ b/Modelica/Thermal/FluidHeatFlow/Examples/ParallelPumpDropOut.mo @@ -7,19 +7,19 @@ model ParallelPumpDropOut parameter SI.Temperature TAmb(displayUnit="degC")=293.15 "Ambient temperature"; output SI.TemperatureDifference dTSource1= - prescribedHeatFlow1.port.T-TAmb "Source1 over Ambient"; + prescribedHeatFlow1.port.T-TAmb "Temperature difference between heat source 1 and ambient condition"; output SI.TemperatureDifference dTtoPipe1=prescribedHeatFlow1.port.T-pipe1.T_q - "Source1 over Coolant1"; + "Temperature difference between heat source 1 and coolant in pipe 1"; output SI.TemperatureDifference dTCoolant1=pipe1.dT "Coolant1's temperature increase"; output SI.TemperatureDifference dTSource2= - prescribedHeatFlow2.port.T-TAmb "Source2 over Ambient"; + prescribedHeatFlow2.port.T-TAmb "Temperature difference between heat source 2 and ambient condition"; output SI.TemperatureDifference dTtoPipe2=prescribedHeatFlow2.port.T-pipe2.T_q - "Source2 over Coolant2"; + "Temperature difference between heat source 2 and coolant in pipe 2"; output SI.TemperatureDifference dTCoolant2=pipe2.dT "Coolant2's temperature increase"; output SI.TemperatureDifference dTmixedCoolant=ambient2.T_port-ambient1.T_port - "Mixed Coolant's temperature increase"; + "Overall change in coolant temperature"; FluidHeatFlow.Sources.Ambient ambient1( constantAmbientTemperature=TAmb, medium=medium, diff --git a/Modelica/Thermal/FluidHeatFlow/Examples/PumpAndValve.mo b/Modelica/Thermal/FluidHeatFlow/Examples/PumpAndValve.mo index 4daba86e2d..86d7905747 100644 --- a/Modelica/Thermal/FluidHeatFlow/Examples/PumpAndValve.mo +++ b/Modelica/Thermal/FluidHeatFlow/Examples/PumpAndValve.mo @@ -8,7 +8,7 @@ model PumpAndValve "Cooling circuit with pump and valve" output SI.TemperatureDifference dTSource= prescribedHeatFlow.port.T-TAmb "Source over Ambient"; output SI.TemperatureDifference dTtoPipe=prescribedHeatFlow.port.T-pipe.T_q - "Source over Coolant"; + "Temperature difference between heat source and ambient condition"; output SI.TemperatureDifference dTCoolant=pipe.dT "Coolant's temperature increase"; FluidHeatFlow.Sources.Ambient ambient1( diff --git a/Modelica/Thermal/FluidHeatFlow/Examples/PumpDropOut.mo b/Modelica/Thermal/FluidHeatFlow/Examples/PumpDropOut.mo index d3d2f9e4bd..fb03d58643 100644 --- a/Modelica/Thermal/FluidHeatFlow/Examples/PumpDropOut.mo +++ b/Modelica/Thermal/FluidHeatFlow/Examples/PumpDropOut.mo @@ -6,9 +6,9 @@ model PumpDropOut "Cooling circuit with drop out of pump" parameter SI.Temperature TAmb(displayUnit="degC")=293.15 "Ambient temperature"; output SI.TemperatureDifference dTSource= - prescribedHeatFlow.port.T-TAmb "Source over Ambient"; + prescribedHeatFlow.port.T-TAmb "Temperature difference between heat source and ambient condition"; output SI.TemperatureDifference dTtoPipe=prescribedHeatFlow.port.T-pipe.T_q - "Source over Coolant"; + "Temperature difference between heat source and coolant"; output SI.TemperatureDifference dTCoolant=pipe.dT "Coolant's temperature increase"; FluidHeatFlow.Sources.Ambient ambient1( diff --git a/Modelica/Thermal/FluidHeatFlow/Examples/SimpleCooling.mo b/Modelica/Thermal/FluidHeatFlow/Examples/SimpleCooling.mo index f2bd3cddae..166813018d 100644 --- a/Modelica/Thermal/FluidHeatFlow/Examples/SimpleCooling.mo +++ b/Modelica/Thermal/FluidHeatFlow/Examples/SimpleCooling.mo @@ -7,9 +7,9 @@ model SimpleCooling "Simple cooling circuit" parameter SI.Temperature TAmb(displayUnit="degC")=293.15 "Ambient temperature"; output SI.TemperatureDifference dTSource= - prescribedHeatFlow.port.T-TAmb "Source over Ambient"; + prescribedHeatFlow.port.T-TAmb "Temperature difference between heat source and ambient condition"; output SI.TemperatureDifference dTtoPipe=prescribedHeatFlow.port.T-pipe.T_q - "Source over Coolant"; + "Temperature difference between heat source and coolant"; output SI.TemperatureDifference dTCoolant=pipe.dT "Coolant's temperature increase"; FluidHeatFlow.Sources.Ambient ambient1( @@ -95,13 +95,13 @@ A prescribed heat source dissipates its heat through a thermal conductor to a co dTSource -Source over Ambient +Temperature difference between heat source and ambient condition dtCoolant + dtToPipe 20 K dTtoPipe -Source over Coolant +Temperature difference between heat source and coolant Losses / ThermalConductor.G 10 K diff --git a/Modelica/Thermal/FluidHeatFlow/Examples/TwoMass.mo b/Modelica/Thermal/FluidHeatFlow/Examples/TwoMass.mo index ade13f7517..7d49666f71 100644 --- a/Modelica/Thermal/FluidHeatFlow/Examples/TwoMass.mo +++ b/Modelica/Thermal/FluidHeatFlow/Examples/TwoMass.mo @@ -10,15 +10,15 @@ model TwoMass "Cooling of two hot masses" parameter SI.Temperature TMass2(displayUnit="degC")=333.15 "Initial temperature of mass2"; output SI.TemperatureDifference dTMass1= - heatCapacitor1.port.T-TAmb "Mass1 over Ambient"; + heatCapacitor1.port.T-TAmb "Temperature difference between mass 1 and ambient condition"; output SI.TemperatureDifference dTtoPipe1=heatCapacitor1.port.T-pipe1.T_q - "Mass1 over Coolant1"; + "Temperature difference between mass 1 and coolant in pipe 1"; output SI.TemperatureDifference dTCoolant1=pipe1.dT - "Coolant1's temperature increase"; + "Change in coolant temperature in pipe 1"; output SI.TemperatureDifference dTMass2= - heatCapacitor2.port.T-TAmb "Mass2 over Ambient"; + heatCapacitor2.port.T-TAmb "Temperature difference between mass 2 and ambient condition"; output SI.TemperatureDifference dTtoPipe2=heatCapacitor2.port.T-pipe2.T_q - "Mass2 over Coolant2"; + "Temperature difference between mass 2 and coolant in pipe 2"; output SI.TemperatureDifference dTCoolant2=pipe2.dT "Coolant2's temperature increase"; output SI.TemperatureDifference dTmixedCoolant=ambient2.T_port-ambient1.T_port