SlideShare a Scribd company logo
1 of 29
ssss
Predefined Speed Control of
BLDC Motor
http://www.edgefxkits.com/
Introduction
 The aim of the project is to control the speed of a BLDC motor using a
microcontroller with the help of SVPWM-technique. A brushless DC
(BLDC) motor drive is characterized by higher efficiency, lower
maintenance, and higher cost. Therefore, it is necessary to have a low-
cost but effective BLDC motor controller. Based on the principle of
PWM, speed of the motor can be controlled.
Predefined Speed Control of
BLDC Motor
http://www.edgefxkits.com/
Block Diagram
Predefined Speed Control of
BLDC Motor
http://www.edgefxkits.com/
Hardware Components
 8051 series Microcontroller
 LCD
 Transformer
 Voltage Regulator
 Capacitors
 Resistors
 Diodes
 BLDC Fan
 EEPROM
Predefined Speed Control of
BLDC Motor
http://www.edgefxkits.com/
Software Components
 Keil compiler
 Languages: Embedded C or Assembly.
Predefined Speed Control of
BLDC Motor
http://www.edgefxkits.com/
MICROCONTROLE
R
The AT89C52 is a low-power, high performance CMOS 8-bit
microcomputer with 8Kbytes of Flash programmable and erasable
read only memory (PEROM).
The on-chip Flash allows the program memory to be reprogrammed
in system or by a conventional nonvolatile memory programmer.
Predefined Speed Control of
BLDC Motor
http://www.edgefxkits.com/
Features
 8K Bytes of In-System Reprogrammable Flash Memory
 Endurance: 1,000 Write/Erase Cycles
 Fully Static Operation: 0 Hz to 24 MHz
 Three-level Program Memory Lock
 256 x 8-bit Internal RAM
Predefined Speed Control of
BLDC Motor
http://www.edgefxkits.com/
BLDC
Motor
 The BLDC motor is an AC synchronous motor with permanent
magnets on the rotor (moving part) and windings on the stator (fix
part).
 Permanent magnets create the rotor flux and the energized stator
windings create electromagnet poles.
 The rotor is attracted by the energized stator phase.
Predefined Speed Control of
BLDC Motor
http://www.edgefxkits.com/
 By using the appropriate sequence to supply the stator phases, a
rotating field on the stator is created and maintained.
 The lead between the rotor and the rotating field must be controlled
to produce torque and this synchronization implies knowledge of the
rotor position.
BLDC
Motor
Predefined Speed Control of
BLDC Motor
http://www.edgefxkits.com/
Principle of BLDC
Motor
 Frequency inverter used as Commutator.
 Commutation depends on rotor position.
 Speed control by motor voltage.
 Angle between mmfs of a stator and rotor is fixed to 90
degree.
 Motor behaves like a DC Motor.
 No commutation occurs on spinning shaft.
Predefined Speed Control of
BLDC Motor
http://www.edgefxkits.com/
Circuit Operation
The operation of the circuit can be explained in three parts.
 Control circuit
 Motor driver and Gate driving circuit
 Converter circuit
Predefined Speed Control of
BLDC Motor
http://www.edgefxkits.com/
Control Circuit
 Control circuit gives out the switching signals to the converter
bridge.
 A microcontroller is dedicated to generate the switching pulses.
 The microcontroller is programmed to give out pulse according to
SVPWMM technique.
 Program is compiled in Keil software.
Predefined Speed Control of
BLDC Motor
http://www.edgefxkits.com/
 The HEX code generated is loaded into the Microcontroller.
 The controller used is AT89C52.
 The controller is operated at 11.059 MHz frequency.
Control Circuit
Predefined Speed Control of
BLDC Motor
http://www.edgefxkits.com/
 Instead of using an inverter and a regulator we have used a motor driver
HW30A which acts as inverter to supply the voltage for the Motor.
 HW30A is an inbuilt Inverter which is having Inverter circuit as well as
MOSFET Driver circuit.
 We are using this type of technique because of on using general
inverter.
Motor Driver And Gate Driving Circuit
Predefined Speed Control of
BLDC Motor
http://www.edgefxkits.com/
 We are facing the difficulties like large Heat dissipation, so that this
heat would cause a heat sinking problem which in turn results in
the failure of the Inverter.
 By using this motor driver the circuit complexity is reduced and the
heat dissipation problem, is also reduced.
Motor Driver And Gate Driving Circuit
Predefined Speed Control of
BLDC Motor
http://www.edgefxkits.com/
Converter Circuit
 The converter circuit is provided by the Motor driver.
 The D.C supply is fed through a bridge rectifier.
 The switches in the Motor driver are turned ON and OFF as per the
program.
 The rectifier circuit is made of diodes.
 The component used is IN4007 which is capable of blocking a reverse
voltage of 1000 V DC and can carry a current of 10A continuous.
Predefined Speed Control of
BLDC Motor
http://www.edgefxkits.com/
 All these components are placed on General PCB.
 Control circuit and gate driving circuit components are soldered
directly on the Pcb.
 Whereas, the power components as connected with suitable
connectors as they carry larger currents.
Converter circuit
Predefined Speed Control of
BLDC Motor
http://www.edgefxkits.com/
Working
 The basic construction of a brushless dc consists of a fan blade attached
to a permanent magnet rotor that surrounds the electromagnetic coils
of the stator and associated control electronics.
 A typical biphase brushless fan motor is made from a permanent
magnet rotor assembly that surrounds four electromagnetic coils.
 The coils work in pairs, with coils A and C forming one phase
and coils B and D the other phase.
Predefined Speed Control of
BLDC Motor
http://www.edgefxkits.com/
 A Halleffect sensor monitors rotor position, providing feedback to the
embedded MCU for commutation, speed regulation, and fault detection.
 Commutation between the two phase windings in the dc fan takes place
electronically by alternately applying power to L1 and L2.
 Dead zones between the power pulses limit current for speed control
and helps minimize a cogging effect when the rotor magnets align with
the stator coils.
 The on and off power of the commutation period resembles the output
from a pulse width modulator.
Working Principle
Predefined Speed Control of
BLDC Motor
http://www.edgefxkits.com/
 The MCU uses a PWM to control the period of the motor drivers and,
thus set fan speed.
 Feedback from the Hall sensor monitors actual fan rpm and indicate
when communication should take place.
 The MCU continuously monitors motor speed by measuring the output
period of the Hall effect sensor.
 A period that run shorter than the target length indicates motor speed
is too fast.
Working Principle
Predefined Speed Control of
BLDC Motor
http://www.edgefxkits.com/
Speed Control Of BLDC Motor
 Pulse width modulation is a commonly used technique for controlling
power to an electrical device.
 The PWM switching frequency has to be much faster than what would
affect the load.
 Typically switching’s have to be done several times a minute in an
electric stove, 120 Hz in a lamp dimmer, from few kilohertz (kHz) to
tens of kHz for a motor drive and well into the tens or hundreds of kHz
in audio amplifiers and computer power supplies
Predefined Speed Control of
BLDC Motor
http://www.edgefxkits.com/
 The term duty cycle describes the proportion of on time to the regular
