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 /2144/CH8/EX8.5 | |
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 '2144/CH8/EX8.5')
-rwxr-xr-x | 2144/CH8/EX8.5/ex8_5.sce | 20 |
1 files changed, 20 insertions, 0 deletions
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 : ")
|