blob: 32c8af36b15ddf9a6206ec85290998ecaba1e621 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
//Example 3.4
clear;
clc;
//Given
delH1 = 10.72;//delH1 is the heat of reaction in kJ (i)
delH2 = 4.68;//delH2 is the heat of reaction in kJ (ii)
delH3 = -1.16;//delH3 is the heat of reaction in kJ (iii)
//To determine the heat of required reaction
delH = delH1-delH2+delH3;//heat of reaction in kJ
mprintf('heat of required reaction = %f kJ',delH);
//end
|