summaryrefslogtreecommitdiff
path: root/527/CH3/EX3.2/3_2exam.sce
blob: 978deb53b98f04f1f8ec27a08f1b2a1a796d7e30 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
//Engineering and Chemical Thermodynamics
//Example 3.2
//Page no : 119

//Solution(a)
clear ; clc ; 
//Given 
del_U = 0 ; // As no work or heat transfered across its boundaries during the process 
T_1 = 500 ; // [K]
V1 = 1.6682 / 2 * 10^-3; // [m^3]
V2 = 2 * V1 ; 
del_S_sur = 0 ; // As no heat transfered across its boundaries during the process 
disp(" Example 3.2   Page no : 119")
disp("(a)");
disp("  For an ideal gas u = u(T only)") ; 
printf('\n   Final temperature = %g K \n\n',T_1);

//Solution(b)
q_rev = 8.314 * T_1 * log(V2/V1) ;
del_S_sys = q_rev / T_1 ;
del_S_univ = del_S_sys + del_S_sur ;
printf('(b)\n\n  Entropy change for universe = %.2f J/(molK)',del_S_univ);