diff options
Diffstat (limited to '1388/CH4/EX4.18')
-rwxr-xr-x | 1388/CH4/EX4.18/4_18.sce | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/1388/CH4/EX4.18/4_18.sce b/1388/CH4/EX4.18/4_18.sce new file mode 100755 index 000000000..92cd6fd91 --- /dev/null +++ b/1388/CH4/EX4.18/4_18.sce @@ -0,0 +1,13 @@ +clc
+//initialisation of variables
+H= -57.7979 //cal
+H1= -68.3174 //cal
+S= 45.106 //cal deg^-1
+S1= 16.716 //cal deg^-1
+T= 25 //C
+//CALCULATIONS
+H2= (H-H1)*1000
+S2= S-S1
+G= H2-(273.16+T)*S2
+//RESULTS
+printf (' Gibs free energy= %.1f cal',G)
|