blob: 51e70cd1a1d5656da9b6bac438a776b3f0b6b7f8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
//Engineering and Chemical Thermodynamics
//Example 3.3
//Page no:121
clear ; clc ;
// Given
T_1_1 = 273 ;// {K}
T_1_2 = 373 ; //[K]
Cp = 24.5 ; // [J/molK]
del_S_sur = 0 ; //Since the system is isolated
T2 = (T_1_1 + T_1_2)/2 ;
del_S = Cp / 2 * log(T2^2 / (T_1_1 * T_1_2)) ;
disp(" Example 3.3 Page no : 121") ;
printf("\n Entropy change for the system = %.2f J/(mol K)", del_S);
|