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 --- 1938/CH3/EX3.3/3_3.sce | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100755 1938/CH3/EX3.3/3_3.sce (limited to '1938/CH3/EX3.3') diff --git a/1938/CH3/EX3.3/3_3.sce b/1938/CH3/EX3.3/3_3.sce new file mode 100755 index 000000000..38e5c95e9 --- /dev/null +++ b/1938/CH3/EX3.3/3_3.sce @@ -0,0 +1,28 @@ +clc,clear +printf('Example 3.3\n\n') + +//no load +I=14 //input current +V=230 +power_output_FL = 45*10^3 +power_input=V*I +I_sh=2.55 //field current +R_a=0.032 //armature resistance +I_a=I-I_sh +cu_loss_NL = I_a^2*R_a //no load copper loss +brush_loss=2*I_a +constant_loss= power_input - cu_loss_NL - brush_loss + +//full load + +//I=I_a+ 2.55 +//Motor input= Motor output + constant loss + brush loss + cu loss +// solving for I_a , I_a^2 - 7125 I_a + 1487700.3 =0 +p=[1 -7125 1487700.3] +roots(p) +I_a=ans(2) //ignoring second root as its too large +I=I_a+I_sh +printf('Full load current is %.2f A\n',I) +power_input=V*I +eta=100*(power_output_FL/power_input) +printf('Efficiency at full load is %.2f percent',eta) -- cgit