blob: fc7c489ff140b87dcc3da35e7ab0d1a8c2f93c59 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
// Exa 10.1
clc;
clear;
close;
format('v',6)
// Given data
A = 2;// in wavewound
N = 1200;// in rpm
phi = 0.02;// in Wb
n = 65;// no of slots
P = 4;
Z = n*12;// total number of conductor
// Emf equation
Eg = (N*P*phi*Z)/(60*A);// in V
disp(Eg,"The emf generated in V is");
|