blob: b0c1747c479dee74da7841ac3269ee34f43b6318 (
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 1.6
// Computation of (a) Frequency (b) Pole flux
// Page No. 27
clc;
clear;
close;
// Given data
w=36; // Angular frequency
E=24.2; // Voltage
pi=3.14;
N=6; // Number of turns of rotor
// (a) frequency
f=w/(2*pi); // Relation between angular frequency and frequency
// (b) pole flux
Erms=E/sqrt(2);
phimax = Erms/(4.44*f*N); // Relation to find pole flux
//Display result on command window
printf("\n Frequency = %0.4f Hz ",f);
printf("\n Pole flux = %0.2f Wb ",phimax);
|