blob: b51b042263dc16e24a6ce299a0f95fd994be463b (
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.6
// Computation of Induced emf
// Page No. 418
clc;
clear;
close;
// Given data
P=25000; // Power of the generator
VT=250; // Rated voltade of the machine
Ra=0.1053; // Armature resistance
Rip=0.0306; // Resistance of interpolar winding
Rcw=0.0141; // Resistance of compensating windings
// Induced emf
Ia=P/VT; // Armature current
Racir=Ra+Rip+Rcw; // Resistance of armature circuit
Ea=VT+Ia*Racir; // Induced emf
// Display result on command window
printf("\n Induced emf = %0.0f V ",Ea);
|