summaryrefslogtreecommitdiff
path: root/2192/CH7/EX7.1
diff options
context:
space:
mode:
Diffstat (limited to '2192/CH7/EX7.1')
-rwxr-xr-x2192/CH7/EX7.1/7_1.sce13
1 files changed, 13 insertions, 0 deletions
diff --git a/2192/CH7/EX7.1/7_1.sce b/2192/CH7/EX7.1/7_1.sce
new file mode 100755
index 000000000..71548e906
--- /dev/null
+++ b/2192/CH7/EX7.1/7_1.sce
@@ -0,0 +1,13 @@
+clc,clear
+printf('Example 7.1\n\n')
+
+Z=0.0003295 //electrochemical equivalent of copper
+I=1 //current strength
+T=100*60 //time in seconds
+W= Z*I*T //weight of nickel deposited
+D=8.9 //density of nickel
+V=W/D //volume of nickel deposited
+A=2.25 //area of plate
+t=V/A //thickness of deposit
+
+printf('Thickness of copper deposited = %.4f cm',t)