diff options
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.
|