From 7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 Mon Sep 17 00:00:00 2001 From: prashantsinalkar Date: Tue, 10 Oct 2017 12:27:19 +0530 Subject: initial commit / add all books --- 1808/CH6/EX6.15/Chapter6_Exampl15.sce | 42 +++++++++++++++++++++++++++++++++++ 1 file changed, 42 insertions(+) create mode 100644 1808/CH6/EX6.15/Chapter6_Exampl15.sce (limited to '1808/CH6/EX6.15') diff --git a/1808/CH6/EX6.15/Chapter6_Exampl15.sce b/1808/CH6/EX6.15/Chapter6_Exampl15.sce new file mode 100644 index 000000000..0b802384a --- /dev/null +++ b/1808/CH6/EX6.15/Chapter6_Exampl15.sce @@ -0,0 +1,42 @@ +clc +clear +//INPUT DATA +p1=1;//cold chamber pressure in bar +p2=6;//compressor pressure in bar +g=1.4;//constant +t1=278;//temperature in K +t3=298;//temperature in K +cp=1.005;//specific pressure +n1=1.3;//index of compression +n2=1.35;//index of compresion +R=0.287;//gas constant + +//CALCULATIONS +t2=t1*((p2/p1)^((g-1)/g));//temperature in K +t4=t3/((p2/p1)^((g-1)/g));//temperature in K +Qa=cp*(t1-t4);//Refrigeration effect +Qr=cp*(t2-t3);//heat rejected to the cooling medium in kJ/kg +wn=Qr-Qa;//net work done in kJ/kg +copa=Qa/wn;// actual COP +t21=t1*((p2/p1)^((n1-1)/n1));//temperature in K +t41=t3/((p2/p1)^((n2-1)/n2));//temperature in K +Qa1=cp*(t1-t41);//Refrigeration effect +wn1=(n1/(n1-1))*R*(t21-t1)-(n2/(n2-1))*R*(t3-t41);//net work done in kJ/kg +copb=Qa1/wn1;// actual COP +P1=210/(60*copa);//Power per ton of refrigeration in kW/TR +m1=210*3600/(60*Qa);//air flow rate in kg/hr +P2=210/(60*copb);//Power per ton of refrigeration in kW/TR +m2=210*60/(Qa1);//air flow rate in kg/hr + +//OUTPUT +printf('(a) \n (i)Refrigeration effect is %3.2f kJ/kg \n (ii)heat rejected to the cooling medium is %3.2f kJ/kg \n (iii)COPa %3.3f \n (b) \n (I)Refrigeration effect is %3.2f kJ/kg \n CASE A \n (1)Power per ton of refrigeration is %3.3f kW/TR \n (2)air flow rate is %3.2f kg/hr \n CASE B \n (1)Power per ton of refrigeration is %3.3f kW/TR \n (2)air flow rate is %3.2f kg/hr',Qa,Qr,copa,Qa1,P1,m1,P2,m2) + + + + + + + + + + -- cgit