blob: 886a4d26e88a3fd3d05bce21de3f59043a22c6af (
plain)
1
2
3
4
5
6
7
8
9
10
|
//example2.1
clc
disp("P=4 Z=440 psi=0.07 Wb and N=900 r.p.m.")
disp("E=(psi*P*N*Z)/(6*A)")
disp("i)For lap wound, A=P=4")
e=(0.07*900*440)/60
disp(e,"Therefore, E(in V)=(psi*N*Z)/60=")
disp("ii)For wave wound, A=2")
e=(0.07*900*4*440)/120
disp(e,"Therefore, E(in V)=(psi*P*N*Z)/120=")
|