diff options
Diffstat (limited to '3850/CH33/EX33.4')
-rw-r--r-- | 3850/CH33/EX33.4/Ex33_4.sce | 18 | ||||
-rw-r--r-- | 3850/CH33/EX33.4/Ex33_4.txt | 2 |
2 files changed, 20 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);
diff --git a/3850/CH33/EX33.4/Ex33_4.txt b/3850/CH33/EX33.4/Ex33_4.txt new file mode 100644 index 000000000..49c80afe1 --- /dev/null +++ b/3850/CH33/EX33.4/Ex33_4.txt @@ -0,0 +1,2 @@ + + Electric Current required to deposit 0.972g of Chromium in three hours = 0.500000 A
\ No newline at end of file |