diff options
author | priyanka | 2015-06-24 15:03:17 +0530 |
---|---|---|
committer | priyanka | 2015-06-24 15:03:17 +0530 |
commit | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch) | |
tree | ab291cffc65280e58ac82470ba63fbcca7805165 /2213/CH3/EX3.5 | |
download | Scilab-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.5')
-rwxr-xr-x | 2213/CH3/EX3.5/ex_3_5.sce | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/2213/CH3/EX3.5/ex_3_5.sce b/2213/CH3/EX3.5/ex_3_5.sce new file mode 100755 index 000000000..b9bdda980 --- /dev/null +++ b/2213/CH3/EX3.5/ex_3_5.sce @@ -0,0 +1,14 @@ +//Example 3.5 // thickness of copper deposited +clc; +clear; +close; +//given data : +A=0.00025;//in m^2 +D=8900;//in kg/m^3 +Z=32.95*10^-8;//in kg/C +I=1.5;//in A +t=60*60;//in seconds +m=Z*I*t;//in kg +v=m/D; +T=(v/A); +disp("Thickness of copper deposited is "+string(T)+"m or "+string(T*10^3)+"mm") |