diff options
author | priyanka | 2015-06-24 15:03:17 +0530 |
---|---|---|
committer | priyanka | 2015-06-24 15:03:17 +0530 |
commit | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch) | |
tree | ab291cffc65280e58ac82470ba63fbcca7805165 /1775/CH6/EX6.14 | |
download | Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2 Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip |
initial commit / add all books
Diffstat (limited to '1775/CH6/EX6.14')
-rwxr-xr-x | 1775/CH6/EX6.14/Chapter6_Example14.sce | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/1775/CH6/EX6.14/Chapter6_Example14.sce b/1775/CH6/EX6.14/Chapter6_Example14.sce new file mode 100755 index 000000000..f2fa9f579 --- /dev/null +++ b/1775/CH6/EX6.14/Chapter6_Example14.sce @@ -0,0 +1,35 @@ +//Chapter-6, Illustration 14, Page 321
+//Title: Refrigeration cycles
+//=============================================================================
+clc
+clear
+
+//INPUT DATA
+P1=2.5;//Pressure at point 1 in bar
+P3=9;//Pressure at point 3 in bar
+COPr=0.65;//Ratio of actual COP to the theoretical COP
+m=5;//Refrigerant flow in kg/min
+T1=309;//Temperature at point 1 in K
+T2s=300;//Temperature at point 2s in K
+h1=570.3;//Enthalpy at P1 from the given tables in kJ/kg
+h4=456.4;//Enthalpy at P3 from the given tables in kJ/kg
+h2g=585.3;//Enthalpy at P3 from the given tables in kJ/kg
+s2=4.76;//Entropy at P1 from the given tables in kJ/kg-K
+s2g=4.74;//Entropy at P3 from the given tables in kJ/kg-K
+Cp=0.67;//Specific heat at P3 in kJ/kg-K
+
+//CALCULATIONS
+T2=(2.718^((s2-s2g)/Cp))*T2s;//Temperature at point 2 in K
+h2=h2g+(Cp*(T2-T2s));//Enthalpy at point 2 in kJ/kg
+COPR=(h1-h4)/(h2-h1);//Refrigerant COP
+COPact=COPr*COPR;//Actual COP
+qL=COPact*(h2-h1);//Heat rejected in kJ/kg
+QL=((m*qL*60)/3600)/3.516;//Cooling produced per kg of refrigerant in tonnes of refrigeration
+
+//OUTPUT
+mprintf('Theoretical COP is %3.2f \n Net cooling produced per hour is %3.2f TR',COPR,QL)
+
+
+
+
+//==============================END OF PROGRAM=================================
|