blob: bec870e5c0f1f00cc2efe5a1c442ca734ab28da5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
//Caption:Find the number of conductors
//Exa:2.3
clc;
clear;
close;
P=8;//no. of poles
A=8;
Phy=40*10^-3;//flux in weber
N=500;//speed in rpm
E_g=250;//no-load voltage in volts
Z=(E_g*60*A)/(P*N*Phy);
disp(Z,'Number of conductors=')
|