From b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b Mon Sep 17 00:00:00 2001 From: priyanka Date: Wed, 24 Jun 2015 15:03:17 +0530 Subject: initial commit / add all books --- 2534/CH1/EX1.2/Ex1_2.sce | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100755 2534/CH1/EX1.2/Ex1_2.sce (limited to '2534/CH1/EX1.2') 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. -- cgit