From b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b Mon Sep 17 00:00:00 2001 From: priyanka Date: Wed, 24 Jun 2015 15:03:17 +0530 Subject: initial commit / add all books --- 1775/CH6/EX6.14/Chapter6_Example14.sce | 35 ++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100755 1775/CH6/EX6.14/Chapter6_Example14.sce (limited to '1775/CH6/EX6.14') 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================================= -- cgit