summaryrefslogtreecommitdiff
path: root/1019/CH5/EX5.13/Example_5_13.sce
blob: fdc678ded29f5c690d4fa9eb80468561a02e9970 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//Example 5.13
clear;
clc;

//Given
T=300;//temperature in K
delVg=-1.5;//moles of gaseous product-moles of gaseous reactant
R=8.314;//gas constant in J K^-1 mol^-1

//To determine the difference between delG and delA
a=delG-delA;//assume
a=delVg*R*T;//difference between delG and delA in J
mprintf('delG - delA = %f J mol^-1',a);
//end