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.4/Ex5_4.sce | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100755 2642/CH5/EX5.4/Ex5_4.sce (limited to '2642/CH5/EX5.4/Ex5_4.sce') diff --git a/2642/CH5/EX5.4/Ex5_4.sce b/2642/CH5/EX5.4/Ex5_4.sce new file mode 100755 index 000000000..f01c0b067 --- /dev/null +++ b/2642/CH5/EX5.4/Ex5_4.sce @@ -0,0 +1,26 @@ +// FUNDAMENTALS OF ELECTICAL MACHINES +// M.A.SALAM +// NAROSA PUBLISHING HOUSE +// SECOND EDITION + +// Chapter 5 : DIRECT CURRENT MOTORS +// Example : 5.4 + +clc;clear; // clears the console and command history +// Given data +I = 40; // current in A +V_t = 230; // supply in V +N = 1100; // speed in rpm +R_a = 0.25; // armature resistance in Ω +R_sh = 230; //shunt resistance in Ω + + +// caclulations +I_sh = V_t/R_sh; // shunt field current in A +I_a = I - 1; // armature current in A +E_b = V_t - I_a*R_a; // back emf +T_a = 9.55*E_b*I_a/N; // amrature torque in N-m + + // display the result +disp("Example 5.4 solution"); +printf("\n The armature torque is \n T_a = %.2f N-m ",T_a ); -- cgit