summaryrefslogtreecommitdiff
path: root/1427/CH18/EX18.38/18_38.sce
blob: ffc0dc063b0f35980c9749074115e6f95f9818db (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//ques-18.38
//Calculating S and A and G for vaporization of benzene
clc
n=2;//moles of benzene
T=273+80.2;//boiling point (in K)
g=78;//molar weight of benzene (in g)
Lv=101;//latent heat of vaporization (in cal/g)
U=n*g*Lv;
H=U;
S=H/T;
G=H-T*S;
A=G;
printf("The entropy change is %.1f cal/K and A=G=%d.",S,A);