summaryrefslogtreecommitdiff
path: root/1019/CH4/EX4.3/Example_4_3.sce
blob: ef65c4050a5c718e51b04cbc7bc55e8830736681 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//Example 4.3 (b)
clear;
clc;

//Given
a=1.24;//alpha at 290K and 1 atm in 10^-3 K^-1
b=9.3;//beta at 290K and 1 atm in 10^-5 atm^-1
T=290;//temperature in K
delS=2.1;//entropy change in J K^-1 mol^-1

//to calculate the change in molar volume
delV=(delS*b)/(a*100*101.325);//change in molar volume in dm^3 mol^-1
mprintf('change in molar volume = %f dm^3 mol^-1',delV);
//end