interval or period of time.
 A low duty cycle corresponds to low power, because the power is off for
most of the time.
 Duty cycle is expressed in percent, 100% being fully on.
 The main advantage of PWM is that power loss in the switching devices
is very low.
Speed Control Of BLDC Motor
Predefined Speed Control of
BLDC Motor
http://www.edgefxkits.com/
 When a switch is off there is practically no current and when it is on,
there is almost no voltage drop across the switch.
 Power loss, being the product of voltage and current, is thus in both
cases close to zero.
 The desired speed can be obtained by changing the duty cycle.
 The PWM in microcontroller is used to control the duty cycle of DC
motor.
Average Voltage=D * Vin
Speed Control Of BLDC Motor
Predefined Speed Control of
BLDC Motor
http://www.edgefxkits.com/
SIMULATION RESULTS FOR VARIOUS PWM
PULSES
 The speed control technique employed here is pulse width modulation
(PWM) technique.
 The duty cycle determines the speed of the motor
Average voltage = D * Vin
 The average voltage obtained for various duty cycles is also mentioned
and as the duty cycle percentage decreases average voltage also
decreases from the supply voltage.
Predefined Speed Control of
BLDC Motor
http://www.edgefxkits.com/
 Duty cycle is defined as the percentage of time the motor is ON.
 Therefore, the duty cycle is given as
Duty Cycle = 100% x Pulse Width/Period
Where,
Duty Cycle in (%)
Pulse Width = Time the signal is in the ON or high
state(sec)
Period = Time of one cycle (sec).
Predefined Speed Control of
BLDC Motor
SIMULATION RESULTS FOR VARIOUS PWM
PULSES
http://www.edgefxkits.com/
Applications
 BLDC motors fulfill many functions originally performed by brushed
DC motors.
 Cost and control complexity prevents BLDC motors from replacing
brushed motors completely in lowest cost areas.
 High power BLDC motors are found in electric vehicles and hybrid
vehicles.
Predefined Speed Control of
BLDC Motor
http://www.edgefxkits.com/
Advantages
 Voltage and current rating is high.
 High speed can be achieved.
 As there is no brushes it requires no servicing.
 There is no sparking & less electrical noise.
Predefined Speed Control of
BLDC Motor
http://www.edgefxkits.com/
Conclusion
 The hardware for closed loop control of BLDC motor using
microcontroller is designed. By using the PWM technique speed of
the BLDC motor was controlled and it was made to run at exactly
entered speed. In future this hardware will be implemented and
the speed control will be observed.
Predefined Speed Control of
BLDC Motor
http://www.edgefxkits.com/

More Related Content

What's hot

Electric Drives and Controls Unit 1 Introduction
Electric Drives and Controls Unit 1 IntroductionElectric Drives and Controls Unit 1 Introduction
Electric Drives and Controls Unit 1 IntroductionDr.Raja R
 
PERMANENT MAGNET BRUSHLESS DC MOTOR
PERMANENT MAGNET BRUSHLESS DC MOTORPERMANENT MAGNET BRUSHLESS DC MOTOR
PERMANENT MAGNET BRUSHLESS DC MOTORArchana Balachandran
 
BLDC motor control reference design press presentation
BLDC motor control reference design press presentationBLDC motor control reference design press presentation
BLDC motor control reference design press presentationSilicon Labs
 
Dynamic modelling of dc motor drive
Dynamic modelling of dc motor driveDynamic modelling of dc motor drive
Dynamic modelling of dc motor drivevishalgohel12195
 
Synchronous Motor Drives
Synchronous Motor DrivesSynchronous Motor Drives
Synchronous Motor DrivesDr.Raja R
 
speed control of three phase induction motor
speed control of three phase induction motorspeed control of three phase induction motor
speed control of three phase induction motorAshvani Shukla
 
Reference frame theory
Reference frame theoryReference frame theory
Reference frame theoryRamesh Babu
 
Brushless motor/sanjeet-1308143
Brushless motor/sanjeet-1308143Brushless motor/sanjeet-1308143
Brushless motor/sanjeet-1308143sanjeet kumar
 
Variable frequency drives
Variable frequency drivesVariable frequency drives
Variable frequency drivesNaveen Sihag
 
Field oriented control of induction motor based on
Field oriented control  of induction motor based onField oriented control  of induction motor based on
Field oriented control of induction motor based onAMRITAKUMARI21408
 
Bldc motors in railway and metro
Bldc motors in railway and metroBldc motors in railway and metro
Bldc motors in railway and metroDilip Gy
 
Updated field oriented control of induction motor.pptx
Updated field oriented control of induction motor.pptxUpdated field oriented control of induction motor.pptx
Updated field oriented control of induction motor.pptxMohit Sharma
 
seminar on brush less dc motors
seminar on brush less dc motors seminar on brush less dc motors
seminar on brush less dc motors vinayvickky
 
Module 3 electric propulsion electric vehicle technology ppt
Module 3 electric propulsion   electric vehicle technology pptModule 3 electric propulsion   electric vehicle technology ppt
Module 3 electric propulsion electric vehicle technology pptDrCVMOHAN
 
vector control of induction motor
vector control of induction motorvector control of induction motor
vector control of induction motorDwaraka Pilla
 

What's hot (20)

Electric Drives and Controls Unit 1 Introduction
Electric Drives and Controls Unit 1 IntroductionElectric Drives and Controls Unit 1 Introduction
Electric Drives and Controls Unit 1 Introduction
 
PERMANENT MAGNET BRUSHLESS DC MOTOR
PERMANENT MAGNET BRUSHLESS DC MOTORPERMANENT MAGNET BRUSHLESS DC MOTOR
PERMANENT MAGNET BRUSHLESS DC MOTOR
 
BLDC motor control reference design press presentation
BLDC motor control reference design press presentationBLDC motor control reference design press presentation
BLDC motor control reference design press presentation
 
A.C Drives
A.C DrivesA.C Drives
A.C Drives
 
Dynamic modelling of dc motor drive
Dynamic modelling of dc motor driveDynamic modelling of dc motor drive
Dynamic modelling of dc motor drive
 
Electric drive
Electric driveElectric drive
Electric drive
 
Synchronous Motor Drives
Synchronous Motor DrivesSynchronous Motor Drives
Synchronous Motor Drives
 
speed control of three phase induction motor
speed control of three phase induction motorspeed control of three phase induction motor
speed control of three phase induction motor
 
Dc motor ppt
Dc motor pptDc motor ppt
Dc motor ppt
 
Stepper motor
Stepper motorStepper motor
Stepper motor
 
Reference frame theory
Reference frame theoryReference frame theory
Reference frame theory
 
Brushless motor/sanjeet-1308143
Brushless motor/sanjeet-1308143Brushless motor/sanjeet-1308143
Brushless motor/sanjeet-1308143
 
