summaryrefslogtreecommitdiff
path: root/3574/CH2/EX2.2/EX2_2.sce
diff options
context:
space:
mode:
Diffstat (limited to '3574/CH2/EX2.2/EX2_2.sce')
-rw-r--r--3574/CH2/EX2.2/EX2_2.sce35
1 files changed, 35 insertions, 0 deletions
diff --git a/3574/CH2/EX2.2/EX2_2.sce b/3574/CH2/EX2.2/EX2_2.sce
new file mode 100644
index 000000000..2db51954a
--- /dev/null
+++ b/3574/CH2/EX2.2/EX2_2.sce
@@ -0,0 +1,35 @@
+// Example 2.2
+// Computation of (a) Turns ratio (b) Number of turns in each winding
+// (c) Magnetizing current
+// Page No. 42
+
+clc;
+clear;
+close;
+
+Ep=2400; // Induced emf in primary winding
+Es=240; // Induced emf in primary winding
+Bmax=1.5; // Maximum flux density
+A=50*10^-4; // Cross section area
+f=60; // Frequency
+l=0.667; // Mean length of core
+H=450; // Magnetic field intensity
+
+
+// (a) Turns ratio
+Ts=Ep/Es;
+
+// (b) Number of turns in each winding
+phimax=Bmax*A;
+Np=Ep/(4.44*f*phimax); // Number of primary windings
+Ns=Np/Ts; // Number of secondary windings
+
+//(c) Magnetizing current
+Im=H*l/Np;
+
+
+//Display result on command window
+printf("\n Turns ratio = %0.0f ",Ts);
+printf("\n Number of primary windings = %0.0f turns ",Np);
+printf("\n Number of secondary windings = %0.0f turns ",Ns);
+printf("\n Magnetizing current = %0.2f A ",Im);