blob: f640e244cc12ddbc51501027a2fbe91c4b07bae6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
//Book Name:Fundamentals of Electrical Engineering
//Author:Rajendra Prasad
//Publisher: PHI Learning Private Limited
//Edition:Third ,2014
//Ex8_6.sce.
clc;
clear;
N=360;
phi=45e-3;
s=120;
E=260;
p=4;
n=N/60;
a=8;
Z=(E*a)/(2*phi*p*n);
coductors_per_slot=Z/s;
total_no_of_conductors=coductors_per_slot*s;
printf("\n Number of conductors per slot=%d \n",coductors_per_slot)
phi=(E*a)/(2*960*n*p)
printf("\n Flux=%1.5f Wb/pole",phi)
|