Variable frequency drives
Variable frequency drivesVariable frequency drives
Variable frequency drives
 
Electric power system
Electric power systemElectric power system
Electric power system
 
Field oriented control of induction motor based on
Field oriented control  of induction motor based onField oriented control  of induction motor based on
Field oriented control of induction motor based on
 
Bldc motors in railway and metro
Bldc motors in railway and metroBldc motors in railway and metro
Bldc motors in railway and metro
 
Updated field oriented control of induction motor.pptx
Updated field oriented control of induction motor.pptxUpdated field oriented control of induction motor.pptx
Updated field oriented control of induction motor.pptx
 
seminar on brush less dc motors
seminar on brush less dc motors seminar on brush less dc motors
seminar on brush less dc motors
 
Module 3 electric propulsion electric vehicle technology ppt
Module 3 electric propulsion   electric vehicle technology pptModule 3 electric propulsion   electric vehicle technology ppt
Module 3 electric propulsion electric vehicle technology ppt
 
vector control of induction motor
vector control of induction motorvector control of induction motor
vector control of induction motor
 

Viewers also liked

A seminar on brushless dc motors
A seminar on brushless dc motorsA seminar on brushless dc motors
A seminar on brushless dc motorsvishal Barvaliya
 
Brushless dc motor
Brushless dc motorBrushless dc motor
Brushless dc motorBiplab Nayak
 
BLDC Motor Speed Control With RPM Display
 BLDC Motor Speed Control With RPM Display BLDC Motor Speed Control With RPM Display
BLDC Motor Speed Control With RPM DisplayEdgefxkits & Solutions
 
Brushless DC Motors - EEERulez.BlogSpot.in
Brushless DC Motors - EEERulez.BlogSpot.inBrushless DC Motors - EEERulez.BlogSpot.in
Brushless DC Motors - EEERulez.BlogSpot.inRakesh Bhupathi
 
Brushless dc motor
Brushless dc motorBrushless dc motor
Brushless dc motoraroosa khan
 
FPGA Based Speed Control of BLDC Motor
FPGA Based Speed Control of BLDC MotorFPGA Based Speed Control of BLDC Motor
FPGA Based Speed Control of BLDC MotorRajesh Pindoriya
 
Three phase BLDC motor
Three phase BLDC motorThree phase BLDC motor
Three phase BLDC motorAnoop S
 
MC9S08MP16: 8-bit MCU For BLDC Motor Control
MC9S08MP16: 8-bit MCU For BLDC Motor ControlMC9S08MP16: 8-bit MCU For BLDC Motor Control
MC9S08MP16: 8-bit MCU For BLDC Motor ControlPremier Farnell
 
Dc to Dc Converter (chopper)
Dc to Dc Converter (chopper)Dc to Dc Converter (chopper)
Dc to Dc Converter (chopper)dharmesh nakum
 
DC Motor Control By Using A Chopper Circuit
DC Motor Control By Using A Chopper CircuitDC Motor Control By Using A Chopper Circuit
DC Motor Control By Using A Chopper CircuitBirol Arslan
 
Street Light that Glows on Detecting Vehicle Movement
Street Light that Glows on Detecting Vehicle MovementStreet Light that Glows on Detecting Vehicle Movement
Street Light that Glows on Detecting Vehicle MovementEdgefxkits & Solutions
 
Single Phase Induction Motor Speed Control
Single Phase Induction Motor Speed ControlSingle Phase Induction Motor Speed Control
Single Phase Induction Motor Speed ControlEdgefxkits & Solutions
 
Speed control of 1 φ inducton motor using traic
Speed control of 1 φ inducton motor using traicSpeed control of 1 φ inducton motor using traic
Speed control of 1 φ inducton motor using traicjawededu
 
Speed control of dc motor using pulse width modulation
Speed control of dc motor using pulse width modulationSpeed control of dc motor using pulse width modulation
Speed control of dc motor using pulse width modulationviveksinghdew
 
STREET LIGHT THAT GLOWS ON DETECTING VEHICLE MOVEMENT
STREET LIGHT THAT GLOWS ON DETECTING VEHICLE MOVEMENTSTREET LIGHT THAT GLOWS ON DETECTING VEHICLE MOVEMENT
STREET LIGHT THAT GLOWS ON DETECTING VEHICLE MOVEMENTm sivareddy
 
Report on speed control of d.c. motor using pwm method
Report on speed control of d.c. motor using pwm methodReport on speed control of d.c. motor using pwm method
Report on speed control of d.c. motor using pwm methodshivam singh
 
Speed control of DC Machine
Speed control of DC MachineSpeed control of DC Machine
Speed control of DC MachineSHAHBAAZ AHMED
 
Speed control of dc motor by fuzzy controller
Speed control of dc motor by fuzzy controllerSpeed control of dc motor by fuzzy controller
Speed control of dc motor by fuzzy controllerMurugappa Group
 

Viewers also liked (20)

A seminar on brushless dc motors
A seminar on brushless dc motorsA seminar on brushless dc motors
A seminar on brushless dc motors
 
Brushless dc motor
Brushless dc motorBrushless dc motor
Brushless dc motor
 
BLDC Motor Speed Control With RPM Display
 BLDC Motor Speed Control With RPM Display BLDC Motor Speed Control With RPM Display
BLDC Motor Speed Control With RPM Display
 
Brushless DC Motors - EEERulez.BlogSpot.in
Brushless DC Motors - EEERulez.BlogSpot.inBrushless DC Motors - EEERulez.BlogSpot.in
Brushless DC Motors - EEERulez.BlogSpot.in
 
Brushless dc motor
Brushless dc motorBrushless dc motor
Brushless dc motor
 
Brushless DC Motors
Brushless DC MotorsBrushless DC Motors
Brushless DC Motors
 
FPGA Based Speed Control of BLDC Motor
FPGA Based Speed Control of BLDC MotorFPGA Based Speed Control of BLDC Motor
FPGA Based Speed Control of BLDC Motor
 
Three phase BLDC motor
Three phase BLDC motorThree phase BLDC motor
Three phase BLDC motor
 
MC9S08MP16: 8-bit MCU For BLDC Motor Control
MC9S08MP16: 8-bit MCU For BLDC Motor ControlMC9S08MP16: 8-bit MCU For BLDC Motor Control
MC9S08MP16: 8-bit MCU For BLDC Motor Control
 
Dc to Dc Converter (chopper)
Dc to Dc Converter (chopper)Dc to Dc Converter (chopper)
Dc to Dc Converter (chopper)
 
DC Motor Control By Using A Chopper Circuit
DC Motor Control By Using A Chopper CircuitDC Motor Control By Using A Chopper Circuit
DC Motor Control By Using A Chopper Circuit
 
Street Light that Glows on Detecting Vehicle Movement
Street Light that Glows on Detecting Vehicle MovementStreet Light that Glows on Detecting Vehicle Movement
Street Light that Glows on Detecting Vehicle Movement
 
