summaryrefslogtreecommitdiff
path: root/2384/CH10/EX10.14/ex10_14.sce
blob: e7186d6d0f1a146dd619677ec222b217d1d05b4a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// Exa 10.14
clc;
clear;
close;
format('v',7)
// Given data
P = 4;
slots = 144;
phi = 20;// in mWb
phi = phi * 10^-3;// in Wb
N = 720;// in rpm
A = 4;
P =4;
n1 = 2;// in coil/slot
n2 = 2;// in turns/coil
Z = slots*n1*n2;// total number of conductor
Eg = (N*P*phi*Z)/(60*A);// in V
disp(Eg,"The induced voltage in V is");