summaryrefslogtreecommitdiff
path: root/3050/CH2/EX2.2/Ex2_2.sce
blob: 83d68f918eedbe3ed248c4ef5422ec5e1baaea5d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
//calculating GCV and NCV
//Example 2.2
clc
clear
C=90//percentage of Carbon in coal
O=2//percentage of Oxygen in coal
H=4//percentage of Hydrogen in coal
S=2.5//percentage of Sulphur in coal
N=1//percentage of Nitrogen in coal
GCV=((8080*C)+(34500*(H-O/8))+(2240*S))/100//gross calorific value in kcal/kg
NCV=(GCV-(0.09*H*587))//net calorific value in kcal/kg
printf('Thus the gross calorific value of coal = %4.2f kcal/kg',GCV)
printf('\n and the net calorific value of coal = %4.2f kcal/kg',NCV)