SlideShare a Scribd company logo
1 of 4
Download to read offline
IJRET: International Journal of Research in Engineering and Technology eISSN: 2319-1163 | pISSN: 2321-7308
__________________________________________________________________________________________
Volume: 03 Issue: 03 | Mar-2014, Available @ http://www.ijret.org 398
DC MOTOR SPEED CONTROL WITH FEEDBACK MONITOR BASED
ON C# APPLICATION
Prithviraj R. Shetti1
, Ashok G. Mangave2
1
lecturer, E&TC Engg, Ashokrao Mane Polytechnic, Kolhapur, Maharashtra, India
2
lecturer, E&TC Engg, Ashokrao Mane Polytechnic, Kolhapur, Maharashtra, India
Abstract
Precise, cheap control and monitoring the speed of DC motor is ever hot area of work. In the present paper we have attempted to
implement speed control and feedback monitoring for a 12 Volt/1000 RPM rated motor. Speed control is done with help of PWM pins
on Arduino/AVR board and H-bridge IC L293D. Feedback speed monitoring is based on IR pair based interrupt monitoring. Hence
Sensing and calculation part of process is handled by Arduino/AVR board. All of this is implemented with help of PC based user
interface developed in C#. In a typical user interface speed control is achieved with help of trackBar and speed monitoring with help
of Text window, was we get direct readout of current speed in RPM.
Keywords: Arduino/AVR board, PWM, DC motor, IR based speed monitoring using interrupt, C# etc…
----------------------------------------------------------------------***------------------------------------------------------------------------
1. INTRODUCTION
DC motors are mainstay of electric traction drives on both
electric and diesel-electric locomotives, street-cars/trams and
diesel electric drilling rigs for many years. The introduction of
DC motor and an electric grid system to run the machinery
started in 1870’s and cause second industrial revolution.
Today DC motors are still found in toys and disk drives, or in
large sizes to operate steel rolling mills and paper
machines.[1] Speed Control of DC motor is a area we are
always interested in. For the reason that the solution has to
precise and more importantly cheap. Interested sectors include
small/heavy industry and research laboratory. Here it is to be
noted that speed control and speed regulation are different
terms. For present project we demonstrate speed control.
However since this application is PC based wherein we
monitor current speed, it can be successfully modified for
speed regulation tasks. With the help of present system user
can control speed of DC motor with help of a friendly user
interface. User can select direction of rotation viz.
Clockwise/Anticlockwise at click of a button during any time
of operation. He can select speed of rotation with help of
trackBar. Stop motor with button click. And also monitor
current speed in text window.
The development of such a system was assisted and made easy
going by open source Arduino/AVR board which has ready to
use PWM pins and also to mention the CMOS H-bridge IC
L293D motor driver IC. It is possible to control direction and
speed both with help of this IC.
2. RELATED WORK
Obviously the idea of DC motor speed control is not new.
Particularly speaking, for the kind of motor we use in our
project. We can find numerous authentic websites
demonstrating speed control with help of Arduino[2] and
L293D[3] which is a motor driver IC. In most cases
potentiometer is used to demonstrate speed control using
PWM capabilities of Arduino.
3. PROPOSED SYSTEM
Fig 1 shows the block level representation of system. IR pair
is used monitor the speed of motor. Very cheaply available
unmatched pair is used to have test results in bad conditions.
The H-bridge motor driver IC L293D requires a +5volt for
operation and a separate 0-24volt external supply for motor. It
is used to change speed and direction of motor. The PC based
application has trackBar for speed control, Buttons to
open/close serial port, change direction of rotation, stop motor
and a text window for monitoring speed. Motor is 12volt/1000
RPM rated motor.
Fig -1: Proposed system
IJRET: International Journal of Research in Engineering and Technology eISSN: 2319-1163 | pISSN: 2321-7308
__________________________________________________________________________________________
Volume: 03 Issue: 03 | Mar-2014, Available @ http://www.ijret.org 399
4. HARDWARE DESIGN
4.1 Arduino/AVR Board
Either a standalone Arduino board or minimal Arduino
configuration works fine. We used standard Arduino available
as Freeduino board in India. Fig 2 shows sketch of circuit
setup developed using fritzing[4].
Fig -2: Circuit arrangement in fritzing
4.2 Motor Driver Unit
Motor driver unit has IC L293D. The pin connections can be
found in datasheet[3]. logic for changing direction of motor
and controlling motion in Table 1. Table 1 indication the way
pins must be configured for changing direction of rotation.
Pins 2 and 7 of L293D are connected to Arduino pins4 and 5
respectively. These pins are used to control direction of
rotation. Pin1 of L293D connected to PWM pin3 of Arduino.
This pin is used to control speed of rotation. Values written in
the range of 0-5 volt on this pin change the speed of motor
from 0-max rated.
4.3 IR Pair
IR pair is used for speed measurement. For this external
interrupt int0 of Arduino is used. On Arduino pin2 is available
as int0. The photodetector cathode goes to +5volt and junction
of anode with 10Kohm resistance goes to int0. The other end
of 10Kohm resistance is ground. Here the function of
photodetector and 10Kohm resistance acts as source of
interrupt. For present arrangement whenever something
appears in the path of IR transmitter LED and IR detector,
interrupt is applied to the Controller.
4.4 Motor Unit
Motor is 12volt/1000RPM rated DC motor. Motor is
connected to pins 3 and 6 of L293D.
4.5 Power Supply
External 0-24volt supply required for Motor. The supply is in
actual connected between Pin8 of L293D and Ground.
Arduino board itself receives power from USB cable used for
serial communication.
Table -1: LOGIC TABLE FOR H-BRIDGE IC L293D
EN 1A 2A FUNCTION
HIGH LOW HIGH Turn CW
HIGH HIGH LOW Turn CCW
HIGH LOW LOW Stop
HIGH HIGH HIGH Stop
LOW Ignored Ignored Stop
5. SOFTWARE DESIGN
5.1 Arduino Code
Arduino code is written in C using the open source IDE. The
two important commands used in program are
digitalWrite(pin,HIGH) & analogWrite(pin,value). Writing a
high/low to any pin brings it to +5volt/0volt. Analog write
function can be used in case of PWM pins. The flowchart
corresponding to Arduino code is shown in fig 3.
5.2 PC Application Code
The PC based application is developed in C# using windows
forms. There are important functions to handle like
opening/closing serial port, reading and characterising
incoming serial data, reading button states and taking action
accordingly. The flowchart corresponding to C# code is shown
in fig 4.
Fig -3: Flowchart for Arduino code
IJRET: International Journal of Research in Engineering and Technology eISSN: 2319-1163 | pISSN: 2321-7308
__________________________________________________________________________________________
Volume: 03 Issue: 03 | Mar-2014, Available @ http://www.ijret.org 400
Fig -4: Flowchart for PC application code
6. RESULT
Fig5-6 show the photographs of actual setup in running mode
and fig7. shows PC based User interface. Fig8-9 give more
closer look. In the user interface we can see RPM readings
displayed in text window.
Fig -5: Running Demo
Fig -6: Running Demo (zoom)
Fig -7: Running PC application
Fig -8: Running PC application (zoom)
IJRET: International Journal of Research in Engineering and Technology eISSN: 2319-1163 | pISSN: 2321-7308
__________________________________________________________________________________________
Volume: 03 Issue: 03 | Mar-2014, Available @ http://www.ijret.org 401
Fig -9: Running PC application (zoom)
7. CONCLUSIONS
Traditionally speed control is achieved based on potentiometer
approach. We have tried to bring precision, neatness and user
friendliness to the setup. The actual concept of hardware setup
is recent but provision of PC based user interface has brought
better usability and remote operation. But to mention, the
readings obtained have a variation of +/-10RPM. We hope that
we can improvise on this in future.
REFERENCES
[1]. http://www.en.m.wikipedia.org/wiki/DC_motor
[2]. http://www.playground.arduino.cc/main/DCMotorControl
[3].http://www.users.ece.utexas.edu/~valvano/Datasheets/L29
3d.pdf
[4]. http://www.fab.fritzing.org
BIOGRAPHIES
Prithviraj R. Shetti has received B.E in
Electronics and Telecommunication from Shivaji
University, Kolhapur in May 2006. His research
interests include Embedded system design
related to Electronics and electrical problems.ID:
prsece@gmail.com
Ashok G. Mangave has received M.E in
Electronics from Shivaji University, Kolhapur in
Jan. 2014. His research interests include Control
systems and Instrumentation. ID:
mangave2404@gmail.com

