diff options
Diffstat (limited to '3428/CH2/EX1.2.8')
-rw-r--r-- | 3428/CH2/EX1.2.8/Ex1_2_8.sce | 15 |
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)') |