diff options
Diffstat (limited to '3718/CH3/EX3.3/Ex3_3.sce')
-rw-r--r-- | 3718/CH3/EX3.3/Ex3_3.sce | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/3718/CH3/EX3.3/Ex3_3.sce b/3718/CH3/EX3.3/Ex3_3.sce new file mode 100644 index 000000000..fc8f0dd6c --- /dev/null +++ b/3718/CH3/EX3.3/Ex3_3.sce @@ -0,0 +1,15 @@ +//Chapter 3: Thermodynamic and Chemical Equilibrium
+//Problem: 3
+clc;
+
+//Declaration of Variables
+delta_g = -16.0 // Kelvin cal
+delta_h = -10.0 // Kelvin cal
+T = 300 // Kelvin
+
+// Solution
+delta_s = (delta_h - delta_g) * 10 ** 3 / T // cal/deg
+new_t = 330 // Kelvin
+new_delta_g = (delta_h * 10 ** 3) - new_t * delta_s
+
+mprintf("The free energy at 330K is: %.2e K cal",new_delta_g)
|