More Related Content

What's hot

Bi directional speed control of dc motor and stepper motor through mat lab us...
Bi directional speed control of dc motor and stepper motor through mat lab us...Bi directional speed control of dc motor and stepper motor through mat lab us...
Bi directional speed control of dc motor and stepper motor through mat lab us...eSAT Journals
 
IRJET- AC Motor Fault Analyser by Characteristic Analysis
IRJET-  	  AC Motor Fault Analyser by Characteristic AnalysisIRJET-  	  AC Motor Fault Analyser by Characteristic Analysis
IRJET- AC Motor Fault Analyser by Characteristic AnalysisIRJET Journal
 
IRJET- Study of Audible Identification Alert System for Rash Driving
IRJET- Study of Audible Identification Alert System for Rash DrivingIRJET- Study of Audible Identification Alert System for Rash Driving
IRJET- Study of Audible Identification Alert System for Rash DrivingIRJET Journal
 
IRJET- Driverless Metro Train
IRJET- Driverless Metro TrainIRJET- Driverless Metro Train
IRJET- Driverless Metro TrainIRJET Journal
 
IRJET- Automatic Vehicle Speed Controller System in Restricted Areas
IRJET- Automatic Vehicle Speed Controller System in Restricted AreasIRJET- Automatic Vehicle Speed Controller System in Restricted Areas
IRJET- Automatic Vehicle Speed Controller System in Restricted AreasIRJET Journal
 
IRJET- Smart Digi Train
IRJET- Smart Digi TrainIRJET- Smart Digi Train
IRJET- Smart Digi TrainIRJET Journal
 
18 digital
18 digital18 digital
18 digitalsm0302
 
Floor cleaning robot report vatsal shah_ec_7th sem
Floor cleaning robot report vatsal shah_ec_7th semFloor cleaning robot report vatsal shah_ec_7th sem
Floor cleaning robot report vatsal shah_ec_7th semVatsal N Shah
 
IRJET- Smart Digi Train
IRJET- Smart Digi TrainIRJET- Smart Digi Train
IRJET- Smart Digi TrainIRJET Journal
 
IRJET- Multiple Load Controller for Industry using ARM Cortex
IRJET-  	  Multiple Load Controller for Industry using ARM CortexIRJET-  	  Multiple Load Controller for Industry using ARM Cortex
IRJET- Multiple Load Controller for Industry using ARM CortexIRJET Journal
 
Joystick Controlled Wheelchair
Joystick Controlled WheelchairJoystick Controlled Wheelchair
Joystick Controlled WheelchairIRJET Journal
 
IRJET- Mechanical Design and Fabrication of Hand Motion Controlled Robotic...
IRJET- 	  Mechanical Design and Fabrication of Hand Motion Controlled Robotic...IRJET- 	  Mechanical Design and Fabrication of Hand Motion Controlled Robotic...
IRJET- Mechanical Design and Fabrication of Hand Motion Controlled Robotic...IRJET Journal
 
IRJET- Industrial Safety Device for Employees in Overhead Bridge Crane us...
IRJET-  	  Industrial Safety Device for Employees in Overhead Bridge Crane us...IRJET-  	  Industrial Safety Device for Employees in Overhead Bridge Crane us...
IRJET- Industrial Safety Device for Employees in Overhead Bridge Crane us...IRJET Journal
 
Intelligent vehicle control based on identification of road signs by solar po...
Intelligent vehicle control based on identification of road signs by solar po...Intelligent vehicle control based on identification of road signs by solar po...
Intelligent vehicle control based on identification of road signs by solar po...eSAT Journals
 
IRJET- Design and Fabrication of Steering System using Servo Motors
IRJET- Design and Fabrication of Steering System using Servo MotorsIRJET- Design and Fabrication of Steering System using Servo Motors
IRJET- Design and Fabrication of Steering System using Servo MotorsIRJET Journal
 
IRJET- Automation on PA Grading Machine for Cable Forming
IRJET- Automation on PA Grading Machine for Cable FormingIRJET- Automation on PA Grading Machine for Cable Forming
IRJET- Automation on PA Grading Machine for Cable FormingIRJET Journal
 
IRJET - Construction of "One Belt and One Road" Intelligent Analysis System
IRJET -  	  Construction of "One Belt and One Road" Intelligent Analysis SystemIRJET -  	  Construction of "One Belt and One Road" Intelligent Analysis System
IRJET - Construction of "One Belt and One Road" Intelligent Analysis SystemIRJET Journal
 
A Novel Idea on Semi-Automated Operation Theatre Assistance for Doctors Based...
A Novel Idea on Semi-Automated Operation Theatre Assistance for Doctors Based...A Novel Idea on Semi-Automated Operation Theatre Assistance for Doctors Based...
A Novel Idea on Semi-Automated Operation Theatre Assistance for Doctors Based...theijes
 
A Flexible Closed Loop PMDC Motor Speed Control System for Precise Positioning
A Flexible Closed Loop PMDC Motor Speed Control System for Precise PositioningA Flexible Closed Loop PMDC Motor Speed Control System for Precise Positioning
A Flexible Closed Loop PMDC Motor Speed Control System for Precise PositioningWaqas Tariq
 

What's hot (20)

Bi directional speed control of dc motor and stepper motor through mat lab us...
Bi directional speed control of dc motor and stepper motor through mat lab us...Bi directional speed control of dc motor and stepper motor through mat lab us...
Bi directional speed control of dc motor and stepper motor through mat lab us...
 
IRJET- AC Motor Fault Analyser by Characteristic Analysis
IRJET-  	  AC Motor Fault Analyser by Characteristic AnalysisIRJET-  	  AC Motor Fault Analyser by Characteristic Analysis
IRJET- AC Motor Fault Analyser by Characteristic Analysis
 
IRJET- Study of Audible Identification Alert System for Rash Driving
IRJET- Study of Audible Identification Alert System for Rash DrivingIRJET- Study of Audible Identification Alert System for Rash Driving
IRJET- Study of Audible Identification Alert System for Rash Driving
 
IRJET- Driverless Metro Train
IRJET- Driverless Metro TrainIRJET- Driverless Metro Train
IRJET- Driverless Metro Train
 
Industrial Monitoring System Using Wireless Sensor Networks
Industrial Monitoring System Using Wireless Sensor NetworksIndustrial Monitoring System Using Wireless Sensor Networks
Industrial Monitoring System Using Wireless Sensor Networks
 
IRJET- Automatic Vehicle Speed Controller System in Restricted Areas
IRJET- Automatic Vehicle Speed Controller System in Restricted AreasIRJET- Automatic Vehicle Speed Controller System in Restricted Areas
IRJET- Automatic Vehicle Speed Controller System in Restricted Areas
 
IRJET- Smart Digi Train
IRJET- Smart Digi TrainIRJET- Smart Digi Train
IRJET- Smart Digi Train
 
18 digital
18 digital18 digital
18 digital
 
Floor cleaning robot report vatsal shah_ec_7th sem
Floor cleaning robot report vatsal shah_ec_7th semFloor cleaning robot report vatsal shah_ec_7th sem
Floor cleaning robot report vatsal shah_ec_7th sem
 
IRJET- Smart Digi Train
IRJET- Smart Digi TrainIRJET- Smart Digi Train
IRJET- Smart Digi Train
 
