summaryrefslogtreecommitdiff
path: root/1019/CH4/EX4.20/Example_4_20.sce
blob: 6fef0bf53c63a98aeb20e503dab8142e24aea2d9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//Example 4.20
clear;
clc;

//Given
SoC2H5OH=160.7;//So for ethanol
SoC=5.7;//So for graphite
SoH2=130.6;//So for hydrogen
SoO2=205.1;//So for oxygen

//To determine the standard entropy of formation of ethanol
delSo=SoC2H5OH-((2*SoC)+(3*SoH2)+(0.5*SoO2));//standard entropy of formation of ethanol in J K^-1 mol^-1
mprintf('Standard entropy of formation of ethanol = %f J K^-1 mol^-1',delSo);
//end