summaryrefslogtreecommitdiff
path: root/2213/CH3/EX3.6
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /2213/CH3/EX3.6
downloadScilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip
initial commit / add all books
Diffstat (limited to '2213/CH3/EX3.6')
-rwxr-xr-x2213/CH3/EX3.6/ex_3_6.sce16
1 files changed, 16 insertions, 0 deletions
diff --git a/2213/CH3/EX3.6/ex_3_6.sce b/2213/CH3/EX3.6/ex_3_6.sce
new file mode 100755
index 000000000..bc3aa7ce9
--- /dev/null
+++ b/2213/CH3/EX3.6/ex_3_6.sce
@@ -0,0 +1,16 @@
+//Example 3.6 // current
+clc;
+clear;
+close;
+//given data :
+m=50;// in gm
+t=2*60*60;// in sec
+ECE_silver=111.8*10^-8;// in kg C^-1
+atomic_weight1=108;// for silver
+atomic_weight2=63.5;//for copper
+valency=1;//for silver
+Ces=atomic_weight1/valency;// chemical equivalent of silver
+Cec=atomic_weight2/2;// chemical equivalent of copper
+Z=ECE_silver*(Cec/Ces);
+I=(m*10^-3)/(Z*t);
+disp(I,"current,I(A) = ")