IRJET- Multiple Load Controller for Industry using ARM Cortex
IRJET-  	  Multiple Load Controller for Industry using ARM CortexIRJET-  	  Multiple Load Controller for Industry using ARM Cortex
IRJET- Multiple Load Controller for Industry using ARM Cortex
 
Joystick Controlled Wheelchair
Joystick Controlled WheelchairJoystick Controlled Wheelchair
Joystick Controlled Wheelchair
 
IRJET- Mechanical Design and Fabrication of Hand Motion Controlled Robotic...
IRJET- 	  Mechanical Design and Fabrication of Hand Motion Controlled Robotic...IRJET- 	  Mechanical Design and Fabrication of Hand Motion Controlled Robotic...
IRJET- Mechanical Design and Fabrication of Hand Motion Controlled Robotic...
 
IRJET- Industrial Safety Device for Employees in Overhead Bridge Crane us...
IRJET-  	  Industrial Safety Device for Employees in Overhead Bridge Crane us...IRJET-  	  Industrial Safety Device for Employees in Overhead Bridge Crane us...
IRJET- Industrial Safety Device for Employees in Overhead Bridge Crane us...
 
Intelligent vehicle control based on identification of road signs by solar po...
Intelligent vehicle control based on identification of road signs by solar po...Intelligent vehicle control based on identification of road signs by solar po...
Intelligent vehicle control based on identification of road signs by solar po...
 
IRJET- Design and Fabrication of Steering System using Servo Motors
IRJET- Design and Fabrication of Steering System using Servo MotorsIRJET- Design and Fabrication of Steering System using Servo Motors
IRJET- Design and Fabrication of Steering System using Servo Motors
 
IRJET- Automation on PA Grading Machine for Cable Forming
IRJET- Automation on PA Grading Machine for Cable FormingIRJET- Automation on PA Grading Machine for Cable Forming
IRJET- Automation on PA Grading Machine for Cable Forming
 
IRJET - Construction of "One Belt and One Road" Intelligent Analysis System
IRJET -  	  Construction of "One Belt and One Road" Intelligent Analysis SystemIRJET -  	  Construction of "One Belt and One Road" Intelligent Analysis System
IRJET - Construction of "One Belt and One Road" Intelligent Analysis System
 
A Novel Idea on Semi-Automated Operation Theatre Assistance for Doctors Based...
A Novel Idea on Semi-Automated Operation Theatre Assistance for Doctors Based...A Novel Idea on Semi-Automated Operation Theatre Assistance for Doctors Based...
A Novel Idea on Semi-Automated Operation Theatre Assistance for Doctors Based...
 
A Flexible Closed Loop PMDC Motor Speed Control System for Precise Positioning
A Flexible Closed Loop PMDC Motor Speed Control System for Precise PositioningA Flexible Closed Loop PMDC Motor Speed Control System for Precise Positioning
A Flexible Closed Loop PMDC Motor Speed Control System for Precise Positioning
 

Viewers also liked

Chapter 6 dc motor speed control
Chapter 6 dc motor speed controlChapter 6 dc motor speed control
Chapter 6 dc motor speed controlHattori Sidek
 
Major project report on MEASUREMENT, PROTECTION, SPEED CONTROL AND GRAPHICAL ...
Major project report on MEASUREMENT, PROTECTION, SPEED CONTROL AND GRAPHICAL ...Major project report on MEASUREMENT, PROTECTION, SPEED CONTROL AND GRAPHICAL ...
Major project report on MEASUREMENT, PROTECTION, SPEED CONTROL AND GRAPHICAL ...Nsaroj kumar
 
TO control the speed of DC Motor Simple Project
TO control the speed of DC Motor Simple ProjectTO control the speed of DC Motor Simple Project
TO control the speed of DC Motor Simple ProjectZunAib Ali
 
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
 
Detection of uncontrolled motion behavior in human crowds
Detection of uncontrolled motion behavior in human crowdsDetection of uncontrolled motion behavior in human crowds
Detection of uncontrolled motion behavior in human crowdseSAT Publishing House
 
Portable wireless traffic light system (pwtls)
Portable wireless traffic light system (pwtls)Portable wireless traffic light system (pwtls)
Portable wireless traffic light system (pwtls)eSAT Publishing House
 
Study of parameters requiried for quanitification of
Study of parameters requiried for quanitification ofStudy of parameters requiried for quanitification of
Study of parameters requiried for quanitification ofeSAT Publishing House
 
Concrete composition analysis cast as a plate solar
Concrete composition analysis cast as a plate solarConcrete composition analysis cast as a plate solar
Concrete composition analysis cast as a plate solareSAT Publishing House
 
The growth of hsr networks around the world
The growth of hsr networks around the worldThe growth of hsr networks around the world
The growth of hsr networks around the worldeSAT Publishing House
 
Directly coupled microstrip array antennas for wideband application
Directly coupled microstrip array antennas for wideband applicationDirectly coupled microstrip array antennas for wideband application
Directly coupled microstrip array antennas for wideband applicationeSAT Publishing House
 
Uw as ns design challenges in transport layer
Uw as ns design challenges in transport layerUw as ns design challenges in transport layer
Uw as ns design challenges in transport layereSAT Publishing House
 
Analysis of circular disc antenna using defective
Analysis of circular disc antenna using defectiveAnalysis of circular disc antenna using defective
Analysis of circular disc antenna using defectiveeSAT Publishing House
 
Eyeblink artefact removal from eeg using independent
Eyeblink artefact removal from eeg using independentEyeblink artefact removal from eeg using independent
Eyeblink artefact removal from eeg using independenteSAT Publishing House
 
Comparative assessment of noise levels in various laboratories and constructi...
Comparative assessment of noise levels in various laboratories and constructi...Comparative assessment of noise levels in various laboratories and constructi...
Comparative assessment of noise levels in various laboratories and constructi...eSAT Publishing House
 
The effect of band engineering of semiconductors on
The effect of band engineering of semiconductors onThe effect of band engineering of semiconductors on
The effect of band engineering of semiconductors oneSAT Publishing House
 
Analysis of dc capacitor voltage balance method for h bridge inverter based p...
Analysis of dc capacitor voltage balance method for h bridge inverter based p...Analysis of dc capacitor voltage balance method for h bridge inverter based p...
Analysis of dc capacitor voltage balance method for h bridge inverter based p...eSAT Publishing House
 
Mobile robot path planning using ant colony optimization
Mobile robot path planning using ant colony optimizationMobile robot path planning using ant colony optimization
Mobile robot path planning using ant colony optimizationeSAT Publishing House
 
A study on influences of lighting on resource usage in
A study on influences of lighting on resource usage inA study on influences of lighting on resource usage in
A study on influences of lighting on resource usage ineSAT Publishing House
 
Appraisal of multilevel car parking facility at kg road cbd area, bengaluru city
Appraisal of multilevel car parking facility at kg road cbd area, bengaluru cityAppraisal of multilevel car parking facility at kg road cbd area, bengaluru city
Appraisal of multilevel car parking facility at kg road cbd area, bengaluru cityeSAT Publishing House
 
Effect of superplasticizers compatibility on the workability, early age stren...
Effect of superplasticizers compatibility on the workability, early age stren...Effect of superplasticizers compatibility on the workability, early age stren...
Effect of superplasticizers compatibility on the workability, early age stren...eSAT Publishing House
 

Viewers also liked (20)

Chapter 6 dc motor speed control
Chapter 6 dc motor speed controlChapter 6 dc motor speed control
Chapter 6 dc motor speed control
 
Major project report on MEASUREMENT, PROTECTION, SPEED CONTROL AND GRAPHICAL ...
Major project report on MEASUREMENT, PROTECTION, SPEED CONTROL AND GRAPHICAL ...Major project report on MEASUREMENT, PROTECTION, SPEED CONTROL AND GRAPHICAL ...
Major project report on MEASUREMENT, PROTECTION, SPEED CONTROL AND GRAPHICAL ...
 
