summaryrefslogtreecommitdiff
path: root/3876/CH10/EX10.8/Ex10_8.sce
diff options
context:
space:
mode:
Diffstat (limited to '3876/CH10/EX10.8/Ex10_8.sce')
-rw-r--r--3876/CH10/EX10.8/Ex10_8.sce19
1 files changed, 19 insertions, 0 deletions
diff --git a/3876/CH10/EX10.8/Ex10_8.sce b/3876/CH10/EX10.8/Ex10_8.sce
new file mode 100644
index 000000000..597eadb0c
--- /dev/null
+++ b/3876/CH10/EX10.8/Ex10_8.sce
@@ -0,0 +1,19 @@
+//Chapter 10 Electmotive Force
+
+clc;
+clear;
+
+//Initialisation of Variables
+R= 8.31 //J/mol K
+T= 25 //C
+F= 96500 //coloums
+c= 0.08 //molar
+c1= 0.04 //molar
+
+//CALCULATIONS
+E= R*(T+273)*log(c/c1)/(2*F)
+E1= 2*E
+
+//RESULTS
+mprintf("Potential of the cell = %.3f v",E)
+mprintf("\nPotential of the cell = %.3f v",E1)