diff options
Diffstat (limited to '1388/CH6/EX6.8/6_8.sce')
-rwxr-xr-x | 1388/CH6/EX6.8/6_8.sce | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/1388/CH6/EX6.8/6_8.sce b/1388/CH6/EX6.8/6_8.sce new file mode 100755 index 000000000..f2279209d --- /dev/null +++ b/1388/CH6/EX6.8/6_8.sce @@ -0,0 +1,14 @@ +clc
+//initialisation of variables
+T= 25 //C
+H= -36430 //cal
+S= -4.19 //cal deg^-1
+a= 0.1
+f= 0.2
+R= 1.987 //cal/mol K
+//CALCULATIONS
+G= H-(273.2+T)*S
+Q= a*f/a^2
+G1= G+R*(273.2+T)*log(Q)
+//RESULTS
+printf (' increase in free energy = %.1f cal',G1-0.2)
|