Single Phase Induction Motor Speed Control
Single Phase Induction Motor Speed ControlSingle Phase Induction Motor Speed Control
Single Phase Induction Motor Speed Control
 
Speed control of 1 φ inducton motor using traic
Speed control of 1 φ inducton motor using traicSpeed control of 1 φ inducton motor using traic
Speed control of 1 φ inducton motor using traic
 
Speed control of dc motor using pulse width modulation
Speed control of dc motor using pulse width modulationSpeed control of dc motor using pulse width modulation
Speed control of dc motor using pulse width modulation
 
STREET LIGHT THAT GLOWS ON DETECTING VEHICLE MOVEMENT
STREET LIGHT THAT GLOWS ON DETECTING VEHICLE MOVEMENTSTREET LIGHT THAT GLOWS ON DETECTING VEHICLE MOVEMENT
STREET LIGHT THAT GLOWS ON DETECTING VEHICLE MOVEMENT
 
Report on speed control of d.c. motor using pwm method
Report on speed control of d.c. motor using pwm methodReport on speed control of d.c. motor using pwm method
Report on speed control of d.c. motor using pwm method
 
Speed control of DC Machine
Speed control of DC MachineSpeed control of DC Machine
Speed control of DC Machine
 
Speed control of dc motor by fuzzy controller
Speed control of dc motor by fuzzy controllerSpeed control of dc motor by fuzzy controller
Speed control of dc motor by fuzzy controller
 
Tda5140 a
Tda5140 aTda5140 a
Tda5140 a
 

Similar to Predefined speed control of bldc motor

IRJET- Variable Frequency Drive Used in Treadmill
IRJET- Variable Frequency Drive Used in TreadmillIRJET- Variable Frequency Drive Used in Treadmill
IRJET- Variable Frequency Drive Used in TreadmillIRJET Journal
 
torque Ripple Minimization of BLDC Motor
torque Ripple Minimization of BLDC Motortorque Ripple Minimization of BLDC Motor
torque Ripple Minimization of BLDC MotorPoojaBan
 
Torque Ripple Minimization of a BLDC Motor Drive by Using Electronic Commutat...
Torque Ripple Minimization of a BLDC Motor Drive by Using Electronic Commutat...Torque Ripple Minimization of a BLDC Motor Drive by Using Electronic Commutat...
Torque Ripple Minimization of a BLDC Motor Drive by Using Electronic Commutat...AI Publications
 
Speed Torque Characteristics of BLDC Motor with Load Variations
Speed Torque Characteristics of BLDC Motor with Load VariationsSpeed Torque Characteristics of BLDC Motor with Load Variations
Speed Torque Characteristics of BLDC Motor with Load Variationsijtsrd
 
Industrial Temperature Controller using Microcontroller
Industrial Temperature Controller using MicrocontrollerIndustrial Temperature Controller using Microcontroller
Industrial Temperature Controller using MicrocontrollerEdgefxkits & Solutions
 
Sensorless Speed Control of Brushless DC Motor by MATLAB
Sensorless Speed Control of Brushless DC Motor by MATLABSensorless Speed Control of Brushless DC Motor by MATLAB
Sensorless Speed Control of Brushless DC Motor by MATLABIRJET Journal
 
IRJET- A Review on - PMBLDC Motor Drive with Power Factor Correction Controller
IRJET- A Review on - PMBLDC Motor Drive with Power Factor Correction ControllerIRJET- A Review on - PMBLDC Motor Drive with Power Factor Correction Controller
IRJET- A Review on - PMBLDC Motor Drive with Power Factor Correction ControllerIRJET Journal
 
Doc speed control of a dc motor using micro controller 8051
Doc speed control of a dc motor using micro controller 8051Doc speed control of a dc motor using micro controller 8051
Doc speed control of a dc motor using micro controller 8051embdnew
 
Power Quality Analysis of Vienna Rectifier for BLDC Motor Drive Application
Power Quality Analysis of Vienna Rectifier for BLDC Motor Drive ApplicationPower Quality Analysis of Vienna Rectifier for BLDC Motor Drive Application
Power Quality Analysis of Vienna Rectifier for BLDC Motor Drive ApplicationIJPEDS-IAES
 
Speed Control of Brushless Dc Motor Using Fuzzy Logic Controller
Speed Control of Brushless Dc Motor Using Fuzzy Logic ControllerSpeed Control of Brushless Dc Motor Using Fuzzy Logic Controller
Speed Control of Brushless Dc Motor Using Fuzzy Logic Controlleriosrjce
 
Speed Control of BLDC Motor with Four Quadrant Operation Using dsPIC
Speed Control of BLDC Motor with Four Quadrant Operation Using dsPICSpeed Control of BLDC Motor with Four Quadrant Operation Using dsPIC
Speed Control of BLDC Motor with Four Quadrant Operation Using dsPICijsrd.com
 

Similar to Predefined speed control of bldc motor (20)

IRJET- Variable Frequency Drive Used in Treadmill
IRJET- Variable Frequency Drive Used in TreadmillIRJET- Variable Frequency Drive Used in Treadmill
IRJET- Variable Frequency Drive Used in Treadmill
 
