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 --- 833/CH3/EX3.2/Ex3_2.sce | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100755 833/CH3/EX3.2/Ex3_2.sce (limited to '833/CH3/EX3.2/Ex3_2.sce') diff --git a/833/CH3/EX3.2/Ex3_2.sce b/833/CH3/EX3.2/Ex3_2.sce new file mode 100755 index 000000000..0b13b6eba --- /dev/null +++ b/833/CH3/EX3.2/Ex3_2.sce @@ -0,0 +1,18 @@ +//Caption: Calculate Phase and Line currents in (a)High voltage (b)Low voltage windings of transformer +//Exa:3.2 +clc; +clear; +close; +P=50000//Power of induction motor(in watts) +V=440//Voltage of induction motor(in volts) +eff=90//Efficiency(in%) +pf=0.85//power factor +V_1=11000//Primary side voltage of transformer(in volts) +V_2=440//Secondary side voltage of transformer(in volts) +I_fl=P/((3^0.5)*V*pf*(eff/100)) +v=V/(3^0.5) +n=V_1/v +I_ph=I_fl/(n) +I_l=(3^0.5)*I_ph +disp(I_ph,I_l,'(a)High Voltage side line and phase currents(inA)=') +disp(I_fl,I_fl,'(b)Low voltage side phase and line currents(inA)=') \ No newline at end of file -- cgit