diff options
Diffstat (limited to '3876/CH13/EX13.9')
-rw-r--r-- | 3876/CH13/EX13.9/Ex13_9.sce | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/3876/CH13/EX13.9/Ex13_9.sce b/3876/CH13/EX13.9/Ex13_9.sce new file mode 100644 index 000000000..1e78d944e --- /dev/null +++ b/3876/CH13/EX13.9/Ex13_9.sce @@ -0,0 +1,15 @@ +//Chapter 13 Thermodynamics Entropy and Free Energy + +clc; +clear; + +//Initialisation of Variables +F= -51180 //cal +T= 25 //C +R= 1.99 //cal/mole K + +//CALCULATIONS +K= 10**(-F/(R*(273+T)*2.303)) + +//RESULTS +mprintf("Equilibrium constant = %.2e",K) |