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/CH3/EX3.4/Ex3_4.sce | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100755 2642/CH3/EX3.4/Ex3_4.sce (limited to '2642/CH3/EX3.4') diff --git a/2642/CH3/EX3.4/Ex3_4.sce b/2642/CH3/EX3.4/Ex3_4.sce new file mode 100755 index 000000000..295de1627 --- /dev/null +++ b/2642/CH3/EX3.4/Ex3_4.sce @@ -0,0 +1,26 @@ +// FUNDAMENTALS OF ELECTICAL MACHINES +// M.A.SALAM +// NAROSA PUBLISHING HOUSE +// SECOND EDITION + +// Chapter 3 : TRANSFORMER AND PER UNIT SYSTEM +// Example : 3.4 +clc;clear; // clears the console and command history + +// Given data +N_1 = 450 // number of turns in the primary coil of transformer +N_2 = 45 // number of turns in the secondary coil of transformer +Z_L = 3 // load impedance in Ω +V_1 = 15 // primary coil voltage of transformer in V + +// caclulations +a = N_1/N_2 // turn ratio +Z_1 = a^2*Z_L // load impedance referred to primary ohm +I_1 = V_1/Z_1 // primary current in A + + +// display the result +disp("Example 3.4 solution"); +printf(" \n Turn ratio \n a = %.0f \n", a); +printf(" \n Load impedance referred to primary \n Z_1 = %.0f Ω \n", Z_1); +printf(" \n Primary current \n I_1 = %.2f A \n", I_1); -- cgit