summaryrefslogtreecommitdiff
path: root/3718/CH3/EX3.7/Ex3_7.sce
diff options
context:
space:
mode:
Diffstat (limited to '3718/CH3/EX3.7/Ex3_7.sce')
-rw-r--r--3718/CH3/EX3.7/Ex3_7.sce16
1 files changed, 16 insertions, 0 deletions
diff --git a/3718/CH3/EX3.7/Ex3_7.sce b/3718/CH3/EX3.7/Ex3_7.sce
new file mode 100644
index 000000000..6d5415a06
--- /dev/null
+++ b/3718/CH3/EX3.7/Ex3_7.sce
@@ -0,0 +1,16 @@
+//Chapter 3: Thermodynamic and Chemical Equilibrium
+//Problem: 7
+clc;
+
+//Declaration of Constant
+d_h_vap = 2.0723 // kJ per g
+Tb = 373 // K
+
+// Solution
+d_h_vap = d_h_vap * 18 // kJ per mol
+d_s = d_h_vap / Tb
+d_g = d_h_vap - Tb * d_s
+d_s = d_s * 1000
+
+mprintf("The Entropy change is: %.1f J / mol / K\n",d_s)
+mprintf(" The Free Energy change is:%d kJ/mol", d_g)