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 /2534/CH1/EX1.2 | |
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 '2534/CH1/EX1.2')
-rwxr-xr-x | 2534/CH1/EX1.2/Ex1_2.sce | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/2534/CH1/EX1.2/Ex1_2.sce b/2534/CH1/EX1.2/Ex1_2.sce new file mode 100755 index 000000000..758f7bcdd --- /dev/null +++ b/2534/CH1/EX1.2/Ex1_2.sce @@ -0,0 +1,14 @@ +//Ex1.2
+clc
+disp("fusing current, I = K(d^1.5) Amp.")//formula used for fusing current
+d=0.0201
+disp("d = "+string(d)+"inches") //initializing value of diameter
+I1=10244*(d^1.5);I2=7585*(d^1.5); I3=5320*(d^1.5); I4=3148*(d^1.5); I5=1642*(d^1.5) //calculation for fusing current
+disp("for Copper, I = 10244*(d^1.5) = "+string(I1)+"Amp.")
+disp("for Aluminum, I = 7585*(d^1.5) = "+string(I2)+"Amp.")
+disp("for Silver, I = 5320*(d^1.5) = "+string(I3)+"Amp.")
+disp("for Iron, I = 3148*(d^1.5) = "+string(I4)+"Amp.")
+disp("for Tin, I = 1642*(d^1.5) = "+string(I5)+"Amp.")
+
+
+// note : calculation for fusing current of Iron is wrong.
|