summaryrefslogtreecommitdiff
path: root/1019/CH4/EX4.13/Example_4_13.sce
blob: 4396813f0a3478fe9c9f739082800d4a25e4837e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
//Example 4.13
clear;
clc;

//Given
R=0.082;// gas constant in dm^3 atm K^-1 mol^-1
R1=8.314;// gas constant in J K^-1 mol^-1
T1=298; //initial temperature in K
T2=373; //final temperature in K
V1=0.5;//initial volume in dm^3
V2=1;//final volume in dm^3
P1=1;//initial pressure in atm
Cv=12.6;//specific heat of the gas at constant volume in J K^-1 mol^-1

//To calculate the entropy change
n=P1*V1/(R*T1);//moles
delS=(n*Cv*log(T2/T1))+(n*R1*log(V2/V1));//entropy change in J K^-1
mprintf('Entropy change = %f J K^-1',delS);
//end