summaryrefslogtreecommitdiff
path: root/147/CH14/EX14.5/Example14_5.sce
blob: fcd28e990b12f9e31e097f78379ccf05f855318e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
close();
clear;
clc;
//from example 14.4
//number of conductors 'n'
z = 728;
//rotating speed of armature 'N'
N = 1800; //rpm
//flux per pole 'phi'
phi = 30*10^(-3); //Wb
//number of poles 'p'
p = 4;
//for wave wound armature
a = 2;
//voltage induced in armature 'E'
E = phi*N*z*p/(60*a); //V
mprintf("Voltage induced in the armature, E = %0.1f V",E);