blob: 781b37be389b62180610b46ce6c938d9e9b102c0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
//entropy changes in the system for phase transitions
clear;
clc;
printf("\t Example 18.5\n");
//for fusion
T=5.5+273;//temperature of fusion, K
deltaH=10.9*1000;//change in enthalpy, J/mol
deltaSf=deltaH/T;//since in fusion deltaG=0, J/ K mol
//for vaporisation
T=80.1+273;//temperature of vaporisation, K
deltaH=31*1000;//change in enthalpy, J/mol
deltaSv=deltaH/T;//since in vaporisation deltaG=0, J/ K mol
printf("\t the entropy change for fusion and condensation are : %4.1f J/K mol and %4.1f J/K mol respectively\n",deltaSf,deltaSv);
//End
|