summaryrefslogtreecommitdiff
path: root/647/CH5/EX5.8/Example5_8.sce
blob: cb3908c4f68c7f0b034f95f7dc1e02fd3d85ea21 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
clear;
clc;

// Example: 5.8
// Page: 164

printf("Example: 5.8 - Page: 164\n\n");

// Solution

//*****Data*****//
V1 = 5;// [L]
V2 = 50;// [L]
n = 5;// [moles]
R = 1.987;// [cal/mol K]
//**************//

// Change in entropy for an isothermal change for an ideal gas:
// deltaS = n*R*log(P1/P2) = n*R*log(V2/V1)
deltaS = n*R*log(V2/V1);// [cal/degree]
printf("Change in Entropy is %.3f eu",deltaS);