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/CH2/EX2.7/2_7.sce | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100755 1938/CH2/EX2.7/2_7.sce (limited to '1938/CH2/EX2.7/2_7.sce') diff --git a/1938/CH2/EX2.7/2_7.sce b/1938/CH2/EX2.7/2_7.sce new file mode 100755 index 000000000..ccf6fbd2a --- /dev/null +++ b/1938/CH2/EX2.7/2_7.sce @@ -0,0 +1,19 @@ +clc,clear +printf('Example 2.7\n\n') + +V=220,R_a=0.3,R_sh=110 //resistance of armature and shunt field winding +//no load +N_0=1000 //no load speed in r.p.m +I_L0 =6 //line current on no load +I_sh= V/R_sh //no load shnt current +I_a0 = I_L0 - I_sh //no load armature current +E_b0= V - I_a0*R_a //no load induced emf + +//full load +I_sh_FL= V/R_sh +I_L_FL=50 //line current at full load +I_a_FL= I_L_FL - I_sh_FL//full load armature current +E_b_FL= V - I_a_FL * R_a //full load induced emf +//using speed equation, as treating phi as constant +N_FL=N_0 * (E_b_FL/E_b0) +printf('Speed on full load is %.2f r.p.m',N_FL) -- cgit