summaryrefslogtreecommitdiff
path: root/1019/CH4/EX4.10/Example_4_10.sce
blob: 978b688a164e4fcb774242e0d5c416ccd3eee8da (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//Example 4.10
clear;
clc;

//Given
R=8.314;// gas constant in J K^-1 mol^-1
Cp=2.5*R; //specific heat capacity at constant pressure of the gas in J K^-1 mol^-1
V1=10;//volume of gas in m^3
T1=300; //initial temperature in K
T2=400;//final temperature in K
P=101000;//pressure in N m^-2

//to calculate the entropy change
n=(P*V1*0.001)/(R*T);//moles
delS=n*(Cp*log(T2/T1));//entropy change in J K^-1
mprintf('Change in entropy = %f J K^-1',delS);
//end