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 --- 2642/CH5/EX5.5/Ex5_5.sce | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100755 2642/CH5/EX5.5/Ex5_5.sce (limited to '2642/CH5/EX5.5') diff --git a/2642/CH5/EX5.5/Ex5_5.sce b/2642/CH5/EX5.5/Ex5_5.sce new file mode 100755 index 000000000..5da7290f5 --- /dev/null +++ b/2642/CH5/EX5.5/Ex5_5.sce @@ -0,0 +1,31 @@ +// FUNDAMENTALS OF ELECTICAL MACHINES +// M.A.SALAM +// NAROSA PUBLISHING HOUSE +// SECOND EDITION + +// Chapter 5 : DIRECT CURRENT MOTORS +// Example : 5.5 + +clc;clear; // clears the console and command history + +// Given data +P = 6 // number of poles +V_t = 230 // supply to shunt motor in V +Z = 450 // number of conductors +R_a = 0.8 // armature resistance in ohm +I = 30 // supply current in A +P_0 = 5560 // out put power in W +I_F = 3 // current through field winding +phi = 25*10^-3 // flux per pole in Wb + +// caclulations +A = 6 // for lap wond A=P +I_a = I-I_F // armature current in A +E_b = V_t-I_a*R_a // back emf in V +N = 60*A*E_b/(P*Z*phi) // speed in rpm +T_sh = 9.55*P_0/N // shaft torque in N-m + +// display the result +disp("Example 5.5 solution"); +printf(" speed \n N = %.1f rpm \n", N ); +printf(" shaft torque \n T_sh = %.1f N-m \n", T_sh ); -- cgit