TO control the speed of DC Motor Simple Project
TO control the speed of DC Motor Simple ProjectTO control the speed of DC Motor Simple Project
TO control the speed of DC Motor Simple Project
 
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
 
Detection of uncontrolled motion behavior in human crowds
Detection of uncontrolled motion behavior in human crowdsDetection of uncontrolled motion behavior in human crowds
Detection of uncontrolled motion behavior in human crowds
 
Portable wireless traffic light system (pwtls)
Portable wireless traffic light system (pwtls)Portable wireless traffic light system (pwtls)
Portable wireless traffic light system (pwtls)
 
Study of parameters requiried for quanitification of
Study of parameters requiried for quanitification ofStudy of parameters requiried for quanitification of
Study of parameters requiried for quanitification of
 
Concrete composition analysis cast as a plate solar
Concrete composition analysis cast as a plate solarConcrete composition analysis cast as a plate solar
Concrete composition analysis cast as a plate solar
 
The growth of hsr networks around the world
The growth of hsr networks around the worldThe growth of hsr networks around the world
The growth of hsr networks around the world
 
Directly coupled microstrip array antennas for wideband application
Directly coupled microstrip array antennas for wideband applicationDirectly coupled microstrip array antennas for wideband application
Directly coupled microstrip array antennas for wideband application
 
Uw as ns design challenges in transport layer
Uw as ns design challenges in transport layerUw as ns design challenges in transport layer
Uw as ns design challenges in transport layer
 
Analysis of circular disc antenna using defective
Analysis of circular disc antenna using defectiveAnalysis of circular disc antenna using defective
Analysis of circular disc antenna using defective
 
Eyeblink artefact removal from eeg using independent
Eyeblink artefact removal from eeg using independentEyeblink artefact removal from eeg using independent
Eyeblink artefact removal from eeg using independent
 
Comparative assessment of noise levels in various laboratories and constructi...
Comparative assessment of noise levels in various laboratories and constructi...Comparative assessment of noise levels in various laboratories and constructi...
Comparative assessment of noise levels in various laboratories and constructi...
 
The effect of band engineering of semiconductors on
The effect of band engineering of semiconductors onThe effect of band engineering of semiconductors on
The effect of band engineering of semiconductors on
 
Analysis of dc capacitor voltage balance method for h bridge inverter based p...
Analysis of dc capacitor voltage balance method for h bridge inverter based p...Analysis of dc capacitor voltage balance method for h bridge inverter based p...
Analysis of dc capacitor voltage balance method for h bridge inverter based p...
 
Mobile robot path planning using ant colony optimization
Mobile robot path planning using ant colony optimizationMobile robot path planning using ant colony optimization
Mobile robot path planning using ant colony optimization
 
A study on influences of lighting on resource usage in
A study on influences of lighting on resource usage inA study on influences of lighting on resource usage in
A study on influences of lighting on resource usage in
 
Appraisal of multilevel car parking facility at kg road cbd area, bengaluru city
Appraisal of multilevel car parking facility at kg road cbd area, bengaluru cityAppraisal of multilevel car parking facility at kg road cbd area, bengaluru city
Appraisal of multilevel car parking facility at kg road cbd area, bengaluru city
 
Effect of superplasticizers compatibility on the workability, early age stren...
Effect of superplasticizers compatibility on the workability, early age stren...Effect of superplasticizers compatibility on the workability, early age stren...
Effect of superplasticizers compatibility on the workability, early age stren...
 

Similar to Dc motor speed control with feedback monitor based on c# application

IRJET- Closed Loop Speed Control of DC Motor by using PI Controller
IRJET-  	  Closed Loop Speed Control of DC Motor by using PI ControllerIRJET-  	  Closed Loop Speed Control of DC Motor by using PI Controller
IRJET- Closed Loop Speed Control of DC Motor by using PI ControllerIRJET Journal
 
Design and operation of synchronized robotic arm
Design and operation of synchronized robotic armDesign and operation of synchronized robotic arm
Design and operation of synchronized robotic armeSAT Journals
 
IRJET - Driverless Metro Train to Shuttle between Two Stations
IRJET -  	  Driverless Metro Train to Shuttle between Two StationsIRJET -  	  Driverless Metro Train to Shuttle between Two Stations
IRJET - Driverless Metro Train to Shuttle between Two StationsIRJET Journal
 
IRJET - IoT based Speed Control of DC Motor using PWM Technique
IRJET -  	  IoT based Speed Control of DC Motor using PWM TechniqueIRJET -  	  IoT based Speed Control of DC Motor using PWM Technique
IRJET - IoT based Speed Control of DC Motor using PWM TechniqueIRJET Journal
 
IRJET- Voice Operated Lift Control System using Microcontroller
IRJET- Voice Operated Lift Control System using MicrocontrollerIRJET- Voice Operated Lift Control System using Microcontroller
IRJET- Voice Operated Lift Control System using MicrocontrollerIRJET Journal
 
Master slave autonomous surveillance bot for military applications
Master slave autonomous surveillance bot for military applicationsMaster slave autonomous surveillance bot for military applications
Master slave autonomous surveillance bot for military applicationseSAT Journals
 
Low Cost PLC Alternative Solution with SCADA Interface Using Microcontroller
Low Cost PLC Alternative Solution with SCADA Interface Using MicrocontrollerLow Cost PLC Alternative Solution with SCADA Interface Using Microcontroller
Low Cost PLC Alternative Solution with SCADA Interface Using MicrocontrollerIRJET Journal
 
Voice enabled speed control of ac motor
Voice enabled speed control of ac motorVoice enabled speed control of ac motor
Voice enabled speed control of ac motoreSAT Publishing House
 
Voice enabled speed control of ac motor
Voice enabled speed control of ac motorVoice enabled speed control of ac motor
Voice enabled speed control of ac motoreSAT Journals
 
IRJET - Hybrid Model of Smart Energy Consumption Monitoring System
IRJET - Hybrid Model of Smart Energy Consumption Monitoring SystemIRJET - Hybrid Model of Smart Energy Consumption Monitoring System
IRJET - Hybrid Model of Smart Energy Consumption Monitoring SystemIRJET Journal
 
Speed control of single phase induction motor by android bluetooth
Speed control of single phase induction motor by android bluetoothSpeed control of single phase induction motor by android bluetooth
Speed control of single phase induction motor by android bluetoothIRJET Journal
 
Pick and Place Robotic Arm using Android Device
Pick and Place Robotic Arm using Android DevicePick and Place Robotic Arm using Android Device
Pick and Place Robotic Arm using Android DeviceIRJET Journal
 
IRJET- Autonomous Floor Cleaning BOT
IRJET- 	  Autonomous Floor Cleaning BOTIRJET- 	  Autonomous Floor Cleaning BOT
IRJET- Autonomous Floor Cleaning BOTIRJET Journal
 
IRJET- Line following and Obstacle avoiding Bluetooth Controlled Surveillance...
IRJET- Line following and Obstacle avoiding Bluetooth Controlled Surveillance...IRJET- Line following and Obstacle avoiding Bluetooth Controlled Surveillance...
IRJET- Line following and Obstacle avoiding Bluetooth Controlled Surveillance...IRJET Journal
 
The interconnecting mechanism for monitoring regular domestic condition
The interconnecting mechanism for monitoring regular domestic conditionThe interconnecting mechanism for monitoring regular domestic condition
The interconnecting mechanism for monitoring regular domestic conditioneSAT Publishing House
 
Study and implementation of dc drive using pic16 f877a microcontroller
Study and implementation of dc drive using pic16 f877a microcontrollerStudy and implementation of dc drive using pic16 f877a microcontroller
Study and implementation of dc drive using pic16 f877a microcontrollereSAT Publishing House
 
