diff options
author | prashantsinalkar | 2017-10-10 12:27:19 +0530 |
---|---|---|
committer | prashantsinalkar | 2017-10-10 12:27:19 +0530 |
commit | 7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 (patch) | |
tree | dbb9e3ddb5fc829e7c5c7e6be99b2c4ba356132c /3856/CH6/EX6.3 | |
parent | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (diff) | |
download | Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.gz Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.bz2 Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.zip |
initial commit / add all books
Diffstat (limited to '3856/CH6/EX6.3')
-rw-r--r-- | 3856/CH6/EX6.3/Ex6_3.sce | 19 | ||||
-rw-r--r-- | 3856/CH6/EX6.3/Ex6_3.txt | 1 |
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 |