blob: 0c795fc0d7a577cbd12b52a25052b38454f0abb8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
//Electric machines and power systems by Syed A Nasar
//Publisher:TataMcgraw Hill
//Year: 2002 ; Edition - 7
//Example 2.2
//Scilab Version : 6.0.0 ; OS : Windows
clc;
clear;
bg=1; //flux density of air gap in T
u0=4*3.14*10^-7; //permiability of free space
lg=0.1*10^-3; //length of air gap in m
sf=0.9; //stacking factor of M19 steel
lm=100*10^-3; //length of the steel in m
h=130; //flux density in At/m
hg=bg/u0; //magnetic field intensity in A/m
fg=hg*lg; //reluctance drop or magnetic potential across gap in A
bm=bg/sf; //flux density in magnetic material in T
Fm=h*0.1; //magnetic potenial of other member in At
AT=Fm+fg; //the required ampere turn in At
printf('the required ampere turn in the exciting coil is %2f in At',AT)
|