summaryrefslogtreecommitdiff
path: root/2465/CH4/EX4.6/Example_6.sce
blob: 7509cd20af7f245b31251dded498f10af0cd4ee0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//Chapter-4,Example 6,Page 93
clc;
close;

delta_H1= -337.2    // Heat combustion for ethylene 

delta_H2=-68.3    //  Heat combustion for hudrogen

delta_H3= 372.8    // Heat combustion for ethane

//Given reaction is...
//  C2H4(g) +H2(g) ---> C2H6(g)

delta_H= delta_H1 + delta_H2 +delta_H3

printf('the heat combustion for given reaction is %.2f Kcal',delta_H)