diff options
Diffstat (limited to '2870/CH15/EX15.9/Ex15_9.sce')
-rwxr-xr-x | 2870/CH15/EX15.9/Ex15_9.sce | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/2870/CH15/EX15.9/Ex15_9.sce b/2870/CH15/EX15.9/Ex15_9.sce new file mode 100755 index 000000000..5c5c81118 --- /dev/null +++ b/2870/CH15/EX15.9/Ex15_9.sce @@ -0,0 +1,13 @@ +clc;clear;
+//Example 15.9
+
+//from Table A-26E
+//Gibbs function of formation at 77°F
+gfc=0;//for carbon
+gfo=0;//for oxygen
+gfco=-169680;//for carbondioxide
+
+//calculations
+// C + O2 = CO2
+Wrev=1*gfc+1*gfo-1*gfco;
+disp(Wrev,'the reversible work for this process in Btu')
|