summaryrefslogtreecommitdiff
path: root/3856/CH6/EX6.3
diff options
context:
space:
mode:
Diffstat (limited to '3856/CH6/EX6.3')
-rw-r--r--3856/CH6/EX6.3/Ex6_3.sce19
-rw-r--r--3856/CH6/EX6.3/Ex6_3.txt1
2 files changed, 20 insertions, 0 deletions
diff --git a/3856/CH6/EX6.3/Ex6_3.sce b/3856/CH6/EX6.3/Ex6_3.sce
new file mode 100644
index 000000000..a55420ed8
--- /dev/null
+++ b/3856/CH6/EX6.3/Ex6_3.sce
@@ -0,0 +1,19 @@
+//Calculate the Maximum Electrical work that can be obtained from CH4(g)+2O2(g)=CO2(g)+2H2O(l)
+
+//Example 6.3
+
+clc;
+
+clear;
+
+delrH=-890.3; //change in Enthalp in kJ mol^-1
+
+delrS=-242.8; //Change in Entropy in J K^-1
+
+T=25+273; //Temperature in K
+
+delrG=delrH-(T*delrS/1000); //Change in Gibbs energy in kJ mol^-1
+
+Welmax=delrG; //Change in Gibbs Energy converted into maximum electrical work in kJ mol^-1 thus the maximum electrical work the system can do on the surroundings is equal to positive
+
+printf("Maximum work done = %.0f kJ mol^-1",Welmax);
diff --git a/3856/CH6/EX6.3/Ex6_3.txt b/3856/CH6/EX6.3/Ex6_3.txt
new file mode 100644
index 000000000..495244886
--- /dev/null
+++ b/3856/CH6/EX6.3/Ex6_3.txt
@@ -0,0 +1 @@
+ Maximum work done = -818 kJ mol^-1 \ No newline at end of file