IRJET - Smartphone and it uses to Control Agricultural Robot
IRJET -  	  Smartphone and it uses to Control Agricultural RobotIRJET -  	  Smartphone and it uses to Control Agricultural Robot
IRJET - Smartphone and it uses to Control Agricultural RobotIRJET Journal
 
Performance analysis of gesture controlled robotic car
Performance analysis of gesture controlled robotic carPerformance analysis of gesture controlled robotic car
Performance analysis of gesture controlled robotic careSAT Journals
 
3 Axis Drawing Machine
3 Axis Drawing Machine3 Axis Drawing Machine
3 Axis Drawing MachineIRJET Journal
 
IRJET- Low Cost Industrial Paint Bot
IRJET-  	  Low Cost Industrial Paint BotIRJET-  	  Low Cost Industrial Paint Bot
IRJET- Low Cost Industrial Paint BotIRJET Journal
 

Similar to Dc motor speed control with feedback monitor based on c# application (20)

IRJET- Closed Loop Speed Control of DC Motor by using PI Controller
IRJET-  	  Closed Loop Speed Control of DC Motor by using PI ControllerIRJET-  	  Closed Loop Speed Control of DC Motor by using PI Controller
IRJET- Closed Loop Speed Control of DC Motor by using PI Controller
 
Design and operation of synchronized robotic arm
Design and operation of synchronized robotic armDesign and operation of synchronized robotic arm
Design and operation of synchronized robotic arm
 
IRJET - Driverless Metro Train to Shuttle between Two Stations
IRJET -  	  Driverless Metro Train to Shuttle between Two StationsIRJET -  	  Driverless Metro Train to Shuttle between Two Stations
IRJET - Driverless Metro Train to Shuttle between Two Stations
 
IRJET - IoT based Speed Control of DC Motor using PWM Technique
IRJET -  	  IoT based Speed Control of DC Motor using PWM TechniqueIRJET -  	  IoT based Speed Control of DC Motor using PWM Technique
IRJET - IoT based Speed Control of DC Motor using PWM Technique
 
IRJET- Voice Operated Lift Control System using Microcontroller
IRJET- Voice Operated Lift Control System using MicrocontrollerIRJET- Voice Operated Lift Control System using Microcontroller
IRJET- Voice Operated Lift Control System using Microcontroller
 
Master slave autonomous surveillance bot for military applications
Master slave autonomous surveillance bot for military applicationsMaster slave autonomous surveillance bot for military applications
Master slave autonomous surveillance bot for military applications
 
Low Cost PLC Alternative Solution with SCADA Interface Using Microcontroller
Low Cost PLC Alternative Solution with SCADA Interface Using MicrocontrollerLow Cost PLC Alternative Solution with SCADA Interface Using Microcontroller
Low Cost PLC Alternative Solution with SCADA Interface Using Microcontroller
 
Voice enabled speed control of ac motor
Voice enabled speed control of ac motorVoice enabled speed control of ac motor
Voice enabled speed control of ac motor
 
Voice enabled speed control of ac motor
Voice enabled speed control of ac motorVoice enabled speed control of ac motor
Voice enabled speed control of ac motor
 
IRJET - Hybrid Model of Smart Energy Consumption Monitoring System
IRJET - Hybrid Model of Smart Energy Consumption Monitoring SystemIRJET - Hybrid Model of Smart Energy Consumption Monitoring System
IRJET - Hybrid Model of Smart Energy Consumption Monitoring System
 
Speed control of single phase induction motor by android bluetooth
Speed control of single phase induction motor by android bluetoothSpeed control of single phase induction motor by android bluetooth
Speed control of single phase induction motor by android bluetooth
 
Pick and Place Robotic Arm using Android Device
Pick and Place Robotic Arm using Android DevicePick and Place Robotic Arm using Android Device
Pick and Place Robotic Arm using Android Device
 
IRJET- Autonomous Floor Cleaning BOT
IRJET- 	  Autonomous Floor Cleaning BOTIRJET- 	  Autonomous Floor Cleaning BOT
IRJET- Autonomous Floor Cleaning BOT
 
IRJET- Line following and Obstacle avoiding Bluetooth Controlled Surveillance...
IRJET- Line following and Obstacle avoiding Bluetooth Controlled Surveillance...IRJET- Line following and Obstacle avoiding Bluetooth Controlled Surveillance...
IRJET- Line following and Obstacle avoiding Bluetooth Controlled Surveillance...
 
The interconnecting mechanism for monitoring regular domestic condition
The interconnecting mechanism for monitoring regular domestic conditionThe interconnecting mechanism for monitoring regular domestic condition
The interconnecting mechanism for monitoring regular domestic condition
 
Study and implementation of dc drive using pic16 f877a microcontroller
Study and implementation of dc drive using pic16 f877a microcontrollerStudy and implementation of dc drive using pic16 f877a microcontroller
Study and implementation of dc drive using pic16 f877a microcontroller
 
IRJET - Smartphone and it uses to Control Agricultural Robot
IRJET -  	  Smartphone and it uses to Control Agricultural RobotIRJET -  	  Smartphone and it uses to Control Agricultural Robot
IRJET - Smartphone and it uses to Control Agricultural Robot
 
Performance analysis of gesture controlled robotic car
Performance analysis of gesture controlled robotic carPerformance analysis of gesture controlled robotic car
Performance analysis of gesture controlled robotic car
 
3 Axis Drawing Machine
3 Axis Drawing Machine3 Axis Drawing Machine
3 Axis Drawing Machine
 
IRJET- Low Cost Industrial Paint Bot
IRJET-  	  Low Cost Industrial Paint BotIRJET-  	  Low Cost Industrial Paint Bot
IRJET- Low Cost Industrial Paint Bot
 

More from eSAT Publishing House

Likely impacts of hudhud on the environment of visakhapatnam
Likely impacts of hudhud on the environment of visakhapatnamLikely impacts of hudhud on the environment of visakhapatnam
Likely impacts of hudhud on the environment of visakhapatnameSAT Publishing House
 
Impact of flood disaster in a drought prone area – case study of alampur vill...
Impact of flood disaster in a drought prone area – case study of alampur vill...Impact of flood disaster in a drought prone area – case study of alampur vill...
Impact of flood disaster in a drought prone area – case study of alampur vill...eSAT Publishing House
 
Hudhud cyclone – a severe disaster in visakhapatnam
Hudhud cyclone – a severe disaster in visakhapatnamHudhud cyclone – a severe disaster in visakhapatnam
Hudhud cyclone – a severe disaster in visakhapatnameSAT Publishing House
 
Groundwater investigation using geophysical methods a case study of pydibhim...
Groundwater investigation using geophysical methods  a case study of pydibhim...Groundwater investigation using geophysical methods  a case study of pydibhim...
Groundwater investigation using geophysical methods a case study of pydibhim...eSAT Publishing House
 
Flood related disasters concerned to urban flooding in bangalore, india
Flood related disasters concerned to urban flooding in bangalore, indiaFlood related disasters concerned to urban flooding in bangalore, india
Flood related disasters concerned to urban flooding in bangalore, indiaeSAT Publishing House
 
Enhancing post disaster recovery by optimal infrastructure capacity building
Enhancing post disaster recovery by optimal infrastructure capacity buildingEnhancing post disaster recovery by optimal infrastructure capacity building
Enhancing post disaster recovery by optimal infrastructure capacity buildingeSAT Publishing House
 
Effect of lintel and lintel band on the global performance of reinforced conc...
Effect of lintel and lintel band on the global performance of reinforced conc...Effect of lintel and lintel band on the global performance of reinforced conc...
Effect of lintel and lintel band on the global performance of reinforced conc...eSAT Publishing House
 
Wind damage to trees in the gitam university campus at visakhapatnam by cyclo...
Wind damage to trees in the gitam university campus at visakhapatnam by cyclo...Wind damage to trees in the gitam university campus at visakhapatnam by cyclo...
Wind damage to trees in the gitam university campus at visakhapatnam by cyclo...eSAT Publishing House
 
