Buildings.Fluid.CHPs.OrganicRankine.Data

Package with working fluid data

Information

Package for data records of working fluids.

Extends from Modelica.Icons.MaterialPropertiesPackage (Icon for package containing property classes).

Package Content

Name Description
Buildings.Fluid.CHPs.OrganicRankine.Data.Generic Generic Generic data record for working fluid properties
Buildings.Fluid.CHPs.OrganicRankine.Data.WorkingFluids WorkingFluids Package with working fluid data

Buildings.Fluid.CHPs.OrganicRankine.Data.Generic Buildings.Fluid.CHPs.OrganicRankine.Data.Generic

Generic data record for working fluid properties

Information

Record containing parameters for working fluid properties. A figure in the documentation of Buildings.Fluid.CHPs.OrganicRankine.ConstantEvaporation shows which lines these arrays represent.

Extends from Modelica.Icons.Record (Icon for records).

Contents

TypeNameDefaultDescription
ThermodynamicTemperatureT[:] Thermodynamic temperature [K]
AbsolutePressurep[n] Saturation pressure [Pa]
DensityrhoLiq[n] Density of saturated liquid [kg/m3]
TemperatureDifferencedTRef Superheating temperature difference [K]
SpecificEntropysSatLiq[n] Specific entropy of saturated liquid [J/(kg.K)]
SpecificEntropysSatVap[n] Specific entropy of saturated vapor [J/(kg.K)]
SpecificEntropysRef[n] Specific entropy of superheated vapor reference line [J/(kg.K)]
SpecificEnthalpyhSatLiq[n] Specific enthalpy of saturated liquid [J/kg]
SpecificEnthalpyhSatVap[n] Specific enthalpy of saturated vapor [J/kg]
SpecificEnthalpyhRef[n] Specific enthalpy of superheated vapor reference line [J/kg]

Modelica definition

record Generic "Generic data record for working fluid properties" extends Modelica.Icons.Record; parameter Modelica.Units.SI.ThermodynamicTemperature T[:] "Thermodynamic temperature"; parameter Modelica.Units.SI.AbsolutePressure p[n] "Saturation pressure"; parameter Modelica.Units.SI.Density rhoLiq[n] "Density of saturated liquid"; parameter Modelica.Units.SI.TemperatureDifference dTRef "Superheating temperature difference"; parameter Modelica.Units.SI.SpecificEntropy sSatLiq[n] "Specific entropy of saturated liquid"; parameter Modelica.Units.SI.SpecificEntropy sSatVap[n] "Specific entropy of saturated vapor"; parameter Modelica.Units.SI.SpecificEntropy sRef[n] "Specific entropy of superheated vapor reference line"; parameter Modelica.Units.SI.SpecificEnthalpy hSatLiq[n] "Specific enthalpy of saturated liquid"; parameter Modelica.Units.SI.SpecificEnthalpy hSatVap[n] "Specific enthalpy of saturated vapor"; parameter Modelica.Units.SI.SpecificEnthalpy hRef[n] "Specific enthalpy of superheated vapor reference line"; final parameter Integer n = size(T,1) "Array length"; end Generic;