SlideShare a Scribd company logo
1 of 15
Download to read offline
Design of Low Weight High Speed Induction Machine using Octave
Durga Sadasivuni
Abstract
This paper presents design strategy for a low weight
high speed Induction machine. Induction machines are
found in every applications right from the electrical
fans to large industrial applications such as Tram car or
pusher cars in coke ovens in steel plants. With increase
in demand of renewable energy, electrical vehicles
industries are showing more keen interest in designing
motors which can provide high speed with less weight.
The design features are obtained by running it on GNU
octave.
key words: Induction machines, octave, weight.
1. INTRODUCTION
Induction machines are found in everyday
applications. The requirement is increased with
increase in demand of Electric vehicles to reduce
the vehicle’s exhaust; the demand of induction
motors has increased.
According to The International Renewable Energy
Agency (IRENA), transport is responsible for
around 30% of global energy consumption and
hence, it’s a current key challenge to cut the energy
consumption by transports.
So, its of vital importance for use to look for
efficient design to reduce the consumption by
finding alternative ways to aviate design parameters
of the motors used.
The design parameters must be such that, it can equally
maintain the efficiency along with cost of
manufacturing must be balanced in parallel.
2. DESIGN CONSIDERATIONS
• Frames
Stator side-
Frames are die-cast or fabricated strong silicon-
aluminum alloy for getting good mechanical
strength.
Also the Diameter “D” of the stator diameter is
taken into consideration since we have
𝑝∅ = 𝐵𝑎𝑣𝑔 × 𝜋 × 𝐿
where,
L= core length
and
3𝐼 𝑝ℎ × 𝑍 𝑝ℎ
𝜋𝐷
= 𝑞
where q is the specific electric loading
q can vary from 10000 ac/m to 450000 ac/m
For overall good design-
D&L =1.0 to 1.1 and for minimum cost, D&L
should be taken from 1.5 to 2.0.
Rotor side-
The output equation is given as
𝑄 = 𝐶0 𝐷2
𝐿𝑛 𝑠
and
𝐶0 = 1.1𝐾 𝑤 𝐵𝑎𝑣 𝑎𝑐 × 10−3
The winding factor 𝐾 𝑤 is taken as 0.9.
⇒ 𝐷2
𝐿 =
𝑄
𝐶0 𝑛 𝑠
𝐵𝑎𝑣𝑔 can be taken between 0.3 to 0.6 wb/m2
For large overloading capacity, 𝐵𝑎𝑣𝑔 is taken as
0.65 wb/m2
.
Armature conductors, ac are considered when the
insulation heat is to be taken care. Generally
armature conductors ac lies between 5000-45000.
3. Main dimensions-
For good overall design,
𝐿
𝑡
= 0.6
where,
𝐿
𝑡
is the core length/pole pitch.
• Stator Turns/phase =
𝑇𝑆 =
𝐸 𝑝ℎ
4.44 𝑓∅ 𝑚 𝑘 𝑤𝑠
where
𝑘 𝑤𝑠 =0.955
∅ 𝑚 = 𝐵𝑎𝑣𝑔 ×
𝜋 × 𝐿 × 𝐷
𝑝
where p is the number of poles.
• Stator Conductors-
The current density is maintained 3-5 A/mm2
For low area of conductors, round conductors are used
and for high value , strip conductors are used.
Number of slots/pole/phase ≮ 2
4. CASE STUDY
If the input power is 20kW with supply voltage of
124 V, then frequency maintained at 100Hz,
𝐵𝑎𝑣𝑔= 0.4,
ampere conductors(ac) =22000
winding factor kw =0.9,
power factor = 0.8 and
efficiency 𝜂 = 0.8
at speed = 3000rpm,
Then, the design is optimized as per low weight and
high speed and with cost of the motor being
minimum.
5. OCTAVE CODE
function IM1
% input data.
fprintf('n -------------------------------------------------------------- n');
fprintf('n INPUT THE SPECIATIONS OF THE INDUCTION MOTORn');
ph=input('n no of phases=n');
p=input('power out KW=n');
v=input('voltage in volts(line)=n');
f=input('frequency on hz=n');
Bav=input('bav in Wb/m2=n');
ac=input('ac in a/m=n');
Kw=input('winding factor=n');
pf=input('power facot=n');
eff=input('eff of m/c=n');
N=input('Speed of m/c=n');
% to find speed
ns=N/60;%rps
%poles
po=(2*f)/ns;
% to find output co-efficient
Co=11*Kw*Bav*ac*10^-3;
fprintf('noutput coeffieicent = %f n',Co);
% to find input KVA
Q=p/(eff*pf);
% to find D and L
D=abs((Q/(Co*ns))/1.18)^(1/3);
L=1.18*D;%ventilating ducts are required
%calculate tou
tou=L/1.5;%for low cost design consideration
% to find pole pitch
pp=(pi*D)/po;
%peripheral speed
ps=(pi*D*ns);
fprintf('n------------------------------------------------- n');
fprintf('n DIAMETER AND NET LENGTH OF THE INDUCTION MOTOR n');
fprintf('n ------------------------------------------------------------- n');
fprintf('n THE DIAMETER OF THE INDUCTIONMOTOR=%.6f METERS n',D);
fprintf( 'n peripheral speed = %f mps n' , ps);
%stator design
% flus per pole
flux=Bav*(pi*D*L)/po;
disp(flux)
% turns per phase
Tp=v/(4.44*f*flux*Kw);
% no of stator slots
qs=input('n no of stator slots per pole per phase= n');
ss=ph*po*qs;%total stator slots
disp(ss);
yss=(pi*D)/ss;
sp=ss/ph;
sc=6*Tp;
zss=sc/ss;
cs=ss/po;
fprintf('n THE COIL SPAN OF THE INDUCTIONMOTOR=%.4f n',cs);
evenno=input('n IF THE CS VALUE IS EVEN , THANTYPE 2 ELSE ANY OTHER NO= n');
cs1=2;
if cs1==evenno
alpha=(1/cs)*180;
kp=cos((alpha/2)*(pi/180));
kd=(sin((qs*alpha/2)*(pi/180)))/(qs*(sin((qs*alpha/4)*(pi/180))));
kws=kp*kd;
disp(kws);
end
% conductor size
Is=(p*1e3)/(3*v*eff*pf);
disp(Is);
IsL=sqrt(3)*Is;
fprintf('n THE STATOR LINE CURRENT OF THE INDUCTION MOTOR=%.4f AMPS n',IsL);
currentdensity=input('ncurrent density corresponding to stator line current= n');
A=Is/4;
Db=input('nbare diameter in meters =');
as=pi/(4*Db^2);
density=Is/as;
fprintf('n THE DENSITY OF STATOR CONDUCTOR OF THE INDUCTION MOTOR=%.10f A/M2
n',density);
d1=input('n diameter of enamelled conductor CORRESPONDING TO DENSITY in meters = n');
% slot dimensions
S=zss*as;
sf=input('nspace factor for the slots= n');
As=S/sf;
Li=input('n length of iron = n');
wts=flux/(1.7*(ss/po)*Li);
Lmts=(2*L)+(2.3*(tou))+0.24;
% flux density in stator teeth
Bmst=flux/((ss/po)*wts*Li);
% flux in stator core
fluxstator=flux/2;
B=input('n flux density of the stator core in wb/m2= n');
Asc=fluxstator/B;
dcs=Asc/Li;
dcd=input('core depthin meters = n');
Bcs=(dcs/dcd)*1.2;
h=input('nheight of the core in m= n');
lip=input('nlip in meters =n');
wedge=input('nwedge in meters = n');
dss=h+lip+wedge;
Do=D+2*dss+2*dcs;
fprintf('n-----------------------------------------------------------------n');
fprintf('n OUTPUT OF THE STATOR DESIGN OF INDUCTION MOTOR n');
fprintf('n---------------------------------------------------------- n');
fprintf('n THE FLUX PER POLE OF THE INDUCTION MOTOR=%.4f WB n',flux);
fprintf('n THE STATOR TURNS PER POLE OF THE INDUCTION MOTOR=%.4f TURNS n',Tp);
fprintf('n THE STATOR WINDING FACTOR OF THE INDUCTION MOTOR=%.4f n ',kws);
fprintf('n THE STATOR CURRENT OF THE INDUCTION MOTOR=%.4f AMPS n',Is);
fprintf('n THE WIDTH OF THE STATOR TEETH OF THE INDUCTION MOTOR=%.4f METERS n',wts);
fprintf('n THE LENGTH OF MEAN TURN OF THE INDUCTION MOTOR=%.4f METERS n',Lmts);
fprintf('n THE FLUX DENSITY IN STATOR TEETH OF THE INDUCTION MOTOR=%.4f WB n',Bmst);
fprintf('n THE DEPTH OF STATOR CORE OF THE INDUCTION MOTOR=%.4f METERS n',dcs);
fprintf('n THE OUTER DIAMETER OF STATOR LAMINATIONS OF THE INDUCTION MOTOR=%.4f
METERS n',Do);
fprintf('n----------------------------------------------------- n');
% Rotor design
Lg=0.2+2*sqrt(D*L);
fprintf('n THE LENGTH OF AIR GAP OF ROTOR OF THE INDUCTION MOTOR=%.4f METERS n',Lg);
Lg1=input('n if Lg is greater than 0.3 it must be taken as 0.0003 METERS for mm too m conversion =
n');%conversion from mm to m
Dr=D-2*Lg1;
Sr=input('n rotor slots= n');
ysr=(pi*Dr)/Sr;
Ib=(6*Is*Tp*kws*pf)/Sr;
rotordensity=input('n rotor bar current density in A/m2=n');
ab=Ib/rotordensity;
conductorsize=input('nconductor size standard= n');
wsr=input('n width of rotor slot in meters = n');
dsr=input('n depth of rotor slot in meters = n');
slotpitch=(pi*(Dr-2*wsr))/Sr;
wt=slotpitch-wsr;
fluxdensity=flux/((Sr/po)*Li*wt);
Lb=input('n length of each bar in meters= n');
Resistivity=input('n resisitivity of the rotor= n');
rb=Resistivity*Lb/ab;
Tclb=Sr*Ib^2*rb*1e6;
fprintf('n----------------------------------------------------------------------- n');
fprintf('n OUTPUT OF THE ROTOR DESIGN OF INDUCTION MOTOR n ');
fprintf('n------------------------------------------------------------------ n');
fprintf('n THE AIR GAP LENGTH OF ROTOR OF THE INDUCTION MOTOR=%.4f METERS n',Lg);
fprintf('n THE DIAMETER OF ROTOR OF THE INDUCTION MOTOR=%.4f METERS n',Dr);
fprintf('n THE ROTOR SLOT PITCH OF THE INDUCTION MOTOR=%.4f METERS n',ysr);
fprintf('n THE ROTOR BAR CURRENT OF THE INDUCTION MOTOR=%.4f AMPS n',Ib);
fprintf('n THE WIDTH OF THE ROTOR TEETH AT THE ROOT OF THE INDUCTION MOTOR=%.4f
METERS n ',wt);
fprintf('n THE RESISTANCE OF EACH BAR OF THE INDUCTION MOTOR=%.12f OHMS n',rb);
fprintf('n THE FLUX DENSITY IN ROTOR TEETH OF THE INDUCTION MOTOR=%.4f WB
n',fluxdensity);
fprintf('n THE TOTAL COPPER LOSSES IN BARS OF THE INDUCTION MOTOR=%.4f WATTS n',Tclb);
fprintf('n------------------------------------------------------------- n');
% design of end rings .
Ibe=(Sr*Ib)/(pi*po);
currentdensityend=input('n current density of end ring in A/m2=n');
ae=Ibe/currentdensityend;
ae1=ae/1e6;
Doer=(Dr-2*wsr);
de=input('n depth of ring in meters = n');
Dier=Doer-2*de;
De=(Doer+Dier)/2;
resistivity=input('n resistivity of the end ring=n');
re=(resistivity*pi*De)/ae;
CL=2*Ib^2*re*1e3;
Tcl=Tclb+CL;
%rotoroutput=input('rotot output in KW =');
slip=(Tcl/(Tcl+(p*1e3)))*100;
%rotor core
dcr=dcs;
Bcr=input('n flux density in rotor core in wb/m2 n ');
Di=Dr-2*wsr-2*dcr;
fprintf('n------------------------------------------------------ n');
fprintf('n OUTPUT OF THE END RING OF INDUCTION MOTORn ');
fprintf('n-------------------------------------------------------------------------- n');
fprintf('n THE END RING CURRENT OF THE INDUCTION MOTOR=%.4f AMPSn ',Ibe);
fprintf('n THE AREA OF END RING OF THE INDUCTION MOTOR=%.4f SQUARE MILL-
METERSn',ae1);
fprintf('n THE RESISTANCE OF END RING OF THE INDUCTION MOTOR=%.12f OHMS n',re);
fprintf('n THE TOTAL ROTOR COPPER LOSSES OF THE INDUCTION MOTOR=%.4f WATTS n ',Tcl);
fprintf('n THE SLIP OF THE INDUCTION MOTOR=%.4f PERCENTAGE n ',slip);
fprintf('n THE INNER DIAMETER OF ROTOR LAMINATION OF THE INDUCTION MOTOR=%.4f
METERS n',Di);
fprintf('n--------------------------------------------------------------------- n');
% magnetizing current of stator
slotopening=input('n slot opening = n');
gaplength=input('n gap length=n');
statorratio=slotopening/gaplength;
Kcs=input('n carters coefficient=n');
wo=input('wo=');
Kgss=yss/(yss-Kcs*wo);
%rotor
slotopeningrotor=input('n rotor slot opening= n');
gaplengthrotor=input('rotor gap opening= n');
rotorratio=slotopeningrotor/gaplengthrotor;
Kcsr=input('n rotor carters coefficient= n');
wo1=input('nwo1=n');
Kgsr=ysr/(ysr-Kcsr*wo1);
Kgs=Kgss*Kgsr;
Kgd=input('n gap concentration factor n');
Kg=Kgs*Kgd;
Ag=((pi*D)/4)*L;
Bg=1.36*Bav;
Lge=Kg*gaplength;
Atg=800000*Bg*Kg*Lg1;
%stator teeth
Atp=(ss/po)*wts*Li;
Bts=input('n flux density of stator teeth=n');
Btss=1.36*Bts;
fprintf('n THE flux density of the stator teeth OF THE INDUCTION MOTOR=%.4f WB/M2 n',Btss);
ats=input('n flux density corresponding to Btss in A/m=n');
mmfst=ats*dss;
%stator core
Acs=Li*dcs;
Bcs=input('n flux density of stator core in wb/m2= n');
Lcs=pi*(D+2*dss+dcs)/(3*po);
atcs=input('n amper turns of stator in A/m= n');
Atcs=atcs*Lcs;
%rotor teeth
wts=(pi*(Dr-4*dsr)/Sr)-wsr;
Atr=(Sr/po)*wts*Li;
Btr=input('n flux density at 1/3 ht in wb/m2= n');
Btra=1.36*Btr;
atr=input('n flux density in A/m= n');
Atrt=atr*dsr;
%rotor core
Alr=Li*dcr;
Brl=input('n flux density in rotor core= n');
atsr=input('n flux density in A/m= n');
lcr=(pi*(Dr-2*dsr-2*dcr))/(3*po);
Atcr=atsr*lcr;
At1=Atg+mmfst+Atcs+Atrt+Atcr;
Im=(0.427*po*At1)/(kws*Tp);
fprintf('n------------------------------------------------------------------------------ n');
fprintf('n OUTPUT OF NO LOAD CURRENT(MAGNETIZING CURRENT) OF INDUCTION MOTOR n ');
fprintf('n-------------------------------------------------------------------------- n');
fprintf('n THE MMF REQUIRED FOR AIR GAP OF THE INDUCTION MOTOR=%.4f AMPS n ',Atg);
fprintf('n THE MMF REQUIRED FOR STATOR TEETH OF THE INDUCTION MOTOR=%.4f AMPS
n',mmfst);
fprintf('n THE MMF REQUIRED FOR STATOR CORE OF THE INDUCTION MOTOR=%.4f AMPS
n',Atcs);
fprintf('n THE MMF REQUIRED FOR ROTOR TEETH OF THE INDUCTION MOTOR=%.4f AMPS n',Atrt);
fprintf('n THE MMF REQUIRED FOR ROTOR CORE OF THE INDUCTION MOTOR=%.4f AMPS n',Atcr);
fprintf('n THE TOTAL MMF OF THE INDUCTION MOTOR=%.4f AMPS',At1);
fprintf('n THE TOTAL MAGNETIZING CURRENT PER PHASE OF THE INDUCTION MOTOR=%.4f
AMPS n',Im);
fprintf('n------------------------------------------------------------------------------------- n');
%loss component
Vst=input('n volume of stator teeth in METER,CUBE(M3)= n');
%iron losses in stator teeth
Wst=Vst*7.6*1e3;
Bst=(pi/2)*Bts;
fprintf('n THE FLUX DENSITY CORRESPONDING TO STATOR TEETH OF THE INDUCTION
MOTOR=%.4fWB/M2 n',Bst);
Lkg=input('n corresponding to Bst loss per kg in w= n');
ILst=Lkg*Wst;
%iron loss in stator core
Vsc=input('n volume of stator core in METERCUBE(M3)= n');
wsc=Vst*7.6*1e3;
Bsc=Bcs;
fprintf('n THE FLUX DENSITY CORRESPONDING TOSTATOR CORE OF THE INDUCTION
MOTOR=%.4fWB/M2 n',Bsc);
Ilc=input('n iron loss per kg corresponding to flux density=n');
ILsc=Ilc*wsc;
%totoal iron losses
Il=ILst+ILsc;
Itl=2*Il;
%Friction and windage losses
fwlp=input('n percentage of friction and windage losses=n');
fwl=(fwlp/100)*p*1e3;
Tnll=Itl+fwl;
%load current
IL= Tnll/(3*v);
I0=sqrt(IL^2+Im^2);
%power factor
pfo=IL/Im;
phaseangle=acos(pfo)*(180/pi);
%losses and effiency
rs=((resistivity*Tp*Lmts)/As);
CLs=3*IL^2*rs;
Ip=CL+Itl+fwl+CLs+(p*1e3);
eff1=((p*1e3)/Ip)*100;
% output of the following design
fprintf('n--------------------------------------------------------------------- n');
fprintf('n OUTPUT OF LOSS COMPONENT OFINDUCTION MOTOR n');
fprintf('n---------------------------------------------------------------------------- n');
fprintf('n THE IRON LOSS IN STATOR TEETH OF THEINDUCTION MOTOR=%.4f WATTS n',ILst);
fprintf('n THE IRON LOSS IN STATOR CORE OF THEINDUCTION MOTOR=%.4f WATTS n',ILsc);
fprintf('n THE TOTAL IRON LOSSES IN STATOR OFTHE INDUCTION MOTOR=%.4f WATTS n',Itl);
fprintf('n THE TOTAL FRICTION AND WINDIAGE LOSSES OF THE INDUCTION
MOTOR=%.4fWATTSn',fwl);
fprintf('n THE TOTAL NO LOAD LOSSES OF THE INDUCTION MOTOR=%.4f WATTSn',Tnll);
fprintf('n THE TOTAL NO LOAD CURRENT PER PHASE OF THE INDUCTION MOTOR=%.4f AMPS
n',I0);
fprintf('n THE POWER FACTOR OF THE INDUCTION MOTOR=%.4f n',pfo);
fprintf('n THE PHASE ANGLE OF NO LOAD CURRENT OF THE INDUCTION
MOTOR=%.4fDEGREESn',phaseangle);
fprintf('n THE EFFICIENCY AT FULL LOAD OF THE INDUCTION MOTOR=%.4f n',eff1);
fprintf('n----------------------------------------------------------------------- n');
6. REFERENCES
Reference Books:
Electrical machine design – Sawhney,
Dhanpath Rao
GitHub Link:
https://github.com/durgas4

More Related Content

What's hot

Aircraft Performance and Design Project Code
Aircraft Performance and Design Project CodeAircraft Performance and Design Project Code
Aircraft Performance and Design Project Code
Elliot Farquhar
 
3DoF Helicopter Trim , Deceleration manouver simulation, Stability
3DoF Helicopter Trim , Deceleration manouver simulation, Stability 3DoF Helicopter Trim , Deceleration manouver simulation, Stability
3DoF Helicopter Trim , Deceleration manouver simulation, Stability
Deepak Paul Tirkey
 
Gas dynamics and jet propulsion – presentationof problemsanswers
Gas dynamics and jet propulsion – presentationof problemsanswersGas dynamics and jet propulsion – presentationof problemsanswers
Gas dynamics and jet propulsion – presentationof problemsanswers
Vaidyanathan Ramakrishnan
 
Computational Study On Eppler 61 Airfoil
Computational Study On Eppler 61 AirfoilComputational Study On Eppler 61 Airfoil
Computational Study On Eppler 61 Airfoil
kushalshah911
 

What's hot (20)

Aircraft Performance and Design Project Code
Aircraft Performance and Design Project CodeAircraft Performance and Design Project Code
Aircraft Performance and Design Project Code
 
010
010010
010
 
3DoF Helicopter Trim , Deceleration manouver simulation, Stability
3DoF Helicopter Trim , Deceleration manouver simulation, Stability 3DoF Helicopter Trim , Deceleration manouver simulation, Stability
3DoF Helicopter Trim , Deceleration manouver simulation, Stability
 
Wason_Mark
Wason_MarkWason_Mark
Wason_Mark
 
Design and Analysis of Solar Powered RC Aircraft
Design and Analysis of Solar Powered RC AircraftDesign and Analysis of Solar Powered RC Aircraft
Design and Analysis of Solar Powered RC Aircraft
 
Propulsion 2 questions for aeronautical students
Propulsion 2 questions for aeronautical studentsPropulsion 2 questions for aeronautical students
Propulsion 2 questions for aeronautical students
 
Compressible Flow
Compressible FlowCompressible Flow
Compressible Flow
 
Basics of Turbine
Basics of TurbineBasics of Turbine
Basics of Turbine
 
Specific Speed of Turbine | Fluid Mechanics
Specific Speed of Turbine | Fluid MechanicsSpecific Speed of Turbine | Fluid Mechanics
Specific Speed of Turbine | Fluid Mechanics
 
Gas dynamics and jet propulsion – presentationof problemsanswers
Gas dynamics and jet propulsion – presentationof problemsanswersGas dynamics and jet propulsion – presentationof problemsanswers
Gas dynamics and jet propulsion – presentationof problemsanswers
 
Unit Quantities of Turbine | Fluid Mechanics
Unit Quantities of Turbine | Fluid MechanicsUnit Quantities of Turbine | Fluid Mechanics
Unit Quantities of Turbine | Fluid Mechanics
 
Computational Study On Eppler 61 Airfoil
Computational Study On Eppler 61 AirfoilComputational Study On Eppler 61 Airfoil
Computational Study On Eppler 61 Airfoil
 
CFD Analysis for Computing Drag force on Various types of blades for Vertical...
CFD Analysis for Computing Drag force on Various types of blades for Vertical...CFD Analysis for Computing Drag force on Various types of blades for Vertical...
CFD Analysis for Computing Drag force on Various types of blades for Vertical...
 
O13040297104
O13040297104O13040297104
O13040297104
 
2 aircraft flight instruments
2 aircraft flight instruments2 aircraft flight instruments
2 aircraft flight instruments
 
Pelton Wheel Turbine Part 2
Pelton Wheel Turbine Part 2Pelton Wheel Turbine Part 2
Pelton Wheel Turbine Part 2
 
Flow over an airfoil
Flow over an airfoilFlow over an airfoil
Flow over an airfoil
 
Mc conkey 13-pb
Mc conkey 13-pbMc conkey 13-pb
Mc conkey 13-pb
 
Transformer design (220-110)V 100 VA
Transformer design (220-110)V 100 VATransformer design (220-110)V 100 VA
Transformer design (220-110)V 100 VA
 
A Simplified Speed Control Of Induction Motor based on a Low Cost FPGA
A Simplified Speed Control Of Induction Motor based on a Low Cost FPGA A Simplified Speed Control Of Induction Motor based on a Low Cost FPGA
A Simplified Speed Control Of Induction Motor based on a Low Cost FPGA
 

Similar to Design of low weight high speed induction machine

Wind energy forecasting using radial basis function neural networks
Wind energy forecasting using radial basis function neural networksWind energy forecasting using radial basis function neural networks
Wind energy forecasting using radial basis function neural networks
eSAT Journals
 
HAWT Parametric Study and Optimization PPT
HAWT Parametric Study and Optimization PPTHAWT Parametric Study and Optimization PPT
HAWT Parametric Study and Optimization PPT
GAURAV KAPOOR
 
Numerical Analysis of Centrifugal Air Blower
Numerical Analysis of Centrifugal Air BlowerNumerical Analysis of Centrifugal Air Blower
Numerical Analysis of Centrifugal Air Blower
IJSRD
 

Similar to Design of low weight high speed induction machine (20)

Wind energy forecasting using radial basis function neural networks
Wind energy forecasting using radial basis function neural networksWind energy forecasting using radial basis function neural networks
Wind energy forecasting using radial basis function neural networks
 
Impact of Different Wake Models on the Estimation of Wind Farm Power Generation
Impact of Different Wake Models on the Estimation of Wind Farm Power GenerationImpact of Different Wake Models on the Estimation of Wind Farm Power Generation
Impact of Different Wake Models on the Estimation of Wind Farm Power Generation
 
"Design Criteria of Lift Irrigation Scheme"
"Design Criteria of Lift Irrigation Scheme""Design Criteria of Lift Irrigation Scheme"
"Design Criteria of Lift Irrigation Scheme"
 
WM_MAO_2012_Weiyang
WM_MAO_2012_WeiyangWM_MAO_2012_Weiyang
WM_MAO_2012_Weiyang
 
Fw3410821085
Fw3410821085Fw3410821085
Fw3410821085
 
Control Scheme for an IPM Synchronous Generator Based-Variable Speed Wind Tur...
Control Scheme for an IPM Synchronous Generator Based-Variable Speed Wind Tur...Control Scheme for an IPM Synchronous Generator Based-Variable Speed Wind Tur...
Control Scheme for an IPM Synchronous Generator Based-Variable Speed Wind Tur...
 
236 rakhi
236 rakhi236 rakhi
236 rakhi
 
Rudder Control Analysis / Hydraulic Pump Analysis
Rudder Control Analysis / Hydraulic Pump AnalysisRudder Control Analysis / Hydraulic Pump Analysis
Rudder Control Analysis / Hydraulic Pump Analysis
 
IRJET- Effect of Shroud Attachment on Power Generation on a Horizontal Axis W...
IRJET- Effect of Shroud Attachment on Power Generation on a Horizontal Axis W...IRJET- Effect of Shroud Attachment on Power Generation on a Horizontal Axis W...
IRJET- Effect of Shroud Attachment on Power Generation on a Horizontal Axis W...
 
Ijaems apr-2016-29 Application of STATCOM for Enhancing Steady and Dynamic Pe...
Ijaems apr-2016-29 Application of STATCOM for Enhancing Steady and Dynamic Pe...Ijaems apr-2016-29 Application of STATCOM for Enhancing Steady and Dynamic Pe...
Ijaems apr-2016-29 Application of STATCOM for Enhancing Steady and Dynamic Pe...
 
Design Calculation of Three Phase Self Excited Induction Generator Driven by ...
Design Calculation of Three Phase Self Excited Induction Generator Driven by ...Design Calculation of Three Phase Self Excited Induction Generator Driven by ...
Design Calculation of Three Phase Self Excited Induction Generator Driven by ...
 
Energy in wind
Energy in windEnergy in wind
Energy in wind
 
Synchronous flyback converter with synchronous buck post regulator
Synchronous flyback converter with synchronous buck post regulatorSynchronous flyback converter with synchronous buck post regulator
Synchronous flyback converter with synchronous buck post regulator
 
Feasibility analysis of offshore wind power plants with DC collection grid
Feasibility analysis of offshore wind power plants with DC collection gridFeasibility analysis of offshore wind power plants with DC collection grid
Feasibility analysis of offshore wind power plants with DC collection grid
 
Main dimension & rotor design of squirrel cage Induction Motor.pdf
Main dimension & rotor design of squirrel cage Induction Motor.pdfMain dimension & rotor design of squirrel cage Induction Motor.pdf
Main dimension & rotor design of squirrel cage Induction Motor.pdf
 
HAWT Parametric Study and Optimization PPT
HAWT Parametric Study and Optimization PPTHAWT Parametric Study and Optimization PPT
HAWT Parametric Study and Optimization PPT
 
Bidirectional floating hydro turbine
Bidirectional floating hydro turbineBidirectional floating hydro turbine
Bidirectional floating hydro turbine
 
Numerical Analysis of Centrifugal Air Blower
Numerical Analysis of Centrifugal Air BlowerNumerical Analysis of Centrifugal Air Blower
Numerical Analysis of Centrifugal Air Blower
 
EE6604 unit2
EE6604 unit2EE6604 unit2
EE6604 unit2
 
Electric_Propeller_Aircraft_Sizing.pptx
Electric_Propeller_Aircraft_Sizing.pptxElectric_Propeller_Aircraft_Sizing.pptx
Electric_Propeller_Aircraft_Sizing.pptx
 

Recently uploaded

DeepFakes presentation : brief idea of DeepFakes
DeepFakes presentation : brief idea of DeepFakesDeepFakes presentation : brief idea of DeepFakes
DeepFakes presentation : brief idea of DeepFakes
MayuraD1
 
Call Girls in South Ex (delhi) call me [🔝9953056974🔝] escort service 24X7
Call Girls in South Ex (delhi) call me [🔝9953056974🔝] escort service 24X7Call Girls in South Ex (delhi) call me [🔝9953056974🔝] escort service 24X7
Call Girls in South Ex (delhi) call me [🔝9953056974🔝] escort service 24X7
9953056974 Low Rate Call Girls In Saket, Delhi NCR
 

Recently uploaded (20)

Moment Distribution Method For Btech Civil
Moment Distribution Method For Btech CivilMoment Distribution Method For Btech Civil
Moment Distribution Method For Btech Civil
 
AIRCANVAS[1].pdf mini project for btech students
AIRCANVAS[1].pdf mini project for btech studentsAIRCANVAS[1].pdf mini project for btech students
AIRCANVAS[1].pdf mini project for btech students
 
Thermal Engineering -unit - III & IV.ppt
Thermal Engineering -unit - III & IV.pptThermal Engineering -unit - III & IV.ppt
Thermal Engineering -unit - III & IV.ppt
 
A CASE STUDY ON CERAMIC INDUSTRY OF BANGLADESH.pptx
A CASE STUDY ON CERAMIC INDUSTRY OF BANGLADESH.pptxA CASE STUDY ON CERAMIC INDUSTRY OF BANGLADESH.pptx
A CASE STUDY ON CERAMIC INDUSTRY OF BANGLADESH.pptx
 
FEA Based Level 3 Assessment of Deformed Tanks with Fluid Induced Loads
FEA Based Level 3 Assessment of Deformed Tanks with Fluid Induced LoadsFEA Based Level 3 Assessment of Deformed Tanks with Fluid Induced Loads
FEA Based Level 3 Assessment of Deformed Tanks with Fluid Induced Loads
 
Thermal Engineering-R & A / C - unit - V
Thermal Engineering-R & A / C - unit - VThermal Engineering-R & A / C - unit - V
Thermal Engineering-R & A / C - unit - V
 
GEAR TRAIN- BASIC CONCEPTS AND WORKING PRINCIPLE
GEAR TRAIN- BASIC CONCEPTS AND WORKING PRINCIPLEGEAR TRAIN- BASIC CONCEPTS AND WORKING PRINCIPLE
GEAR TRAIN- BASIC CONCEPTS AND WORKING PRINCIPLE
 
Double Revolving field theory-how the rotor develops torque
Double Revolving field theory-how the rotor develops torqueDouble Revolving field theory-how the rotor develops torque
Double Revolving field theory-how the rotor develops torque
 
Unit 4_Part 1 CSE2001 Exception Handling and Function Template and Class Temp...
Unit 4_Part 1 CSE2001 Exception Handling and Function Template and Class Temp...Unit 4_Part 1 CSE2001 Exception Handling and Function Template and Class Temp...
Unit 4_Part 1 CSE2001 Exception Handling and Function Template and Class Temp...
 
Employee leave management system project.
Employee leave management system project.Employee leave management system project.
Employee leave management system project.
 
DeepFakes presentation : brief idea of DeepFakes
DeepFakes presentation : brief idea of DeepFakesDeepFakes presentation : brief idea of DeepFakes
DeepFakes presentation : brief idea of DeepFakes
 
HOA1&2 - Module 3 - PREHISTORCI ARCHITECTURE OF KERALA.pptx
HOA1&2 - Module 3 - PREHISTORCI ARCHITECTURE OF KERALA.pptxHOA1&2 - Module 3 - PREHISTORCI ARCHITECTURE OF KERALA.pptx
HOA1&2 - Module 3 - PREHISTORCI ARCHITECTURE OF KERALA.pptx
 
Introduction to Serverless with AWS Lambda
Introduction to Serverless with AWS LambdaIntroduction to Serverless with AWS Lambda
Introduction to Serverless with AWS Lambda
 
Call Girls in South Ex (delhi) call me [🔝9953056974🔝] escort service 24X7
Call Girls in South Ex (delhi) call me [🔝9953056974🔝] escort service 24X7Call Girls in South Ex (delhi) call me [🔝9953056974🔝] escort service 24X7
Call Girls in South Ex (delhi) call me [🔝9953056974🔝] escort service 24X7
 
Online food ordering system project report.pdf
Online food ordering system project report.pdfOnline food ordering system project report.pdf
Online food ordering system project report.pdf
 
data_management_and _data_science_cheat_sheet.pdf
data_management_and _data_science_cheat_sheet.pdfdata_management_and _data_science_cheat_sheet.pdf
data_management_and _data_science_cheat_sheet.pdf
 
Hostel management system project report..pdf
Hostel management system project report..pdfHostel management system project report..pdf
Hostel management system project report..pdf
 
Unleashing the Power of the SORA AI lastest leap
Unleashing the Power of the SORA AI lastest leapUnleashing the Power of the SORA AI lastest leap
Unleashing the Power of the SORA AI lastest leap
 
NO1 Top No1 Amil Baba In Azad Kashmir, Kashmir Black Magic Specialist Expert ...
NO1 Top No1 Amil Baba In Azad Kashmir, Kashmir Black Magic Specialist Expert ...NO1 Top No1 Amil Baba In Azad Kashmir, Kashmir Black Magic Specialist Expert ...
NO1 Top No1 Amil Baba In Azad Kashmir, Kashmir Black Magic Specialist Expert ...
 
kiln thermal load.pptx kiln tgermal load
kiln thermal load.pptx kiln tgermal loadkiln thermal load.pptx kiln tgermal load
kiln thermal load.pptx kiln tgermal load
 

Design of low weight high speed induction machine

  • 1. Design of Low Weight High Speed Induction Machine using Octave Durga Sadasivuni Abstract This paper presents design strategy for a low weight high speed Induction machine. Induction machines are found in every applications right from the electrical fans to large industrial applications such as Tram car or pusher cars in coke ovens in steel plants. With increase in demand of renewable energy, electrical vehicles industries are showing more keen interest in designing motors which can provide high speed with less weight. The design features are obtained by running it on GNU octave. key words: Induction machines, octave, weight. 1. INTRODUCTION Induction machines are found in everyday applications. The requirement is increased with increase in demand of Electric vehicles to reduce the vehicle’s exhaust; the demand of induction motors has increased. According to The International Renewable Energy Agency (IRENA), transport is responsible for around 30% of global energy consumption and hence, it’s a current key challenge to cut the energy consumption by transports. So, its of vital importance for use to look for efficient design to reduce the consumption by finding alternative ways to aviate design parameters of the motors used. The design parameters must be such that, it can equally maintain the efficiency along with cost of manufacturing must be balanced in parallel. 2. DESIGN CONSIDERATIONS • Frames Stator side- Frames are die-cast or fabricated strong silicon- aluminum alloy for getting good mechanical strength. Also the Diameter “D” of the stator diameter is taken into consideration since we have 𝑝∅ = 𝐵𝑎𝑣𝑔 × 𝜋 × 𝐿 where, L= core length and 3𝐼 𝑝ℎ × 𝑍 𝑝ℎ 𝜋𝐷 = 𝑞 where q is the specific electric loading q can vary from 10000 ac/m to 450000 ac/m For overall good design- D&L =1.0 to 1.1 and for minimum cost, D&L should be taken from 1.5 to 2.0.
  • 2. Rotor side- The output equation is given as 𝑄 = 𝐶0 𝐷2 𝐿𝑛 𝑠 and 𝐶0 = 1.1𝐾 𝑤 𝐵𝑎𝑣 𝑎𝑐 × 10−3 The winding factor 𝐾 𝑤 is taken as 0.9. ⇒ 𝐷2 𝐿 = 𝑄 𝐶0 𝑛 𝑠 𝐵𝑎𝑣𝑔 can be taken between 0.3 to 0.6 wb/m2 For large overloading capacity, 𝐵𝑎𝑣𝑔 is taken as 0.65 wb/m2 . Armature conductors, ac are considered when the insulation heat is to be taken care. Generally armature conductors ac lies between 5000-45000. 3. Main dimensions- For good overall design, 𝐿 𝑡 = 0.6 where, 𝐿 𝑡 is the core length/pole pitch. • Stator Turns/phase = 𝑇𝑆 = 𝐸 𝑝ℎ 4.44 𝑓∅ 𝑚 𝑘 𝑤𝑠 where 𝑘 𝑤𝑠 =0.955 ∅ 𝑚 = 𝐵𝑎𝑣𝑔 × 𝜋 × 𝐿 × 𝐷 𝑝 where p is the number of poles. • Stator Conductors- The current density is maintained 3-5 A/mm2 For low area of conductors, round conductors are used and for high value , strip conductors are used. Number of slots/pole/phase ≮ 2 4. CASE STUDY If the input power is 20kW with supply voltage of 124 V, then frequency maintained at 100Hz, 𝐵𝑎𝑣𝑔= 0.4, ampere conductors(ac) =22000 winding factor kw =0.9, power factor = 0.8 and efficiency 𝜂 = 0.8 at speed = 3000rpm, Then, the design is optimized as per low weight and high speed and with cost of the motor being minimum.
  • 3. 5. OCTAVE CODE function IM1 % input data. fprintf('n -------------------------------------------------------------- n'); fprintf('n INPUT THE SPECIATIONS OF THE INDUCTION MOTORn'); ph=input('n no of phases=n'); p=input('power out KW=n'); v=input('voltage in volts(line)=n'); f=input('frequency on hz=n'); Bav=input('bav in Wb/m2=n'); ac=input('ac in a/m=n'); Kw=input('winding factor=n'); pf=input('power facot=n'); eff=input('eff of m/c=n'); N=input('Speed of m/c=n'); % to find speed ns=N/60;%rps %poles po=(2*f)/ns; % to find output co-efficient Co=11*Kw*Bav*ac*10^-3; fprintf('noutput coeffieicent = %f n',Co);
  • 4. % to find input KVA Q=p/(eff*pf); % to find D and L D=abs((Q/(Co*ns))/1.18)^(1/3); L=1.18*D;%ventilating ducts are required %calculate tou tou=L/1.5;%for low cost design consideration % to find pole pitch pp=(pi*D)/po; %peripheral speed ps=(pi*D*ns); fprintf('n------------------------------------------------- n'); fprintf('n DIAMETER AND NET LENGTH OF THE INDUCTION MOTOR n'); fprintf('n ------------------------------------------------------------- n'); fprintf('n THE DIAMETER OF THE INDUCTIONMOTOR=%.6f METERS n',D); fprintf( 'n peripheral speed = %f mps n' , ps); %stator design % flus per pole flux=Bav*(pi*D*L)/po; disp(flux) % turns per phase
  • 5. Tp=v/(4.44*f*flux*Kw); % no of stator slots qs=input('n no of stator slots per pole per phase= n'); ss=ph*po*qs;%total stator slots disp(ss); yss=(pi*D)/ss; sp=ss/ph; sc=6*Tp; zss=sc/ss; cs=ss/po; fprintf('n THE COIL SPAN OF THE INDUCTIONMOTOR=%.4f n',cs); evenno=input('n IF THE CS VALUE IS EVEN , THANTYPE 2 ELSE ANY OTHER NO= n'); cs1=2; if cs1==evenno alpha=(1/cs)*180; kp=cos((alpha/2)*(pi/180)); kd=(sin((qs*alpha/2)*(pi/180)))/(qs*(sin((qs*alpha/4)*(pi/180)))); kws=kp*kd; disp(kws); end % conductor size Is=(p*1e3)/(3*v*eff*pf);
  • 6. disp(Is); IsL=sqrt(3)*Is; fprintf('n THE STATOR LINE CURRENT OF THE INDUCTION MOTOR=%.4f AMPS n',IsL); currentdensity=input('ncurrent density corresponding to stator line current= n'); A=Is/4; Db=input('nbare diameter in meters ='); as=pi/(4*Db^2); density=Is/as; fprintf('n THE DENSITY OF STATOR CONDUCTOR OF THE INDUCTION MOTOR=%.10f A/M2 n',density); d1=input('n diameter of enamelled conductor CORRESPONDING TO DENSITY in meters = n'); % slot dimensions S=zss*as; sf=input('nspace factor for the slots= n'); As=S/sf; Li=input('n length of iron = n'); wts=flux/(1.7*(ss/po)*Li); Lmts=(2*L)+(2.3*(tou))+0.24; % flux density in stator teeth Bmst=flux/((ss/po)*wts*Li); % flux in stator core fluxstator=flux/2;
  • 7. B=input('n flux density of the stator core in wb/m2= n'); Asc=fluxstator/B; dcs=Asc/Li; dcd=input('core depthin meters = n'); Bcs=(dcs/dcd)*1.2; h=input('nheight of the core in m= n'); lip=input('nlip in meters =n'); wedge=input('nwedge in meters = n'); dss=h+lip+wedge; Do=D+2*dss+2*dcs; fprintf('n-----------------------------------------------------------------n'); fprintf('n OUTPUT OF THE STATOR DESIGN OF INDUCTION MOTOR n'); fprintf('n---------------------------------------------------------- n'); fprintf('n THE FLUX PER POLE OF THE INDUCTION MOTOR=%.4f WB n',flux); fprintf('n THE STATOR TURNS PER POLE OF THE INDUCTION MOTOR=%.4f TURNS n',Tp); fprintf('n THE STATOR WINDING FACTOR OF THE INDUCTION MOTOR=%.4f n ',kws); fprintf('n THE STATOR CURRENT OF THE INDUCTION MOTOR=%.4f AMPS n',Is); fprintf('n THE WIDTH OF THE STATOR TEETH OF THE INDUCTION MOTOR=%.4f METERS n',wts); fprintf('n THE LENGTH OF MEAN TURN OF THE INDUCTION MOTOR=%.4f METERS n',Lmts); fprintf('n THE FLUX DENSITY IN STATOR TEETH OF THE INDUCTION MOTOR=%.4f WB n',Bmst); fprintf('n THE DEPTH OF STATOR CORE OF THE INDUCTION MOTOR=%.4f METERS n',dcs); fprintf('n THE OUTER DIAMETER OF STATOR LAMINATIONS OF THE INDUCTION MOTOR=%.4f METERS n',Do); fprintf('n----------------------------------------------------- n');
  • 8. % Rotor design Lg=0.2+2*sqrt(D*L); fprintf('n THE LENGTH OF AIR GAP OF ROTOR OF THE INDUCTION MOTOR=%.4f METERS n',Lg); Lg1=input('n if Lg is greater than 0.3 it must be taken as 0.0003 METERS for mm too m conversion = n');%conversion from mm to m Dr=D-2*Lg1; Sr=input('n rotor slots= n'); ysr=(pi*Dr)/Sr; Ib=(6*Is*Tp*kws*pf)/Sr; rotordensity=input('n rotor bar current density in A/m2=n'); ab=Ib/rotordensity; conductorsize=input('nconductor size standard= n'); wsr=input('n width of rotor slot in meters = n'); dsr=input('n depth of rotor slot in meters = n'); slotpitch=(pi*(Dr-2*wsr))/Sr; wt=slotpitch-wsr; fluxdensity=flux/((Sr/po)*Li*wt); Lb=input('n length of each bar in meters= n'); Resistivity=input('n resisitivity of the rotor= n'); rb=Resistivity*Lb/ab; Tclb=Sr*Ib^2*rb*1e6; fprintf('n----------------------------------------------------------------------- n'); fprintf('n OUTPUT OF THE ROTOR DESIGN OF INDUCTION MOTOR n '); fprintf('n------------------------------------------------------------------ n');
  • 9. fprintf('n THE AIR GAP LENGTH OF ROTOR OF THE INDUCTION MOTOR=%.4f METERS n',Lg); fprintf('n THE DIAMETER OF ROTOR OF THE INDUCTION MOTOR=%.4f METERS n',Dr); fprintf('n THE ROTOR SLOT PITCH OF THE INDUCTION MOTOR=%.4f METERS n',ysr); fprintf('n THE ROTOR BAR CURRENT OF THE INDUCTION MOTOR=%.4f AMPS n',Ib); fprintf('n THE WIDTH OF THE ROTOR TEETH AT THE ROOT OF THE INDUCTION MOTOR=%.4f METERS n ',wt); fprintf('n THE RESISTANCE OF EACH BAR OF THE INDUCTION MOTOR=%.12f OHMS n',rb); fprintf('n THE FLUX DENSITY IN ROTOR TEETH OF THE INDUCTION MOTOR=%.4f WB n',fluxdensity); fprintf('n THE TOTAL COPPER LOSSES IN BARS OF THE INDUCTION MOTOR=%.4f WATTS n',Tclb); fprintf('n------------------------------------------------------------- n'); % design of end rings . Ibe=(Sr*Ib)/(pi*po); currentdensityend=input('n current density of end ring in A/m2=n'); ae=Ibe/currentdensityend; ae1=ae/1e6; Doer=(Dr-2*wsr); de=input('n depth of ring in meters = n'); Dier=Doer-2*de; De=(Doer+Dier)/2; resistivity=input('n resistivity of the end ring=n'); re=(resistivity*pi*De)/ae; CL=2*Ib^2*re*1e3;
  • 10. Tcl=Tclb+CL; %rotoroutput=input('rotot output in KW ='); slip=(Tcl/(Tcl+(p*1e3)))*100; %rotor core dcr=dcs; Bcr=input('n flux density in rotor core in wb/m2 n '); Di=Dr-2*wsr-2*dcr; fprintf('n------------------------------------------------------ n'); fprintf('n OUTPUT OF THE END RING OF INDUCTION MOTORn '); fprintf('n-------------------------------------------------------------------------- n'); fprintf('n THE END RING CURRENT OF THE INDUCTION MOTOR=%.4f AMPSn ',Ibe); fprintf('n THE AREA OF END RING OF THE INDUCTION MOTOR=%.4f SQUARE MILL- METERSn',ae1); fprintf('n THE RESISTANCE OF END RING OF THE INDUCTION MOTOR=%.12f OHMS n',re); fprintf('n THE TOTAL ROTOR COPPER LOSSES OF THE INDUCTION MOTOR=%.4f WATTS n ',Tcl); fprintf('n THE SLIP OF THE INDUCTION MOTOR=%.4f PERCENTAGE n ',slip); fprintf('n THE INNER DIAMETER OF ROTOR LAMINATION OF THE INDUCTION MOTOR=%.4f METERS n',Di); fprintf('n--------------------------------------------------------------------- n'); % magnetizing current of stator slotopening=input('n slot opening = n'); gaplength=input('n gap length=n'); statorratio=slotopening/gaplength; Kcs=input('n carters coefficient=n');
  • 11. wo=input('wo='); Kgss=yss/(yss-Kcs*wo); %rotor slotopeningrotor=input('n rotor slot opening= n'); gaplengthrotor=input('rotor gap opening= n'); rotorratio=slotopeningrotor/gaplengthrotor; Kcsr=input('n rotor carters coefficient= n'); wo1=input('nwo1=n'); Kgsr=ysr/(ysr-Kcsr*wo1); Kgs=Kgss*Kgsr; Kgd=input('n gap concentration factor n'); Kg=Kgs*Kgd; Ag=((pi*D)/4)*L; Bg=1.36*Bav; Lge=Kg*gaplength; Atg=800000*Bg*Kg*Lg1; %stator teeth Atp=(ss/po)*wts*Li; Bts=input('n flux density of stator teeth=n'); Btss=1.36*Bts; fprintf('n THE flux density of the stator teeth OF THE INDUCTION MOTOR=%.4f WB/M2 n',Btss); ats=input('n flux density corresponding to Btss in A/m=n'); mmfst=ats*dss;
  • 12. %stator core Acs=Li*dcs; Bcs=input('n flux density of stator core in wb/m2= n'); Lcs=pi*(D+2*dss+dcs)/(3*po); atcs=input('n amper turns of stator in A/m= n'); Atcs=atcs*Lcs; %rotor teeth wts=(pi*(Dr-4*dsr)/Sr)-wsr; Atr=(Sr/po)*wts*Li; Btr=input('n flux density at 1/3 ht in wb/m2= n'); Btra=1.36*Btr; atr=input('n flux density in A/m= n'); Atrt=atr*dsr; %rotor core Alr=Li*dcr; Brl=input('n flux density in rotor core= n'); atsr=input('n flux density in A/m= n'); lcr=(pi*(Dr-2*dsr-2*dcr))/(3*po); Atcr=atsr*lcr; At1=Atg+mmfst+Atcs+Atrt+Atcr; Im=(0.427*po*At1)/(kws*Tp); fprintf('n------------------------------------------------------------------------------ n');
  • 13. fprintf('n OUTPUT OF NO LOAD CURRENT(MAGNETIZING CURRENT) OF INDUCTION MOTOR n '); fprintf('n-------------------------------------------------------------------------- n'); fprintf('n THE MMF REQUIRED FOR AIR GAP OF THE INDUCTION MOTOR=%.4f AMPS n ',Atg); fprintf('n THE MMF REQUIRED FOR STATOR TEETH OF THE INDUCTION MOTOR=%.4f AMPS n',mmfst); fprintf('n THE MMF REQUIRED FOR STATOR CORE OF THE INDUCTION MOTOR=%.4f AMPS n',Atcs); fprintf('n THE MMF REQUIRED FOR ROTOR TEETH OF THE INDUCTION MOTOR=%.4f AMPS n',Atrt); fprintf('n THE MMF REQUIRED FOR ROTOR CORE OF THE INDUCTION MOTOR=%.4f AMPS n',Atcr); fprintf('n THE TOTAL MMF OF THE INDUCTION MOTOR=%.4f AMPS',At1); fprintf('n THE TOTAL MAGNETIZING CURRENT PER PHASE OF THE INDUCTION MOTOR=%.4f AMPS n',Im); fprintf('n------------------------------------------------------------------------------------- n'); %loss component Vst=input('n volume of stator teeth in METER,CUBE(M3)= n'); %iron losses in stator teeth Wst=Vst*7.6*1e3; Bst=(pi/2)*Bts; fprintf('n THE FLUX DENSITY CORRESPONDING TO STATOR TEETH OF THE INDUCTION MOTOR=%.4fWB/M2 n',Bst); Lkg=input('n corresponding to Bst loss per kg in w= n'); ILst=Lkg*Wst; %iron loss in stator core Vsc=input('n volume of stator core in METERCUBE(M3)= n');
  • 14. wsc=Vst*7.6*1e3; Bsc=Bcs; fprintf('n THE FLUX DENSITY CORRESPONDING TOSTATOR CORE OF THE INDUCTION MOTOR=%.4fWB/M2 n',Bsc); Ilc=input('n iron loss per kg corresponding to flux density=n'); ILsc=Ilc*wsc; %totoal iron losses Il=ILst+ILsc; Itl=2*Il; %Friction and windage losses fwlp=input('n percentage of friction and windage losses=n'); fwl=(fwlp/100)*p*1e3; Tnll=Itl+fwl; %load current IL= Tnll/(3*v); I0=sqrt(IL^2+Im^2); %power factor pfo=IL/Im; phaseangle=acos(pfo)*(180/pi); %losses and effiency rs=((resistivity*Tp*Lmts)/As); CLs=3*IL^2*rs; Ip=CL+Itl+fwl+CLs+(p*1e3); eff1=((p*1e3)/Ip)*100;
  • 15. % output of the following design fprintf('n--------------------------------------------------------------------- n'); fprintf('n OUTPUT OF LOSS COMPONENT OFINDUCTION MOTOR n'); fprintf('n---------------------------------------------------------------------------- n'); fprintf('n THE IRON LOSS IN STATOR TEETH OF THEINDUCTION MOTOR=%.4f WATTS n',ILst); fprintf('n THE IRON LOSS IN STATOR CORE OF THEINDUCTION MOTOR=%.4f WATTS n',ILsc); fprintf('n THE TOTAL IRON LOSSES IN STATOR OFTHE INDUCTION MOTOR=%.4f WATTS n',Itl); fprintf('n THE TOTAL FRICTION AND WINDIAGE LOSSES OF THE INDUCTION MOTOR=%.4fWATTSn',fwl); fprintf('n THE TOTAL NO LOAD LOSSES OF THE INDUCTION MOTOR=%.4f WATTSn',Tnll); fprintf('n THE TOTAL NO LOAD CURRENT PER PHASE OF THE INDUCTION MOTOR=%.4f AMPS n',I0); fprintf('n THE POWER FACTOR OF THE INDUCTION MOTOR=%.4f n',pfo); fprintf('n THE PHASE ANGLE OF NO LOAD CURRENT OF THE INDUCTION MOTOR=%.4fDEGREESn',phaseangle); fprintf('n THE EFFICIENCY AT FULL LOAD OF THE INDUCTION MOTOR=%.4f n',eff1); fprintf('n----------------------------------------------------------------------- n'); 6. REFERENCES Reference Books: Electrical machine design – Sawhney, Dhanpath Rao GitHub Link: https://github.com/durgas4