summaryrefslogtreecommitdiff
path: root/3428/CH2/EX1.2.8
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /3428/CH2/EX1.2.8
downloadScilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip
initial commit / add all books
Diffstat (limited to '3428/CH2/EX1.2.8')
-rw-r--r--3428/CH2/EX1.2.8/Ex1_2_8.sce15
1 files changed, 15 insertions, 0 deletions
diff --git a/3428/CH2/EX1.2.8/Ex1_2_8.sce b/3428/CH2/EX1.2.8/Ex1_2_8.sce
new file mode 100644
index 000000000..05864e689
--- /dev/null
+++ b/3428/CH2/EX1.2.8/Ex1_2_8.sce
@@ -0,0 +1,15 @@
+//Section-1,Example-2,Page no.-AC.173
+//To calculate the gross and net calorific value of the coal in (cal/gm).
+clc;
+W1=650
+W2=2500
+T=2.5 //T=T_2-T_1(Rise in temperature)
+CC=0.03
+x=0.85
+H=8
+A=50
+FC=10
+GCV=(((W1+W2)*(T+CC))-(A+FC))/x
+disp(GCV,'gross calorific value(cal/gm)')
+NCV=(GCV-(0.09*H*580))
+disp(NCV,'net calorific value(cal/gm)')