summaryrefslogtreecommitdiff
path: root/1019/CH3/EX3.3/Example_3_3.sce
blob: 53a61b9c0d2ee3aa499682d9f286349281039c97 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
//Example 3.3
clear;
clc;

//Given 
delH1 = -78.705;//H1 is the heat of reaction (i) in kJ
delH2 = -3.420;//H2 is the heat of reaction (ii) in kJ

//To determine the heat change
delH=delH1-delH2;//change in heat in kJ
mprintf('change in heat = %f kJ',delH);
//end