A compressor is the heart of the air-conditioning or refrigeration system, compressing the refrigerant from the low-pressure side of the system up to the high-pressure side of the system. Because it plays such a a significant role in the overall system efficiency, the accuracy of the compressor model is quite important.
The compressor is modeled based on a 10-coefficient ARI compressor map which is very commonly used to characterize the performance of compressors. The map is based on a given amount of superheat along with input saturated suction and discharge pressures. Though most everything else in the program is based on metric units, the standard in America is to generate the map based on superheat and saturated temperatures in degrees Fahrenheit. Refer to the following figure to see the definitions of the temperatures and pressures:
(Source code, png, hires.png, pdf)
Thus the map-based mass flow rate (in lbm/hr) and electrical power (in W), can be given by
(1)
(2)
where the saturated suction dewpoint temperature and saturated discharge dewpoint temperatures are in degrees Fahrenheit. To be specific, they are the dew temperatures, which are the same as the saturated vapor temperatures for pure fluids. The coefficients are the mass flow map coefficients and are the electrical power map coefficients. In practice, the compressor is unlikely to operate at exactly the map superheat. As a result, the map predictions must be corrected to better match the actual operating conditions. The map correction is based on the method of Rice. et al. [1] , which yields
(3)
where the subscripts actual refer to the properties evaluated at the actual superheat at the suction flange, and the map subscripts refer to the properties evaluated at the given map superheat. Similarly, the electrical power correction is given by
(4)
An energy balance over the compressor yields
(5)
Since the electrical power is known from the corrected map, and the heat transfer can be expressed as a fraction of the electrical power by
(6)
the outlet enthalpy of the compressor can be therefore given by
(7)
References
[1] | Rice, C. K. and A. E. Dabiri, 1981. “A Compressor Simulation Model with Corrections for the Level of Suction Gas Superheat,” ASHRAE Transactions, Vol. 87, Part 2, pp.771-782. |
Nomenclature
Variable | Description |
---|---|
Fraction of electrical power lost at heat transfer [-] | |
Enthalpy of refrigerant at actual superheat [J/kg] | |
Isentropic enthalpy of refrigerant at discharge pressure using actual superheat [J/kg] | |
Enthalpy of refrigerant at map superheat [J/kg] | |
Isentropic enthalpy of refrigerant at discharge pressure using map superheat [J/kg] | |
Actual refrigerant mass flow rate [kg/s] | |
Refrigerant mass flow rate from map [lbm/hr] | |
Mass flow map coefficients [varied] | |
Electrical power map coefficients [varied] | |
Discharge dew pressure [kPa (absolute)] | |
Suction dew pressure [kPa (absolute)] | |
Ambient heat loss [W] | |
Discharge dew temperature [] | |
Suction dew temperature [] | |
Specific volume of refrigerant at actual superheat [m3/kg] | |
Specific volume of refrigerant at map superheat [m3/kg] | |
Actual compressor electrical power [W] | |
Compressor electrical power from map [W] |
Minimal Component Test:
from Compressor import CompressorClass
from CoolProp.CoolProp import Props
kwds={
'M':[217.3163128,5.094492028,-0.593170311,4.38E-02,
-2.14E-02,1.04E-02,7.90E-05,-5.73E-05,1.79E-04,-8.08E-05],
'P':[-561.3615705,-15.62601841,46.92506685,-0.217949552,
0.435062616,-0.442400826,2.25E-04,2.37E-03,-3.32E-03,2.50E-03],
'Ref':'R134a',
'Tin_r':280,
'pin_r':Props('P','T',279,'Q',1,'R134a'),
'pout_r':Props('P','T',315,'Q',1,'R134a'),
'fp':0.15, #Fraction of electrical power lost as heat to ambient
'Vdot_ratio': 1.0 #Displacement Scale factor
}
Comp=CompressorClass(**kwds)
Comp.Calculate()
print 'Electrical power is: ' + str(Comp.W) + ' W'
print 'Actual mass flow rate is: ' + str(Comp.mdot_r) + ' kg/s'
If you open an IPython(x,y) shell in the root of the documentation (folder Documentation/Web relative to the main trunk), and run the commands below, you should get
In [2]: execfile('ACHPComponents/ComponentTests/CompressorTest.py')
Electrical power is: 2295.80966961 W
Actual mass flow rate is: 0.0626893978315 kg/s
If not, first stop should be the Frequently Asked Questions
Compressor Model based on 10-coefficient Model from ANSI/AHRI standard 540
Required Parameters:
Variable | Units | Description |
---|---|---|
M | varied | A numpy-like list of compressor map coefficients for mass flow |
P | varied | A numpy-like list of compressor map coefficients for electrical power |
Ref | N/A | A string representing the refrigerant |
Tin_r | K | Refrigerant inlet temperature |
pin_r | kPa | Refrigerant suction pressure (absolute) |
pout_r | kPa | Refrigerant discharge pressure (absolute) |
fp | – | Fraction of electrical power lost as heat to ambient |
Vdot_ratio | – | Displacement Scale factor |
All variables are of double-type unless otherwise specified