blob: f0451ba92f8392efb3d0124410fb37f664ff7218 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
// Determine the EMF generated
clc;
clear;
phi=40*(10^-3);
A=8; //Lap Winding
P=8;
N=400;
Z=960;
E=P*N*Z*phi/(60*A); // EMF equation of a DC machine
printf('The EMF generated = %g volts \n',E)
|