summaryrefslogtreecommitdiff
path: root/527/CH4/EX4.8/4_8exam.sce
blob: 15700ac2cb397ca49f45cd3f5d036dcc6135033f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//Engineering and Chemical Thermodynamics
//Example 4.8
//Page no :197 

clear ; clc ;
//Given
B = 0.0486 * 10^-3 ;
T1 = 20 + 273 ; //[K]
T2 = 500 + 273 ; //[K]
v1 = 7.11 ; // [cm^3/mol]

v2 = v1 * exp( B * (T2 - T1)) ;
disp(" Example: 4.8   Page no : 197") ;
printf("\n     Molar volume of solid state 2 = %.2f cm^3/mol", v2);