summaryrefslogtreecommitdiff
path: root/1019/CH3/EX3.17/Example_3_17.sce
blob: 41de7fdcb8bfb70c3e75b8ed7d82ee1d15155561 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//Example 3.17
clear;
clc;

//Given
DHCC=348;//bond energy of C-C bond in kJ
DHCH=413;//bond energy of C-H bond in kJ
DHHH=436;//half of the bond energy in hydrogen molecule in kJ
DHC2C=610;//bond energy of C=C bond in kJ

//To determine enthalpy change
delHf=DHC2C+DHHH-(2*DHCH)-DHCC;//enthalpy change in kJ
mprintf('Enthalpy change = %f kJ',delHf);
//end