Wind damage to buildings, infrastrucuture and landscape elements along the be...
Wind damage to buildings, infrastrucuture and landscape elements along the be...Wind damage to buildings, infrastrucuture and landscape elements along the be...
Wind damage to buildings, infrastrucuture and landscape elements along the be...eSAT Publishing House
 
Shear strength of rc deep beam panels – a review
Shear strength of rc deep beam panels – a reviewShear strength of rc deep beam panels – a review
Shear strength of rc deep beam panels – a revieweSAT Publishing House
 
Role of voluntary teams of professional engineers in dissater management – ex...
Role of voluntary teams of professional engineers in dissater management – ex...Role of voluntary teams of professional engineers in dissater management – ex...
Role of voluntary teams of professional engineers in dissater management – ex...eSAT Publishing House
 
Risk analysis and environmental hazard management
Risk analysis and environmental hazard managementRisk analysis and environmental hazard management
Risk analysis and environmental hazard managementeSAT Publishing House
 
Review study on performance of seismically tested repaired shear walls
Review study on performance of seismically tested repaired shear wallsReview study on performance of seismically tested repaired shear walls
Review study on performance of seismically tested repaired shear wallseSAT Publishing House
 
Monitoring and assessment of air quality with reference to dust particles (pm...
Monitoring and assessment of air quality with reference to dust particles (pm...Monitoring and assessment of air quality with reference to dust particles (pm...
Monitoring and assessment of air quality with reference to dust particles (pm...eSAT Publishing House
 
Low cost wireless sensor networks and smartphone applications for disaster ma...
Low cost wireless sensor networks and smartphone applications for disaster ma...Low cost wireless sensor networks and smartphone applications for disaster ma...
Low cost wireless sensor networks and smartphone applications for disaster ma...eSAT Publishing House
 
Coastal zones – seismic vulnerability an analysis from east coast of india
Coastal zones – seismic vulnerability an analysis from east coast of indiaCoastal zones – seismic vulnerability an analysis from east coast of india
Coastal zones – seismic vulnerability an analysis from east coast of indiaeSAT Publishing House
 
Can fracture mechanics predict damage due disaster of structures
Can fracture mechanics predict damage due disaster of structuresCan fracture mechanics predict damage due disaster of structures
Can fracture mechanics predict damage due disaster of structureseSAT Publishing House
 
Assessment of seismic susceptibility of rc buildings
Assessment of seismic susceptibility of rc buildingsAssessment of seismic susceptibility of rc buildings
Assessment of seismic susceptibility of rc buildingseSAT Publishing House
 
A geophysical insight of earthquake occurred on 21 st may 2014 off paradip, b...
A geophysical insight of earthquake occurred on 21 st may 2014 off paradip, b...A geophysical insight of earthquake occurred on 21 st may 2014 off paradip, b...
A geophysical insight of earthquake occurred on 21 st may 2014 off paradip, b...eSAT Publishing House
 
Effect of hudhud cyclone on the development of visakhapatnam as smart and gre...
Effect of hudhud cyclone on the development of visakhapatnam as smart and gre...Effect of hudhud cyclone on the development of visakhapatnam as smart and gre...
Effect of hudhud cyclone on the development of visakhapatnam as smart and gre...eSAT Publishing House
 

More from eSAT Publishing House (20)

Likely impacts of hudhud on the environment of visakhapatnam
Likely impacts of hudhud on the environment of visakhapatnamLikely impacts of hudhud on the environment of visakhapatnam
Likely impacts of hudhud on the environment of visakhapatnam
 
Impact of flood disaster in a drought prone area – case study of alampur vill...
Impact of flood disaster in a drought prone area – case study of alampur vill...Impact of flood disaster in a drought prone area – case study of alampur vill...
Impact of flood disaster in a drought prone area – case study of alampur vill...
 
Hudhud cyclone – a severe disaster in visakhapatnam
Hudhud cyclone – a severe disaster in visakhapatnamHudhud cyclone – a severe disaster in visakhapatnam
Hudhud cyclone – a severe disaster in visakhapatnam
 
Groundwater investigation using geophysical methods a case study of pydibhim...
Groundwater investigation using geophysical methods  a case study of pydibhim...Groundwater investigation using geophysical methods  a case study of pydibhim...
Groundwater investigation using geophysical methods a case study of pydibhim...
 
Flood related disasters concerned to urban flooding in bangalore, india
Flood related disasters concerned to urban flooding in bangalore, indiaFlood related disasters concerned to urban flooding in bangalore, india
Flood related disasters concerned to urban flooding in bangalore, india
 
Enhancing post disaster recovery by optimal infrastructure capacity building
Enhancing post disaster recovery by optimal infrastructure capacity buildingEnhancing post disaster recovery by optimal infrastructure capacity building
Enhancing post disaster recovery by optimal infrastructure capacity building
 
Effect of lintel and lintel band on the global performance of reinforced conc...
Effect of lintel and lintel band on the global performance of reinforced conc...Effect of lintel and lintel band on the global performance of reinforced conc...
Effect of lintel and lintel band on the global performance of reinforced conc...
 
Wind damage to trees in the gitam university campus at visakhapatnam by cyclo...
Wind damage to trees in the gitam university campus at visakhapatnam by cyclo...Wind damage to trees in the gitam university campus at visakhapatnam by cyclo...
Wind damage to trees in the gitam university campus at visakhapatnam by cyclo...
 
Wind damage to buildings, infrastrucuture and landscape elements along the be...
Wind damage to buildings, infrastrucuture and landscape elements along the be...Wind damage to buildings, infrastrucuture and landscape elements along the be...
Wind damage to buildings, infrastrucuture and landscape elements along the be...
 
Shear strength of rc deep beam panels – a review
Shear strength of rc deep beam panels – a reviewShear strength of rc deep beam panels – a review
Shear strength of rc deep beam panels – a review
 
Role of voluntary teams of professional engineers in dissater management – ex...
Role of voluntary teams of professional engineers in dissater management – ex...Role of voluntary teams of professional engineers in dissater management – ex...
Role of voluntary teams of professional engineers in dissater management – ex...
 
Risk analysis and environmental hazard management
Risk analysis and environmental hazard managementRisk analysis and environmental hazard management
Risk analysis and environmental hazard management
 
Review study on performance of seismically tested repaired shear walls
Review study on performance of seismically tested repaired shear wallsReview study on performance of seismically tested repaired shear walls
Review study on performance of seismically tested repaired shear walls
 
Monitoring and assessment of air quality with reference to dust particles (pm...
Monitoring and assessment of air quality with reference to dust particles (pm...Monitoring and assessment of air quality with reference to dust particles (pm...
Monitoring and assessment of air quality with reference to dust particles (pm...
 
Low cost wireless sensor networks and smartphone applications for disaster ma...
Low cost wireless sensor networks and smartphone applications for disaster ma...Low cost wireless sensor networks and smartphone applications for disaster ma...
Low cost wireless sensor networks and smartphone applications for disaster ma...
 
Coastal zones – seismic vulnerability an analysis from east coast of india
Coastal zones – seismic vulnerability an analysis from east coast of indiaCoastal zones – seismic vulnerability an analysis from east coast of india
Coastal zones – seismic vulnerability an analysis from east coast of india
 
Can fracture mechanics predict damage due disaster of structures
Can fracture mechanics predict damage due disaster of structuresCan fracture mechanics predict damage due disaster of structures
Can fracture mechanics predict damage due disaster of structures
 
Assessment of seismic susceptibility of rc buildings
Assessment of seismic susceptibility of rc buildingsAssessment of seismic susceptibility of rc buildings
Assessment of seismic susceptibility of rc buildings
 
A geophysical insight of earthquake occurred on 21 st may 2014 off paradip, b...
A geophysical insight of earthquake occurred on 21 st may 2014 off paradip, b...A geophysical insight of earthquake occurred on 21 st may 2014 off paradip, b...
A geophysical insight of earthquake occurred on 21 st may 2014 off paradip, b...
 
Effect of hudhud cyclone on the development of visakhapatnam as smart and gre...
Effect of hudhud cyclone on the development of visakhapatnam as smart and gre...Effect of hudhud cyclone on the development of visakhapatnam as smart and gre...
Effect of hudhud cyclone on the development of visakhapatnam as smart and gre...
 

Recently uploaded

APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICS
APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICSAPPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICS
APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICSKurinjimalarL3
 
Artificial-Intelligence-in-Electronics (K).pptx
Artificial-Intelligence-in-Electronics (K).pptxArtificial-Intelligence-in-Electronics (K).pptx
Artificial-Intelligence-in-Electronics (K).pptxbritheesh05
 
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
 
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
 
Application of Residue Theorem to evaluate real integrations.pptx
Application of Residue Theorem to evaluate real integrations.pptxApplication of Residue Theorem to evaluate real integrations.pptx
Application of Residue Theorem to evaluate real integrations.pptx959SahilShah
 
Introduction to Microprocesso programming and interfacing.pptx
Introduction to Microprocesso programming and interfacing.pptxIntroduction to Microprocesso programming and interfacing.pptx
Introduction to Microprocesso programming and interfacing.pptxvipinkmenon1
 
Introduction-To-Agricultural-Surveillance-Rover.pptx
Introduction-To-Agricultural-Surveillance-Rover.pptxIntroduction-To-Agricultural-Surveillance-Rover.pptx
Introduction-To-Agricultural-Surveillance-Rover.pptxk795866
 
HARMONY IN THE HUMAN BEING - Unit-II UHV-2
HARMONY IN THE HUMAN BEING - Unit-II UHV-2HARMONY IN THE HUMAN BEING - Unit-II UHV-2
HARMONY IN THE HUMAN BEING - Unit-II UHV-2RajaP95
 
VICTOR MAESTRE RAMIREZ - Planetary Defender on NASA's Double Asteroid Redirec...
VICTOR MAESTRE RAMIREZ - Planetary Defender on NASA's Double Asteroid Redirec...VICTOR MAESTRE RAMIREZ - Planetary Defender on NASA's Double Asteroid Redirec...
VICTOR MAESTRE RAMIREZ - Planetary Defender on NASA's Double Asteroid Redirec...VICTOR MAESTRE RAMIREZ
 
Biology for Computer Engineers Course Handout.pptx
Biology for Computer Engineers Course Handout.pptxBiology for Computer Engineers Course Handout.pptx
Biology for Computer Engineers Course Handout.pptxDeepakSakkari2
 
complete construction, environmental and economics information of biomass com...
complete construction, environmental and economics information of biomass com...complete construction, environmental and economics information of biomass com...
complete construction, environmental and economics information of biomass com...asadnawaz62
 
Heart Disease Prediction using machine learning.pptx
Heart Disease Prediction using machine learning.pptxHeart Disease Prediction using machine learning.pptx
Heart Disease Prediction using machine learning.pptxPoojaBan
 
Microscopic Analysis of Ceramic Materials.pptx
Microscopic Analysis of Ceramic Materials.pptxMicroscopic Analysis of Ceramic Materials.pptx
Microscopic Analysis of Ceramic Materials.pptxpurnimasatapathy1234
 
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
 
Past, Present and Future of Generative AI
Past, Present and Future of Generative AIPast, Present and Future of Generative AI
Past, Present and Future of Generative AIabhishek36461
 
Study on Air-Water & Water-Water Heat Exchange in a Finned Tube Exchanger
Study on Air-Water & Water-Water Heat Exchange in a Finned Tube ExchangerStudy on Air-Water & Water-Water Heat Exchange in a Finned Tube Exchanger
Study on Air-Water & Water-Water Heat Exchange in a Finned Tube ExchangerAnamika Sarkar
 
OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...
OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...
OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...Soham Mondal
 

Recently uploaded (20)

APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICS
APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICSAPPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICS
APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICS
 
Artificial-Intelligence-in-Electronics (K).pptx
Artificial-Intelligence-in-Electronics (K).pptxArtificial-Intelligence-in-Electronics (K).pptx
Artificial-Intelligence-in-Electronics (K).pptx
 
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
 
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 )
 
Application of Residue Theorem to evaluate real integrations.pptx
Application of Residue Theorem to evaluate real integrations.pptxApplication of Residue Theorem to evaluate real integrations.pptx
Application of Residue Theorem to evaluate real integrations.pptx
 
Introduction to Microprocesso programming and interfacing.pptx
Introduction to Microprocesso programming and interfacing.pptxIntroduction to Microprocesso programming and interfacing.pptx
Introduction to Microprocesso programming and interfacing.pptx
 
Introduction-To-Agricultural-Surveillance-Rover.pptx
Introduction-To-Agricultural-Surveillance-Rover.pptxIntroduction-To-Agricultural-Surveillance-Rover.pptx
Introduction-To-Agricultural-Surveillance-Rover.pptx
 
HARMONY IN THE HUMAN BEING - Unit-II UHV-2
HARMONY IN THE HUMAN BEING - Unit-II UHV-2HARMONY IN THE HUMAN BEING - Unit-II UHV-2
HARMONY IN THE HUMAN BEING - Unit-II UHV-2
 
young call girls in Green Park🔝 9953056974 🔝 escort Service
young call girls in Green Park🔝 9953056974 🔝 escort Serviceyoung call girls in Green Park🔝 9953056974 🔝 escort Service
young call girls in Green Park🔝 9953056974 🔝 escort Service
 
VICTOR MAESTRE RAMIREZ - Planetary Defender on NASA's Double Asteroid Redirec...
VICTOR MAESTRE RAMIREZ - Planetary Defender on NASA's Double Asteroid Redirec...VICTOR MAESTRE RAMIREZ - Planetary Defender on NASA's Double Asteroid Redirec...
VICTOR MAESTRE RAMIREZ - Planetary Defender on NASA's Double Asteroid Redirec...
 
Biology for Computer Engineers Course Handout.pptx
Biology for Computer Engineers Course Handout.pptxBiology for Computer Engineers Course Handout.pptx
Biology for Computer Engineers Course Handout.pptx
 
complete construction, environmental and economics information of biomass com...
complete construction, environmental and economics information of biomass com...complete construction, environmental and economics information of biomass com...
complete construction, environmental and economics information of biomass com...
 
Heart Disease Prediction using machine learning.pptx
Heart Disease Prediction using machine learning.pptxHeart Disease Prediction using machine learning.pptx
Heart Disease Prediction using machine learning.pptx
 
Microscopic Analysis of Ceramic Materials.pptx
Microscopic Analysis of Ceramic Materials.pptxMicroscopic Analysis of Ceramic Materials.pptx
Microscopic Analysis of Ceramic Materials.pptx
 
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
 
Past, Present and Future of Generative AI
Past, Present and Future of Generative AIPast, Present and Future of Generative AI
Past, Present and Future of Generative AI
 
Study on Air-Water & Water-Water Heat Exchange in a Finned Tube Exchanger
Study on Air-Water & Water-Water Heat Exchange in a Finned Tube ExchangerStudy on Air-Water & Water-Water Heat Exchange in a Finned Tube Exchanger
Study on Air-Water & Water-Water Heat Exchange in a Finned Tube Exchanger
 
★ 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
 
Design and analysis of solar grass cutter.pdf
Design and analysis of solar grass cutter.pdfDesign and analysis of solar grass cutter.pdf
Design and analysis of solar grass cutter.pdf
 
OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...
OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...
OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...
 

Dc motor speed control with feedback monitor based on c# application

  • 1. IJRET: International Journal of Research in Engineering and Technology eISSN: 2319-1163 | pISSN: 2321-7308 __________________________________________________________________________________________ Volume: 03 Issue: 03 | Mar-2014, Available @ http://www.ijret.org 398 DC MOTOR SPEED CONTROL WITH FEEDBACK MONITOR BASED ON C# APPLICATION Prithviraj R. Shetti1 , Ashok G. Mangave2 1 lecturer, E&TC Engg, Ashokrao Mane Polytechnic, Kolhapur, Maharashtra, India 2 lecturer, E&TC Engg, Ashokrao Mane Polytechnic, Kolhapur, Maharashtra, India Abstract Precise, cheap control and monitoring the speed of DC motor is ever hot area of work. In the present paper we have attempted to implement speed control and feedback monitoring for a 12 Volt/1000 RPM rated motor. Speed control is done with help of PWM pins on Arduino/AVR board and H-bridge IC L293D. Feedback speed monitoring is based on IR pair based interrupt monitoring. Hence Sensing and calculation part of process is handled by Arduino/AVR board. All of this is implemented with help of PC based user interface developed in C#. In a typical user interface speed control is achieved with help of trackBar and speed monitoring with help of Text window, was we get direct readout of current speed in RPM. Keywords: Arduino/AVR board, PWM, DC motor, IR based speed monitoring using interrupt, C# etc… ----------------------------------------------------------------------***------------------------------------------------------------------------ 1. INTRODUCTION DC motors are mainstay of electric traction drives on both electric and diesel-electric locomotives, street-cars/trams and diesel electric drilling rigs for many years. The introduction of DC motor and an electric grid system to run the machinery started in 1870’s and cause second industrial revolution. Today DC motors are still found in toys and disk drives, or in large sizes to operate steel rolling mills and paper machines.[1] Speed Control of DC motor is a area we are always interested in. For the reason that the solution has to precise and more importantly cheap. Interested sectors include small/heavy industry and research laboratory. Here it is to be noted that speed control and speed regulation are different terms. For present project we demonstrate speed control. However since this application is PC based wherein we monitor current speed, it can be successfully modified for speed regulation tasks. With the help of present system user can control speed of DC motor with help of a friendly user interface. User can select direction of rotation viz. Clockwise/Anticlockwise at click of a button during any time of operation. He can select speed of rotation with help of trackBar. Stop motor with button click. And also monitor current speed in text window. The development of such a system was assisted and made easy going by open source Arduino/AVR board which has ready to use PWM pins and also to mention the CMOS H-bridge IC L293D motor driver IC. It is possible to control direction and speed both with help of this IC. 2. RELATED WORK Obviously the idea of DC motor speed control is not new. Particularly speaking, for the kind of motor we use in our project. We can find numerous authentic websites demonstrating speed control with help of Arduino[2] and L293D[3] which is a motor driver IC. In most cases potentiometer is used to demonstrate speed control using PWM capabilities of Arduino. 3. PROPOSED SYSTEM Fig 1 shows the block level representation of system. IR pair is used monitor the speed of motor. Very cheaply available unmatched pair is used to have test results in bad conditions. The H-bridge motor driver IC L293D requires a +5volt for operation and a separate 0-24volt external supply for motor. It is used to change speed and direction of motor. The PC based application has trackBar for speed control, Buttons to open/close serial port, change direction of rotation, stop motor and a text window for monitoring speed. Motor is 12volt/1000 RPM rated motor. Fig -1: Proposed system
  • 2. IJRET: International Journal of Research in Engineering and Technology eISSN: 2319-1163 | pISSN: 2321-7308 __________________________________________________________________________________________ Volume: 03 Issue: 03 | Mar-2014, Available @ http://www.ijret.org 399 4. HARDWARE DESIGN 4.1 Arduino/AVR Board Either a standalone Arduino board or minimal Arduino configuration works fine. We used standard Arduino available as Freeduino board in India. Fig 2 shows sketch of circuit setup developed using fritzing[4]. Fig -2: Circuit arrangement in fritzing 4.2 Motor Driver Unit Motor driver unit has IC L293D. The pin connections can be found in datasheet[3]. logic for changing direction of motor and controlling motion in Table 1. Table 1 indication the way pins must be configured for changing direction of rotation. Pins 2 and 7 of L293D are connected to Arduino pins4 and 5 respectively. These pins are used to control direction of rotation. Pin1 of L293D connected to PWM pin3 of Arduino. This pin is used to control speed of rotation. Values written in the range of 0-5 volt on this pin change the speed of motor from 0-max rated. 4.3 IR Pair IR pair is used for speed measurement. For this external interrupt int0 of Arduino is used. On Arduino pin2 is available as int0. The photodetector cathode goes to +5volt and junction of anode with 10Kohm resistance goes to int0. The other end of 10Kohm resistance is ground. Here the function of photodetector and 10Kohm resistance acts as source of interrupt. For present arrangement whenever something appears in the path of IR transmitter LED and IR detector, interrupt is applied to the Controller. 4.4 Motor Unit Motor is 12volt/1000RPM rated DC motor. Motor is connected to pins 3 and 6 of L293D. 4.5 Power Supply External 0-24volt supply required for Motor. The supply is in actual connected between Pin8 of L293D and Ground. Arduino board itself receives power from USB cable used for serial communication. Table -1: LOGIC TABLE FOR H-BRIDGE IC L293D EN 1A 2A FUNCTION HIGH LOW HIGH Turn CW HIGH HIGH LOW Turn CCW HIGH LOW LOW Stop HIGH HIGH HIGH Stop LOW Ignored Ignored Stop 5. SOFTWARE DESIGN 5.1 Arduino Code Arduino code is written in C using the open source IDE. The two important commands used in program are digitalWrite(pin,HIGH) & analogWrite(pin,value). Writing a high/low to any pin brings it to +5volt/0volt. Analog write function can be used in case of PWM pins. The flowchart corresponding to Arduino code is shown in fig 3. 5.2 PC Application Code The PC based application is developed in C# using windows forms. There are important functions to handle like opening/closing serial port, reading and characterising incoming serial data, reading button states and taking action accordingly. The flowchart corresponding to C# code is shown in fig 4. Fig -3: Flowchart for Arduino code
  • 3. IJRET: International Journal of Research in Engineering and Technology eISSN: 2319-1163 | pISSN: 2321-7308 __________________________________________________________________________________________ Volume: 03 Issue: 03 | Mar-2014, Available @ http://www.ijret.org 400 Fig -4: Flowchart for PC application code 6. RESULT Fig5-6 show the photographs of actual setup in running mode and fig7. shows PC based User interface. Fig8-9 give more closer look. In the user interface we can see RPM readings displayed in text window. Fig -5: Running Demo Fig -6: Running Demo (zoom) Fig -7: Running PC application Fig -8: Running PC application (zoom)
  • 4. IJRET: International Journal of Research in Engineering and Technology eISSN: 2319-1163 | pISSN: 2321-7308 __________________________________________________________________________________________ Volume: 03 Issue: 03 | Mar-2014, Available @ http://www.ijret.org 401 Fig -9: Running PC application (zoom) 7. CONCLUSIONS Traditionally speed control is achieved based on potentiometer approach. We have tried to bring precision, neatness and user friendliness to the setup. The actual concept of hardware setup is recent but provision of PC based user interface has brought better usability and remote operation. But to mention, the readings obtained have a variation of +/-10RPM. We hope that we can improvise on this in future. REFERENCES [1]. http://www.en.m.wikipedia.org/wiki/DC_motor [2]. http://www.playground.arduino.cc/main/DCMotorControl [3].http://www.users.ece.utexas.edu/~valvano/Datasheets/L29 3d.pdf [4]. http://www.fab.fritzing.org BIOGRAPHIES Prithviraj R. Shetti has received B.E in Electronics and Telecommunication from Shivaji University, Kolhapur in May 2006. His research interests include Embedded system design related to Electronics and electrical problems.ID: prsece@gmail.com Ashok G. Mangave has received M.E in Electronics from Shivaji University, Kolhapur in Jan. 2014. His research interests include Control systems and Instrumentation. ID: mangave2404@gmail.com