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 /2471/CH7/EX7.6/Ex7_6.sce | |
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 '2471/CH7/EX7.6/Ex7_6.sce')
-rwxr-xr-x | 2471/CH7/EX7.6/Ex7_6.sce | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/2471/CH7/EX7.6/Ex7_6.sce b/2471/CH7/EX7.6/Ex7_6.sce new file mode 100755 index 000000000..b90f150bd --- /dev/null +++ b/2471/CH7/EX7.6/Ex7_6.sce @@ -0,0 +1,18 @@ +clear ;
+clc;
+// Example 7.6
+printf('Example 7.6\n\n');
+printf('Page No. 209\n\n');
+
+// given
+P = 150*10^3;// Power of compressor in W
+F_load = .78;// full load percentage of the time
+Re = .7;// Heat Recovery
+T = 2200;//Compressor operating time in h/year
+C = 20*10^-6;// Energy cost in Pound/Wh
+
+H_Re = P*F_load*Re;// in W
+printf('Heat recovered is %.0f W \n',H_Re)
+E_save = H_Re*T*C;// in Pound/year
+printf('Economic Saving is %3.2f Pound per year',E_save)
+//Deviation in answer is due to some calculation approximation the book
|