summaryrefslogtreecommitdiff
path: root/3876/CH13/EX13.13/Ex13_13.sce
diff options
context:
space:
mode:
Diffstat (limited to '3876/CH13/EX13.13/Ex13_13.sce')
-rw-r--r--3876/CH13/EX13.13/Ex13_13.sce17
1 files changed, 17 insertions, 0 deletions
diff --git a/3876/CH13/EX13.13/Ex13_13.sce b/3876/CH13/EX13.13/Ex13_13.sce
new file mode 100644
index 000000000..0c9d600f3
--- /dev/null
+++ b/3876/CH13/EX13.13/Ex13_13.sce
@@ -0,0 +1,17 @@
+//Chapter 13 Thermodynamics Entropy and Free Energy
+
+clc;
+clear;
+
+//Initialisation of Variables
+T= 25 //C
+a= 0.2 //molar
+P= 1 //atm
+F1= -5126 //cal
+R= 2 //cal/mole K
+
+//CALCULATIONS
+F= F1+R*(273+T)*2.303*log10(a**2)
+
+//RESULTS
+mprintf("Value of F = %.0f cal",F)