blob: fdd6cabba6d91114303cabb48e5d98c43f783d90 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
//Caption:Find the value of generated emf
//Exa:2.7
clc;
clear;
close;
P=8;//no. of poles
A=8;
Z=760;//no.of conductors
Phy=35*10^-3;//flux in weber
N=500;//speed in rpm
E_g=(P*N*Phy*Z)/(60*A);
disp(E_g,'Value of generated emf (in volts)=')
|