summaryrefslogtreecommitdiff
path: root/3876/CH16/EX16.3/Ex16_3.sce
diff options
context:
space:
mode:
Diffstat (limited to '3876/CH16/EX16.3/Ex16_3.sce')
-rw-r--r--3876/CH16/EX16.3/Ex16_3.sce15
1 files changed, 15 insertions, 0 deletions
diff --git a/3876/CH16/EX16.3/Ex16_3.sce b/3876/CH16/EX16.3/Ex16_3.sce
new file mode 100644
index 000000000..3198503b3
--- /dev/null
+++ b/3876/CH16/EX16.3/Ex16_3.sce
@@ -0,0 +1,15 @@
+//Chapter 16 Oxidation Reduction Potentials
+
+clc;
+clear;
+
+//Initialisation of Variables
+p= 60 //percent
+x= 0.030 //v
+E= -0.039 //v
+
+//CALCULATIONS
+V= E-x*log10((1-(p/100))/(p/100))
+
+//RESULTS
+mprintf("Redox potential of sample= %.3f v",V)