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.10 | |
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.10')
-rwxr-xr-x | 2213/CH3/EX3.10/ex_3_10.sce | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/2213/CH3/EX3.10/ex_3_10.sce b/2213/CH3/EX3.10/ex_3_10.sce new file mode 100755 index 000000000..bed15fb66 --- /dev/null +++ b/2213/CH3/EX3.10/ex_3_10.sce @@ -0,0 +1,20 @@ +//Example 3.10 // quantity of electricity and time taken +clc; +clear; +close; +//given data : +d=0.1;//in m +l=.25;// in m +Tc=2;// thickness of coating in mm +D=8.9;//density of metal in gm/CC +C_density=160;//in A/sq +I_efficiency=0.9; +S=%pi*d*l; +m=S*Tc*10^-3*D*10^3; +Z=30.43*10^-8;// in kg/C +Q=(m/Z)/3600;// in A-h +Q_dash=Q/I_efficiency; +disp(Q_dash,"quantity of electricity,Q_dash(A-h) = ") +I=C_density*S; +t=Q_dash/I; +disp(t,"time required,t(hours) = ") |