Ac motor closedloo[p
Ac motor closedloo[pAc motor closedloo[p
Ac motor closedloo[p
 
torque Ripple Minimization of BLDC Motor
torque Ripple Minimization of BLDC Motortorque Ripple Minimization of BLDC Motor
torque Ripple Minimization of BLDC Motor
 
Ac closed loop
Ac closed loopAc closed loop
Ac closed loop
 
THREE PHASE INVERTER FED BLDC MOTOR DRIVE
THREE PHASE INVERTER FED BLDC MOTOR DRIVETHREE PHASE INVERTER FED BLDC MOTOR DRIVE
THREE PHASE INVERTER FED BLDC MOTOR DRIVE
 
Presentation200 (1).ppt
Presentation200 (1).pptPresentation200 (1).ppt
Presentation200 (1).ppt
 
Torque Ripple Minimization of a BLDC Motor Drive by Using Electronic Commutat...
Torque Ripple Minimization of a BLDC Motor Drive by Using Electronic Commutat...Torque Ripple Minimization of a BLDC Motor Drive by Using Electronic Commutat...
Torque Ripple Minimization of a BLDC Motor Drive by Using Electronic Commutat...
 
I1103016569
I1103016569I1103016569
I1103016569
 
A fuzzy logic controller based brushless DC motor using PFC cuk converter
A fuzzy logic controller based brushless DC motor using PFC cuk converterA fuzzy logic controller based brushless DC motor using PFC cuk converter
A fuzzy logic controller based brushless DC motor using PFC cuk converter
 
Speed Torque Characteristics of BLDC Motor with Load Variations
Speed Torque Characteristics of BLDC Motor with Load VariationsSpeed Torque Characteristics of BLDC Motor with Load Variations
Speed Torque Characteristics of BLDC Motor with Load Variations
 
Industrial Temperature Controller using Microcontroller
Industrial Temperature Controller using MicrocontrollerIndustrial Temperature Controller using Microcontroller
Industrial Temperature Controller using Microcontroller
 
Sensorless Speed Control of Brushless DC Motor by MATLAB
Sensorless Speed Control of Brushless DC Motor by MATLABSensorless Speed Control of Brushless DC Motor by MATLAB
Sensorless Speed Control of Brushless DC Motor by MATLAB
 
IRJET- A Review on - PMBLDC Motor Drive with Power Factor Correction Controller
IRJET- A Review on - PMBLDC Motor Drive with Power Factor Correction ControllerIRJET- A Review on - PMBLDC Motor Drive with Power Factor Correction Controller
IRJET- A Review on - PMBLDC Motor Drive with Power Factor Correction Controller
 
Doc speed control of a dc motor using micro controller 8051
Doc speed control of a dc motor using micro controller 8051Doc speed control of a dc motor using micro controller 8051
Doc speed control of a dc motor using micro controller 8051
 
ELEKTRA_new
ELEKTRA_newELEKTRA_new
ELEKTRA_new
 
Power Quality Analysis of Vienna Rectifier for BLDC Motor Drive Application
Power Quality Analysis of Vienna Rectifier for BLDC Motor Drive ApplicationPower Quality Analysis of Vienna Rectifier for BLDC Motor Drive Application
Power Quality Analysis of Vienna Rectifier for BLDC Motor Drive Application
 
Ijetr012032
Ijetr012032Ijetr012032
Ijetr012032
 
J010616573
J010616573J010616573
J010616573
 
Speed Control of Brushless Dc Motor Using Fuzzy Logic Controller
Speed Control of Brushless Dc Motor Using Fuzzy Logic ControllerSpeed Control of Brushless Dc Motor Using Fuzzy Logic Controller
Speed Control of Brushless Dc Motor Using Fuzzy Logic Controller
 
Speed Control of BLDC Motor with Four Quadrant Operation Using dsPIC
Speed Control of BLDC Motor with Four Quadrant Operation Using dsPICSpeed Control of BLDC Motor with Four Quadrant Operation Using dsPIC
Speed Control of BLDC Motor with Four Quadrant Operation Using dsPIC
 

More from Edgefxkits & Solutions

Mains operated under voltage over voltage trip switch
Mains operated under voltage over voltage trip switchMains operated under voltage over voltage trip switch
Mains operated under voltage over voltage trip switchEdgefxkits & Solutions
 
TV Remote Jammer | 555 Timer Projects | Final Year Engineering Projects
TV Remote Jammer | 555 Timer Projects | Final Year Engineering ProjectsTV Remote Jammer | 555 Timer Projects | Final Year Engineering Projects
TV Remote Jammer | 555 Timer Projects | Final Year Engineering ProjectsEdgefxkits & Solutions
 
Microcontroller based Electronic Eye Controlled security System
Microcontroller based Electronic Eye Controlled security SystemMicrocontroller based Electronic Eye Controlled security System
Microcontroller based Electronic Eye Controlled security SystemEdgefxkits & Solutions
 
How to select the diy electrical projects kit by engineering students
How to select the diy electrical projects kit by engineering studentsHow to select the diy electrical projects kit by engineering students
How to select the diy electrical projects kit by engineering studentsEdgefxkits & Solutions
 
Smooth start of a single phase induction motor
Smooth start of a single phase induction motorSmooth start of a single phase induction motor
Smooth start of a single phase induction motorEdgefxkits & Solutions
 
How to build a robot with an arduino and 8051 microcontroller
How to build a robot with an arduino and 8051 microcontrollerHow to build a robot with an arduino and 8051 microcontroller
How to build a robot with an arduino and 8051 microcontrollerEdgefxkits & Solutions
 
Opto-Electronic Oscillator Circuit Working and Applications
Opto-Electronic Oscillator Circuit Working and ApplicationsOpto-Electronic Oscillator Circuit Working and Applications
Opto-Electronic Oscillator Circuit Working and ApplicationsEdgefxkits & Solutions
 
Importance of Doing Mini Projects By Engineering Students
Importance of Doing Mini Projects By Engineering StudentsImportance of Doing Mini Projects By Engineering Students
Importance of Doing Mini Projects By Engineering StudentsEdgefxkits & Solutions
 
Common mode rejection ratio (cmrr) and the operational amplifier
Common mode rejection ratio (cmrr) and the operational amplifierCommon mode rejection ratio (cmrr) and the operational amplifier
Common mode rejection ratio (cmrr) and the operational amplifierEdgefxkits & Solutions
 
Tutorial on avr atmega8 microcontroller, architecture and its applications
Tutorial on avr atmega8 microcontroller, architecture and its applicationsTutorial on avr atmega8 microcontroller, architecture and its applications
Tutorial on avr atmega8 microcontroller, architecture and its applicationsEdgefxkits & Solutions
 
Photodiode working principle characteristics and applications
Photodiode working principle characteristics and applicationsPhotodiode working principle characteristics and applications
Photodiode working principle characteristics and applicationsEdgefxkits & Solutions
 
Cro cathode ray oscilloscope working and applications
Cro cathode ray oscilloscope working and applicationsCro cathode ray oscilloscope working and applications
Cro cathode ray oscilloscope working and applicationsEdgefxkits & Solutions
 
Electronic Speed Control (ESC) Circuits, Working And Applications
Electronic Speed Control (ESC) Circuits, Working And ApplicationsElectronic Speed Control (ESC) Circuits, Working And Applications
Electronic Speed Control (ESC) Circuits, Working And ApplicationsEdgefxkits & Solutions
 
Difference between soc and single board computer ppt1
Difference between soc and single board computer ppt1Difference between soc and single board computer ppt1
Difference between soc and single board computer ppt1Edgefxkits & Solutions
 
Prepaid energy meter with gsm interface
Prepaid energy meter with gsm interfacePrepaid energy meter with gsm interface
Prepaid energy meter with gsm interfaceEdgefxkits & Solutions
 
Pc mouse operated electrical load control using vb application
Pc mouse operated electrical load control using vb applicationPc mouse operated electrical load control using vb application
Pc mouse operated electrical load control using vb applicationEdgefxkits & Solutions
 

More from Edgefxkits & Solutions (20)

Mains operated under voltage over voltage trip switch
Mains operated under voltage over voltage trip switchMains operated under voltage over voltage trip switch
Mains operated under voltage over voltage trip switch
 
Scada for remote industrial plant
Scada for remote industrial plant Scada for remote industrial plant
Scada for remote industrial plant
 
TV Remote Jammer | 555 Timer Projects | Final Year Engineering Projects
TV Remote Jammer | 555 Timer Projects | Final Year Engineering ProjectsTV Remote Jammer | 555 Timer Projects | Final Year Engineering Projects
TV Remote Jammer | 555 Timer Projects | Final Year Engineering Projects
 
Microcontroller based Electronic Eye Controlled security System
Microcontroller based Electronic Eye Controlled security SystemMicrocontroller based Electronic Eye Controlled security System
Microcontroller based Electronic Eye Controlled security System
 
How to select the diy electrical projects kit by engineering students
How to select the diy electrical projects kit by engineering studentsHow to select the diy electrical projects kit by engineering students
How to select the diy electrical projects kit by engineering students
 
Smooth start of a single phase induction motor
Smooth start of a single phase induction motorSmooth start of a single phase induction motor
Smooth start of a single phase induction motor
 
How to build a robot with an arduino and 8051 microcontroller
How to build a robot with an arduino and 8051 microcontrollerHow to build a robot with an arduino and 8051 microcontroller
How to build a robot with an arduino and 8051 microcontroller
 
Opto-Electronic Oscillator Circuit Working and Applications
Opto-Electronic Oscillator Circuit Working and ApplicationsOpto-Electronic Oscillator Circuit Working and Applications
Opto-Electronic Oscillator Circuit Working and Applications
 
Importance of Doing Mini Projects By Engineering Students
Importance of Doing Mini Projects By Engineering StudentsImportance of Doing Mini Projects By Engineering Students
Importance of Doing Mini Projects By Engineering Students
 
Common mode rejection ratio (cmrr) and the operational amplifier
Common mode rejection ratio (cmrr) and the operational amplifierCommon mode rejection ratio (cmrr) and the operational amplifier
Common mode rejection ratio (cmrr) and the operational amplifier
 
Vehicle tracking by gps gsm
Vehicle tracking by gps   gsm Vehicle tracking by gps   gsm
Vehicle tracking by gps gsm
 
Tutorial on avr atmega8 microcontroller, architecture and its applications
Tutorial on avr atmega8 microcontroller, architecture and its applicationsTutorial on avr atmega8 microcontroller, architecture and its applications
Tutorial on avr atmega8 microcontroller, architecture and its applications
 
Photodiode working principle characteristics and applications
Photodiode working principle characteristics and applicationsPhotodiode working principle characteristics and applications
Photodiode working principle characteristics and applications
 
Cro cathode ray oscilloscope working and applications
Cro cathode ray oscilloscope working and applicationsCro cathode ray oscilloscope working and applications
Cro cathode ray oscilloscope working and applications
 
Rfid security access control system
Rfid security access control systemRfid security access control system
Rfid security access control system
 
Density based traffic signal system
Density based traffic signal systemDensity based traffic signal system
Density based traffic signal system
 
Electronic Speed Control (ESC) Circuits, Working And Applications
Electronic Speed Control (ESC) Circuits, Working And ApplicationsElectronic Speed Control (ESC) Circuits, Working And Applications
Electronic Speed Control (ESC) Circuits, Working And Applications
 
Difference between soc and single board computer ppt1
Difference between soc and single board computer ppt1Difference between soc and single board computer ppt1
Difference between soc and single board computer ppt1
 
Prepaid energy meter with gsm interface
Prepaid energy meter with gsm interfacePrepaid energy meter with gsm interface
Prepaid energy meter with gsm interface
 
Pc mouse operated electrical load control using vb application
Pc mouse operated electrical load control using vb applicationPc mouse operated electrical load control using vb application
Pc mouse operated electrical load control using vb application
 

Recently uploaded

the ladakh protest in leh ladakh 2024 sonam wangchuk.pptx
the ladakh protest in leh ladakh 2024 sonam wangchuk.pptxthe ladakh protest in leh ladakh 2024 sonam wangchuk.pptx
the ladakh protest in leh ladakh 2024 sonam wangchuk.pptxhumanexperienceaaa
 
SPICE PARK APR2024 ( 6,793 SPICE Models )
SPICE PARK APR2024 ( 6,793 SPICE Models )SPICE PARK APR2024 ( 6,793 SPICE Models )
SPICE PARK APR2024 ( 6,793 SPICE Models )Tsuyoshi Horigome
 
(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...ranjana rawat
 
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptx
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptxDecoding Kotlin - Your guide to solving the mysterious in Kotlin.pptx
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptxJoão Esperancinha
 
Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...
Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...
Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...Christo Ananth
 
Microscopic Analysis of Ceramic Materials.pptx
Microscopic Analysis of Ceramic Materials.pptxMicroscopic Analysis of Ceramic Materials.pptx
Microscopic Analysis of Ceramic Materials.pptxpurnimasatapathy1234
 
main PPT.pptx of girls hostel security using rfid
main PPT.pptx of girls hostel security using rfidmain PPT.pptx of girls hostel security using rfid
main PPT.pptx of girls hostel security using rfidNikhilNagaraju
 
MANUFACTURING PROCESS-II UNIT-5 NC MACHINE TOOLS
MANUFACTURING PROCESS-II UNIT-5 NC MACHINE TOOLSMANUFACTURING PROCESS-II UNIT-5 NC MACHINE TOOLS
MANUFACTURING PROCESS-II UNIT-5 NC MACHINE TOOLSSIVASHANKAR N
 
College Call Girls Nashik Nehal 7001305949 Independent Escort Service Nashik
College Call Girls Nashik Nehal 7001305949 Independent Escort Service NashikCollege Call Girls Nashik Nehal 7001305949 Independent Escort Service Nashik
College Call Girls Nashik Nehal 7001305949 Independent Escort Service NashikCall Girls in Nagpur High Profile
 
Call Girls Delhi {Jodhpur} 9711199012 high profile service
Call Girls Delhi {Jodhpur} 9711199012 high profile serviceCall Girls Delhi {Jodhpur} 9711199012 high profile service
Call Girls Delhi {Jodhpur} 9711199012 high profile servicerehmti665
 
HARMONY IN THE NATURE AND EXISTENCE - Unit-IV
HARMONY IN THE NATURE AND EXISTENCE - Unit-IVHARMONY IN THE NATURE AND EXISTENCE - Unit-IV
HARMONY IN THE NATURE AND EXISTENCE - Unit-IVRajaP95
 
APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICS
APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICSAPPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICS
APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICSKurinjimalarL3
 
Processing & Properties of Floor and Wall Tiles.pptx
Processing & Properties of Floor and Wall Tiles.pptxProcessing & Properties of Floor and Wall Tiles.pptx
Processing & Properties of Floor and Wall Tiles.pptxpranjaldaimarysona
 
GDSC ASEB Gen AI study jams presentation
GDSC ASEB Gen AI study jams presentationGDSC ASEB Gen AI study jams presentation
GDSC ASEB Gen AI study jams presentationGDSCAESB
 
chaitra-1.pptx fake news detection using machine learning
chaitra-1.pptx  fake news detection using machine learningchaitra-1.pptx  fake news detection using machine learning
chaitra-1.pptx fake news detection using machine learningmisbanausheenparvam
 

Recently uploaded (20)

the ladakh protest in leh ladakh 2024 sonam wangchuk.pptx
the ladakh protest in leh ladakh 2024 sonam wangchuk.pptxthe ladakh protest in leh ladakh 2024 sonam wangchuk.pptx
the ladakh protest in leh ladakh 2024 sonam wangchuk.pptx
 
SPICE PARK APR2024 ( 6,793 SPICE Models )
SPICE PARK APR2024 ( 6,793 SPICE Models )SPICE PARK APR2024 ( 6,793 SPICE Models )
SPICE PARK APR2024 ( 6,793 SPICE Models )
 
(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
 
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptx
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptxDecoding Kotlin - Your guide to solving the mysterious in Kotlin.pptx
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptx
 
Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...
Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...
Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...
 
Microscopic Analysis of Ceramic Materials.pptx
Microscopic Analysis of Ceramic Materials.pptxMicroscopic Analysis of Ceramic Materials.pptx
Microscopic Analysis of Ceramic Materials.pptx
 
main PPT.pptx of girls hostel security using rfid
main PPT.pptx of girls hostel security using rfidmain PPT.pptx of girls hostel security using rfid
main PPT.pptx of girls hostel security using rfid
 
MANUFACTURING PROCESS-II UNIT-5 NC MACHINE TOOLS
MANUFACTURING PROCESS-II UNIT-5 NC MACHINE TOOLSMANUFACTURING PROCESS-II UNIT-5 NC MACHINE TOOLS
MANUFACTURING PROCESS-II UNIT-5 NC MACHINE TOOLS
 
College Call Girls Nashik Nehal 7001305949 Independent Escort Service Nashik
College Call Girls Nashik Nehal 7001305949 Independent Escort Service NashikCollege Call Girls Nashik Nehal 7001305949 Independent Escort Service Nashik
College Call Girls Nashik Nehal 7001305949 Independent Escort Service Nashik
 
Call Girls Delhi {Jodhpur} 9711199012 high profile service
Call Girls Delhi {Jodhpur} 9711199012 high profile serviceCall Girls Delhi {Jodhpur} 9711199012 high profile service
Call Girls Delhi {Jodhpur} 9711199012 high profile service
 
Roadmap to Membership of RICS - Pathways and Routes
Roadmap to Membership of RICS - Pathways and RoutesRoadmap to Membership of RICS - Pathways and Routes
Roadmap to Membership of RICS - Pathways and Routes
 
Call Us -/9953056974- Call Girls In Vikaspuri-/- Delhi NCR
Call Us -/9953056974- Call Girls In Vikaspuri-/- Delhi NCRCall Us -/9953056974- Call Girls In Vikaspuri-/- Delhi NCR
Call Us -/9953056974- Call Girls In Vikaspuri-/- Delhi NCR
 
HARMONY IN THE NATURE AND EXISTENCE - Unit-IV
HARMONY IN THE NATURE AND EXISTENCE - Unit-IVHARMONY IN THE NATURE AND EXISTENCE - Unit-IV
HARMONY IN THE NATURE AND EXISTENCE - Unit-IV
 
APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICS
APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICSAPPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICS
APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICS
 
Processing & Properties of Floor and Wall Tiles.pptx
Processing & Properties of Floor and Wall Tiles.pptxProcessing & Properties of Floor and Wall Tiles.pptx
Processing & Properties of Floor and Wall Tiles.pptx
 
GDSC ASEB Gen AI study jams presentation
GDSC ASEB Gen AI study jams presentationGDSC ASEB Gen AI study jams presentation
GDSC ASEB Gen AI study jams presentation
 
9953056974 Call Girls In South Ex, Escorts (Delhi) NCR.pdf
9953056974 Call Girls In South Ex, Escorts (Delhi) NCR.pdf9953056974 Call Girls In South Ex, Escorts (Delhi) NCR.pdf
9953056974 Call Girls In South Ex, Escorts (Delhi) NCR.pdf
 
★ CALL US 9953330565 ( HOT Young Call Girls In Badarpur delhi NCR
★ CALL US 9953330565 ( HOT Young Call Girls In Badarpur delhi NCR★ CALL US 9953330565 ( HOT Young Call Girls In Badarpur delhi NCR
★ CALL US 9953330565 ( HOT Young Call Girls In Badarpur delhi NCR
 
chaitra-1.pptx fake news detection using machine learning
chaitra-1.pptx  fake news detection using machine learningchaitra-1.pptx  fake news detection using machine learning
chaitra-1.pptx fake news detection using machine learning
 
DJARUM4D - SLOT GACOR ONLINE | SLOT DEMO ONLINE
DJARUM4D - SLOT GACOR ONLINE | SLOT DEMO ONLINEDJARUM4D - SLOT GACOR ONLINE | SLOT DEMO ONLINE
DJARUM4D - SLOT GACOR ONLINE | SLOT DEMO ONLINE
 

Predefined speed control of bldc motor

  • 2. http://www.edgefxkits.com/ Introduction  The aim of the project is to control the speed of a BLDC motor using a microcontroller with the help of SVPWM-technique. A brushless DC (BLDC) motor drive is characterized by higher efficiency, lower maintenance, and higher cost. Therefore, it is necessary to have a low- cost but effective BLDC motor controller. Based on the principle of PWM, speed of the motor can be controlled. Predefined Speed Control of BLDC Motor
  • 4. http://www.edgefxkits.com/ Hardware Components  8051 series Microcontroller  LCD  Transformer  Voltage Regulator  Capacitors  Resistors  Diodes  BLDC Fan  EEPROM Predefined Speed Control of BLDC Motor
  • 5. http://www.edgefxkits.com/ Software Components  Keil compiler  Languages: Embedded C or Assembly. Predefined Speed Control of BLDC Motor
  • 6. http://www.edgefxkits.com/ MICROCONTROLE R The AT89C52 is a low-power, high performance CMOS 8-bit microcomputer with 8Kbytes of Flash programmable and erasable read only memory (PEROM). The on-chip Flash allows the program memory to be reprogrammed in system or by a conventional nonvolatile memory programmer. Predefined Speed Control of BLDC Motor
  • 7. http://www.edgefxkits.com/ Features  8K Bytes of In-System Reprogrammable Flash Memory  Endurance: 1,000 Write/Erase Cycles  Fully Static Operation: 0 Hz to 24 MHz  Three-level Program Memory Lock  256 x 8-bit Internal RAM Predefined Speed Control of BLDC Motor
  • 8. http://www.edgefxkits.com/ BLDC Motor  The BLDC motor is an AC synchronous motor with permanent magnets on the rotor (moving part) and windings on the stator (fix part).  Permanent magnets create the rotor flux and the energized stator windings create electromagnet poles.  The rotor is attracted by the energized stator phase. Predefined Speed Control of BLDC Motor
  • 9. http://www.edgefxkits.com/  By using the appropriate sequence to supply the stator phases, a rotating field on the stator is created and maintained.  The lead between the rotor and the rotating field must be controlled to produce torque and this synchronization implies knowledge of the rotor position. BLDC Motor Predefined Speed Control of BLDC Motor
  • 10. http://www.edgefxkits.com/ Principle of BLDC Motor  Frequency inverter used as Commutator.  Commutation depends on rotor position.  Speed control by motor voltage.  Angle between mmfs of a stator and rotor is fixed to 90 degree.  Motor behaves like a DC Motor.  No commutation occurs on spinning shaft. Predefined Speed Control of BLDC Motor
  • 11. http://www.edgefxkits.com/ Circuit Operation The operation of the circuit can be explained in three parts.  Control circuit  Motor driver and Gate driving circuit  Converter circuit Predefined Speed Control of BLDC Motor
  • 12. http://www.edgefxkits.com/ Control Circuit  Control circuit gives out the switching signals to the converter bridge.  A microcontroller is dedicated to generate the switching pulses.  The microcontroller is programmed to give out pulse according to SVPWMM technique.  Program is compiled in Keil software. Predefined Speed Control of BLDC Motor
  • 13. http://www.edgefxkits.com/  The HEX code generated is loaded into the Microcontroller.  The controller used is AT89C52.  The controller is operated at 11.059 MHz frequency. Control Circuit Predefined Speed Control of BLDC Motor
  • 14. http://www.edgefxkits.com/  Instead of using an inverter and a regulator we have used a motor driver HW30A which acts as inverter to supply the voltage for the Motor.  HW30A is an inbuilt Inverter which is having Inverter circuit as well as MOSFET Driver circuit.  We are using this type of technique because of on using general inverter. Motor Driver And Gate Driving Circuit Predefined Speed Control of BLDC Motor
  • 15. http://www.edgefxkits.com/  We are facing the difficulties like large Heat dissipation, so that this heat would cause a heat sinking problem which in turn results in the failure of the Inverter.  By using this motor driver the circuit complexity is reduced and the heat dissipation problem, is also reduced. Motor Driver And Gate Driving Circuit Predefined Speed Control of BLDC Motor
  • 16. http://www.edgefxkits.com/ Converter Circuit  The converter circuit is provided by the Motor driver.  The D.C supply is fed through a bridge rectifier.  The switches in the Motor driver are turned ON and OFF as per the program.  The rectifier circuit is made of diodes.  The component used is IN4007 which is capable of blocking a reverse voltage of 1000 V DC and can carry a current of 10A continuous. Predefined Speed Control of BLDC Motor
  • 17. http://www.edgefxkits.com/  All these components are placed on General PCB.  Control circuit and gate driving circuit components are soldered directly on the Pcb.  Whereas, the power components as connected with suitable connectors as they carry larger currents. Converter circuit Predefined Speed Control of BLDC Motor
  • 18. http://www.edgefxkits.com/ Working  The basic construction of a brushless dc consists of a fan blade attached to a permanent magnet rotor that surrounds the electromagnetic coils of the stator and associated control electronics.  A typical biphase brushless fan motor is made from a permanent magnet rotor assembly that surrounds four electromagnetic coils.  The coils work in pairs, with coils A and C forming one phase and coils B and D the other phase. Predefined Speed Control of BLDC Motor
  • 19. http://www.edgefxkits.com/  A Halleffect sensor monitors rotor position, providing feedback to the embedded MCU for commutation, speed regulation, and fault detection.  Commutation between the two phase windings in the dc fan takes place electronically by alternately applying power to L1 and L2.  Dead zones between the power pulses limit current for speed control and helps minimize a cogging effect when the rotor magnets align with the stator coils.  The on and off power of the commutation period resembles the output from a pulse width modulator. Working Principle Predefined Speed Control of BLDC Motor
  • 20. http://www.edgefxkits.com/  The MCU uses a PWM to control the period of the motor drivers and, thus set fan speed.  Feedback from the Hall sensor monitors actual fan rpm and indicate when communication should take place.  The MCU continuously monitors motor speed by measuring the output period of the Hall effect sensor.  A period that run shorter than the target length indicates motor speed is too fast. Working Principle Predefined Speed Control of BLDC Motor
  • 21. http://www.edgefxkits.com/ Speed Control Of BLDC Motor  Pulse width modulation is a commonly used technique for controlling power to an electrical device.  The PWM switching frequency has to be much faster than what would affect the load.  Typically switching’s have to be done several times a minute in an electric stove, 120 Hz in a lamp dimmer, from few kilohertz (kHz) to tens of kHz for a motor drive and well into the tens or hundreds of kHz in audio amplifiers and computer power supplies Predefined Speed Control of BLDC Motor
  • 22. http://www.edgefxkits.com/  The term duty cycle describes the proportion of on time to the regular interval or period of time.  A low duty cycle corresponds to low power, because the power is off for most of the time.  Duty cycle is expressed in percent, 100% being fully on.  The main advantage of PWM is that power loss in the switching devices is very low. Speed Control Of BLDC Motor Predefined Speed Control of BLDC Motor
  • 23. http://www.edgefxkits.com/  When a switch is off there is practically no current and when it is on, there is almost no voltage drop across the switch.  Power loss, being the product of voltage and current, is thus in both cases close to zero.  The desired speed can be obtained by changing the duty cycle.  The PWM in microcontroller is used to control the duty cycle of DC motor. Average Voltage=D * Vin Speed Control Of BLDC Motor Predefined Speed Control of BLDC Motor
  • 24. http://www.edgefxkits.com/ SIMULATION RESULTS FOR VARIOUS PWM PULSES  The speed control technique employed here is pulse width modulation (PWM) technique.  The duty cycle determines the speed of the motor Average voltage = D * Vin  The average voltage obtained for various duty cycles is also mentioned and as the duty cycle percentage decreases average voltage also decreases from the supply voltage. Predefined Speed Control of BLDC Motor
  • 25. http://www.edgefxkits.com/  Duty cycle is defined as the percentage of time the motor is ON.  Therefore, the duty cycle is given as Duty Cycle = 100% x Pulse Width/Period Where, Duty Cycle in (%) Pulse Width = Time the signal is in the ON or high state(sec) Period = Time of one cycle (sec). Predefined Speed Control of BLDC Motor SIMULATION RESULTS FOR VARIOUS PWM PULSES
  • 26. http://www.edgefxkits.com/ Applications  BLDC motors fulfill many functions originally performed by brushed DC motors.  Cost and control complexity prevents BLDC motors from replacing brushed motors completely in lowest cost areas.  High power BLDC motors are found in electric vehicles and hybrid vehicles. Predefined Speed Control of BLDC Motor
  • 27. http://www.edgefxkits.com/ Advantages  Voltage and current rating is high.  High speed can be achieved.  As there is no brushes it requires no servicing.  There is no sparking & less electrical noise. Predefined Speed Control of BLDC Motor
  • 28. http://www.edgefxkits.com/ Conclusion  The hardware for closed loop control of BLDC motor using microcontroller is designed. By using the PWM technique speed of the BLDC motor was controlled and it was made to run at exactly entered speed. In future this hardware will be implemented and the speed control will be observed. Predefined Speed Control of BLDC Motor