summaryrefslogtreecommitdiff
path: root/3850/CH33/EX33.4/Ex33_4.sce
diff options
context:
space:
mode:
Diffstat (limited to '3850/CH33/EX33.4/Ex33_4.sce')
-rw-r--r--3850/CH33/EX33.4/Ex33_4.sce18
1 files changed, 18 insertions, 0 deletions
diff --git a/3850/CH33/EX33.4/Ex33_4.sce b/3850/CH33/EX33.4/Ex33_4.sce
new file mode 100644
index 000000000..973393442
--- /dev/null
+++ b/3850/CH33/EX33.4/Ex33_4.sce
@@ -0,0 +1,18 @@
+
+//To Calculate the Electric Current
+
+//Example 33.4
+
+clear;
+
+clc;
+
+m=0.972;//Mass of Chromium deposited in grams
+
+Z=0.00018;//Electrochemical Equivalent of Chromium
+
+t=3*3600;//Time is in seconds
+
+I=m/(Z*t);//Electric Current required to deposit the Chromium in three hours
+
+printf("Electric Current required to deposit 0.972g of Chromium in three hours = %f A",I);