summaryrefslogtreecommitdiff
path: root/1019/CH8/EX8.10/Example_8_10.sce
blob: 721a4940b67dc8610b7f6b94a8367374e4ee0d0d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
//Example 8.10
clear;
clc;

//Given
T1=298;//initial temperature in K
T2=308;//final temperature in K
R=8.314;//gas constant in J K^-1 mol^-1

//To determine the value of delHo
delHo=((R*T1*T2*log(2))/(T2-T1))*0.001;//delHo in kJ mol^-1
mprintf('Enthalpy of reaction,delHo = %f kJ mol^-1',delHo);
//end