blob: b68da3e10c4f13f789f169907e0e14c8ff0825f7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
// Example 10.1
// Computation of (a) Induced emf (b) Frequency of the rectangular voltage
// wave in the armature winding
// Page No. 394
clc;
clear;
close;
// Given data
E1=136.8; // Generated emf
P=6; // Number of poles
n=1180; // Operating speed of machine
// (a) Induced emf
E2=E1*0.75*2;
// (b) Frequency of the rectangular voltage wave in the armature winding
f=P*n*0.75/120;
//Display result on command window
printf("\n Induced emf = %0.1f V ",E2);
printf("\n Frequency of the rectangular voltage wave = %0.2f Hz ",f);
|