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.3/Chapter6_Example3.sce | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100755 1775/CH6/EX6.3/Chapter6_Example3.sce (limited to '1775/CH6/EX6.3') diff --git a/1775/CH6/EX6.3/Chapter6_Example3.sce b/1775/CH6/EX6.3/Chapter6_Example3.sce new file mode 100755 index 000000000..ee4bcdf7b --- /dev/null +++ b/1775/CH6/EX6.3/Chapter6_Example3.sce @@ -0,0 +1,25 @@ +//Chapter-6, Illustration 3, Page 309 +//Title: Refrigeration cycles +//============================================================================= +clc +clear + +//INPUT DATA +TL=-10;//Temperature of brine in oC +TH=20;//Temperature of water in oC +L=335;//Latent heat of ice in kJ/kg + +//CALCULATIONS +Qr=(4.187*(TH-0))+L;//Heat removed from water in kJ/kg +COP=(TL+273)/(TH-TL);//Co-efficient of performance +mi=(COP*3600)/Qr;//mass of ice formed per kWh in kg + +//OUTPUT +mprintf('Mass of ice formed per kWh is %3.1f kg',mi) + + + + + + +//==============================END OF PROGRAM================================= -- cgit