blob: c2f4e27d1fe0e7283a3bf3d137d73a496fee2af5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
clear;
clc;
// Example: 5.7
// Page: 162
printf("Example: 5.7 - Page: 162\n\n");
// Solution
//*****Data*****//
n = 1;// [mol]
deltaH_fusion = 6500;// [J/mol]
T_Tr = 273;// [transition temperature, K]
P = 1;// [atm]
//************//
// By Eqn. (9.40)
deltaS_fusion = deltaH_fusion/T_Tr;// [J/mol K]
printf("Change in Entropy is %.2f J/mol K",deltaS_fusion);
|