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/CH7/EX7.2/Ex7_2.sce | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100755 2642/CH7/EX7.2/Ex7_2.sce (limited to '2642/CH7/EX7.2') diff --git a/2642/CH7/EX7.2/Ex7_2.sce b/2642/CH7/EX7.2/Ex7_2.sce new file mode 100755 index 000000000..588142d29 --- /dev/null +++ b/2642/CH7/EX7.2/Ex7_2.sce @@ -0,0 +1,29 @@ +// FUNDAMENTALS OF ELECTICAL MACHINES +// M.A.SALAM +// NAROSA PUBLISHING HOUSE +// SECOND EDITION + +// Chapter 7 : THREE-PHASE INDUCTION MOTOR +// Example : 7.2 + +clc;clear; // clears the console and command history + +// Given data +E_BR = 120 // voltage found under blocked condition in V +P = 4 // number of poles +f = 50 // frequecny in Hz +N_l = 1450 // speed in rpm + +// caclulations +N_s = 120*f/P // synchronous speed in rpm +s = (N_s-N_l)/N_s // slip +f_r = s*f // rotor frequency in Hz +E_r = s*E_BR // Rotor voltage in V + +// display the result +disp("Example 7.2 solution"); +printf(" \n Synchronous speed \n N_s = %.1f rpm \n", N_s); +printf(" \n Slip \n s = %.3f \n", s); +printf(" \n Rotor frequency \n f_r = %.2f Hz \n", f_r); +printf(" \n Rotor voltage \n E_r = %.2f V \n", E_r); + -- cgit