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 --- 2144/CH8/EX8.5/ex8_5.sce | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100755 2144/CH8/EX8.5/ex8_5.sce (limited to '2144/CH8/EX8.5') diff --git a/2144/CH8/EX8.5/ex8_5.sce b/2144/CH8/EX8.5/ex8_5.sce new file mode 100755 index 000000000..37454afda --- /dev/null +++ b/2144/CH8/EX8.5/ex8_5.sce @@ -0,0 +1,20 @@ +// Exa 8.5 +clc; +clear; +close; +// Given data +W_c = 500*10^-3;//water collected in kg +C_P = 4.1868;// in kJ/kg-K +T_o = 28.3;//outlet temp. in °C +T_i = 14;//inlet temp. in °C +P_bero= 785;// barometric pressure in mm +P_gas= P_bero+90/13.6;// in mm +T1=17+273;// gas temp. in K +T2= 15+273;// in K +theta = T_o-T_i;//temp. rise in °C +Qw = W_c * C_P*theta;// in kJ +Vgs= 2.8*10^-3;//volume of gas consumed in m^3 +E = Qw/Vgs;// in kJ +V1= P_gas/760*(T2/T1);// in m^3 +CalorificValue= E/V1;// in kJ/standard m^3 +disp(CalorificValue,"Calorific value in kJ/m^3 is : ") -- cgit