Four Quadrant Converter Operations for a DC Motor from the Personal Computer

Size: px
Start display at page:

Download "Four Quadrant Converter Operations for a DC Motor from the Personal Computer"

Transcription

1 Four Quadrant Converter Operations for a DC Motor from the Personal Computer T Maity, Non-members A Ghosh, Non-members S K Bhunia, Non-members In this paper a software program is developed through which all four quadrant chopper operations are achieved for a dc motor via a personal computer (PC). The method described is an integrated, automated and efficient control, where all the operations are possible interactively. The software program developed here in assembly language in the C environment to generate the controllable switching signals for precise operations. These signals are suitable for the triggering operation of four power electronic switches of the chopper. The program was compiled and run, the switching signals were interfaced, and the chopper drive was run successfully. The minimum hardware requirement for the control circuit leads it to a more reliable system. A user friendly control room method has been adopted using the Keyboard for smooth speed control of the motor and also for the forward-reverse, regenerative braking and emergency stop operations. Keywords : Four quadrant operations; Chopper; Speed control; IGBT INTRODUCTION In today's industry scenario, the process automation is taking an important part to bring out the optimum output as well as to achieve zero downtime of machine. Therefore, real life foolproof system is in demand and the computer is playing a vital role in industrial automation. Today, the continuous development of microprocessor leads to the computing system faster, reliable, versatile, and powerful. The 80486D and Pentium contain a numeric coprocessor that allows them to perform complex calculations using floating-point arithmetic 1. Personal computer is also making its place at the industrial application. A microprocessor with both parallel and serial interfacing has a wide variety of applications. The speed control of motor is a very special application. The basic output interface receives data from the microprocessor and must usually hold it for some external device. It's latches are often built into the I/O device. The latches store the number output by the microprocessor from the data bus. Latches are needed to hold the data because when the microprocessor executes an OUT instruction, the data are not present for sufficient amount of time for visualization. The data are held until the next OUT instruction executes. The chopper fed dc motor is one application where both the speed control operation as well T Maity is with the Department of Electrical Engineering, College of Engineering and Management, Kolaghat, A Ghosh is with Squarem Electra Private Limited while S K Bhunia is with Tata Consultancy Services, Kolkata This paper (modified) was received on June 16, Written discussion on this paper will be entertained upto March 31, as the regenerative braking action can be performed in most efficiently. The speed control of dc motor over a wide range is possible with rectifiers as well as with dc choppers. The latter is preferred for the following reasons. Better control performance with rectifier requires increasing number of phase, which involves increased cost, both for the transformer as well as the rectifier. Moreover, the higher chopper frequency provides a smoother output and also helps in reducing the region of discontinuous conduction in the speed-torque plane. 2 Chopper based dc drives provide improved performance with less complicated circuitry. In the microprocessor used to control a thyristor based two quadrant chopper control dc motor, had a frequency of 400 Hz. But commutation circuit is an additional burden for that and the system is not user friendly and interactive. In 4, the scheme is proposed for a four quadrant operation using processor 89C2051 and MOSFET, but it has also some operating limitations. As most of the plants use PC for different applications today, the following approach of using PC to control dc motor will involve no such additional investment. CONTROL METHOD The control scheme developed and reported in this paper is related with four quadrant chopper dc drive and for that a separately excited dc motor is chosen. Four quadrant chopper is very efficient and versatile mode of drive, as shown in Figure 1, where any of the following four operations is possible, 5 Forward power control During forward power control, a chopper fed drive Vol 87, January

2 Figure 1 Four quadrant chopper for separately excited DC motor operates in the first quadrant, where armature voltage and current are positive. Switches 3 and 4 remain off. When Switch 1 and Switch 2 are turned on together, the supply voltage appears across the motor terminals and the armature current rises. When Switch 2 is turned off, the armature current is forced to decay through diode D3 and Switch 1. Switch 1 remains on during this process. Forward Regeneration Switches 1,2 and 3 are turned off. Switch 4 acts as chopper switch. When Switch 4 is turned on, the armature current, which rises, flows through Switch 4 and D2. When Switch 4 is turned off, the motor, acting as a generator, returns energy to the supply through diodes D1 and D2. Reverse Power Control Switches 1 and 2 are off. When Switch 3 and Switch 4 are turned on together, the armature current rises and flows in reverse direction. When Switch 4 is turned off, the armature current decays through D1 and Switch 3. Switch 3 remains on during this process. Reverse Regeneration Here Switches 1,3 and 4 are off. Switch 2 acts as chopper. When Switch 2 is turned on, the armature current rises through Switch 2 and D4. When Switch 2 is turned off, the armature current falls and the motor returns energy to supply through D3 and D4. All the four quadrant operations are tabulated in Table 1. For this experimental work, the switches selected are IGBTs. Table 1 Four quadrants Sw1, Sw2, Sw3? Off Sw4? Chops Sw1, Sw2? Off Sw3? On Sw4? Chops Va Sw3, Sw4? Off Sw1? On Sw2? Chops Sw1, Sw3, Sw4? Off Sw2? Chops Ia DESCRIPTION OF SOFTWARE Scheme The control software developed here is in the C environment with the help of assembly language programming. C supports assembly level programming. The mnemonic must follow the keyword _asm. The asm statements had become very important during the development of the software, because it uses delay loops for real time operations. Now C language also has the provision for a delay function delay(n), where n is in ms. The function comes under the header file dos.h. The minimum delay obtained is 1 ms, ie, n = 1 and here lies the real problem. The software developed here requires delays of even less than 1 ms. So, the help of assembly level programming is taken for the work. The software developed replaces the total hardware required to generate the switching signals. The user of the program can easily control the armature voltage and hence the speed of the dc machine. The user is first asked for the desired speed as a percentage of the rated speed of the machine. Thereafter, the user controls the direction of rotation by specifying the option. On the basis of the above mentioned data, the switching signals are generated. Description For the above mentioned control, the switching and control signals are generated at the parallel port of the PC by configuring the AL register and then OUT-ing its contents. The Figure 2 explains the process of configuration of the AL register. All the bits are configured in accordance to the mode of operation. The program first checks whether the direction mentioned by the user is forward or reverse for running the motor. In case of forward mode operation, the bit b 2 is kept high continuously and the bit b 1 is kept high for the T_on period and low for the T_off period. The T_on period is calculated by the subroutine ton_delay which has the user's speed input as the parameter. The T_off and the T_on are selected such that (T_on + T_off) is constant throughout the operation. However, the time period T can be changed from the software program (if required for the variable frequency mode operation). The armature current sensed, as shown in Figure 1 is fed through an A/ D converter to the same port (EPP-enhanced parallel port). EPP generates and controls all the transfers to and from the peripheral, assigning both the EPP address register and the EPP data register 6. Data can be read through the same data bus by simply generating control signal under EPP mode to the port by the software program. The whole conversion process is controlled by the control software through control pins of the ADC as well as the parallel port control bits 6. After the T period, the keyboard is scanned for any keyboard interrupt. Interrupt 21h (DOS function, service number 06h) is used to scan the 4 IE(I) Journal-ET

3 Forward regenrative braking bit to switch 4 0, when brake is not applied toggle between 0 and 1 when brake is applied Forward mode speed control bit to Switch1, 1 in the motoring mode, 0 in the regenerative braking mode Reverse regenerative braking bit to Switch 2 0, when brake is not applied toggle between 0 and 1 when brake is applied Reverse mode speed control bit to Switch 3, 1 in the motoring mode, 0 in the regenerative braking mode Forward mode speed control bit to Switch 2, 1 in the t_on period, 0 in the t_off period and in the regenerative mode Reverse mode speed control bit to Switch 4, 1 in the t_on period, 0 in the t_off period and in the regenerative mode Start bit 0 for start, 1 for halt b 0 b 1 b 2 b 3 b 4 b 5 b 6 b 7 Current sense THRO' ADC in EPP mode SW 1 SW 2 SW 3 SW 4 Figure 2 PC parallel port configuration keyboard 7. The program continues to generate the waveform unless interrupted. As soon as there is an interrupt, the ASCII value of the key pressed get stored in the AL register. The program compares the value stored in AL with h, i, d and b for stopping the machine, increasing the armature current, decreasing the armature voltage and braking respectively. When h key on the keyboard is pressed, all the bits are reset. At the output, no signal is received (halt condition). When b key is pressed, the armature voltage that existed before the application of the brakes is stored and T_on is made zero. Bits b 1 and b 2 (for forward operation) or bits b 5 and b 6 (for reverse operation) are then reset. To activate the regenerative braking operation, the bit b 3 or b 4 is kept high and low alternately. Later to restart if necessary, the speed can be slowly increased by pressing the i key. The special feature of the program is that pressing the b key once again can also retrieve the voltage before the application of the brakes. Sequence of Operation At starting operation of the motor, the program takes the percentage of the input voltage from the user as an input parameter. The user cannot input beyond 100% speed. In the next step after pressing enter, the user will be asked the direction of operation. Depending upon the speed percentage and forward/reverse input, the computer generates the square wave output at its parallel printer port. Figure 3 explains the sequence of operation for a particular direction of rotation. For operations of keys i or d, the t_on and t_off periods are readjusted and the speed percentage is displayed accordingly. During starting, a soft starting technique is adopted through program, which is based on the armature current feedback of motor sensed by the PC. In this scheme, the t_on time of switching signals are slowly increased to the set level, to control the inrush of starting current. One waveform of starting switching signals of duty cycle is the 0.5 is shown in the Figure 4. An upper limit is also set in the program for the current and if the current cross that limit, the t_on period of the output is reduced by itself and after certain period this is again increased to its set value. Through this repetitive process, finally the motor reaches to its steady state. This is a protection from any overloading situation. For braking operation, one IGBT is in operation and the armature current is monitored continuously to limit the braking current as well as to finish the braking operation. HARDWARE ARE Corresponding data from a 25 pin printer port is transferred using a 25 pin D connector and a FRC cable through four opto-couplers (for isolating PC from the external circuit). The bits b 0, b 1, b 2, b 4, b 5, b 6 are connected to the pin 2, 3, 4, 6, 7 and 8 of the D connector respectively. These control signals are fed to the IGBTs of four quadrant chopper through the driver circuits, as shown in Figure 5. A driver circuit consists of a comparator (high frequency op amp LM318) followed by a push-pull amplifier. A npn and a pnp transistor are used Vol 87, January

4 Start A User entry : % Speed Direction of Motion = 0 Key No Z es Display Speed Calculation of t_on and t_off time. manipulation of direction & brake bits. Current Sensing < upper limit? Z Halt key Speed inc. key restart? Stop V=V+1, k=0 Out through port keeping 'speed control bit' high. > 100? Speed dec. key V=V-1,key=0 call subroutine t_on delay V = 100 B V = 0 V < 0? Out through port keeping 'speed control bit' low. Call subroutine t_off delay Sense key pressing A B Brake key Set speed control bit low Calculation of t_on and t_off time for braking switch Out through port bit Sense current = 0? Stop Figure 3 Flowchart of operation 6 IE(I) Journal-ET

5 V Starting switching signals Time, ms s Figure 4 Switching signals during start up Signals_from_PC thr' opto coupler + 12 V 12 V 12 V Figure 5 Driver circuit for IGBT 100 ohm to IGBT_gate for that purpose. Finally, the outputs of these amplifiers go to the IGBTs as switching signals. For the experiment, the Mitsubishi make IGBTs CT60AM-18F have been used. The IGBTs turn on for a positive voltage (+25V max) but turn off for a negative voltage (-25V min). Hence the push-pull circuit is used here. EPERIMENTAL AL RESULTS TS AND CONCLUSION The work has been completed and tested with a motor with following specifications. Laboratory type 1 kw separately excited dc motor, 1400rpm, 200V dc input, constant field voltage of 200V. The switching frequency for IGBTs selected is 1 khz. The Table 2 shows the some of the measurements of speed corresponding to the armature voltage. The advantages observed in this type of control can be summarized as given below. (i) The use of PC in the place of conventional drive is cost effective as we consider various operations can be performed at a time. Table 2 Experimental results Armature Armature Speed, rpm voltage, % voltage (ii) The program interface in PC is more user friendly compared to a conventional drive, enabling flexible and simple operation right from the control room. (iii)the motor speed control can be smooth, practically from zero up to the rated value within an acceptable time period. (iv)minimum hardware is used and so making it more reliable. (v) The four quadrant operations including the regenerative braking action makes it more versatile. Moreover, the control method described in this paper can be extended easily for a closed loop system where the actual speed is sensed, converted to a digital signal and fed to the same parallel port of the PC. In this way the speed regulation is possible. Even the method can be applied for the control of ac motor. REFERENCES 1. B B Brey. 'The Intel Microprocessor 8086/8088, 80186/80188, 80286, 80386, 80486, Pentium and Pentium Co-proessor Architecture, Programming, and Interfacing.' PHI, 3rd edition, 1995, p V R Moorthi. 'Power Electronics'. Oxford University Press, 1st edition, 2005, pp W G Dunford, S G Dewan. 'The Design of a Control Circuit for a Two Quadrant Chopper Based on the Motorola 6800 Microprocessor'. IEEE Trans.Ind.Appl, 1980, p M Lawrence. 'A Microcontroller Based Motor Speed Control.' 5. M H Rashid. 'Power Electronics Circuits, Devices and Application, PHI, 2nd edition, 1998, p P Norton. 'Inside the PC'. PHI, 6th edition, 1997, p K Richard. 'The MS-DOS handbook'. BPB Publication, 1986, p 297, p 108. Vol 87, January

Transformerless UPS systems and the 9900 By: John Steele, EIT Engineering Manager

Transformerless UPS systems and the 9900 By: John Steele, EIT Engineering Manager Transformerless UPS systems and the 9900 By: John Steele, EIT Engineering Manager Introduction There is a growing trend in the UPS industry to create a highly efficient, more lightweight and smaller UPS

More information

HT46R14A Single Phase AC Induction Motor Frequency Converter Application

HT46R14A Single Phase AC Induction Motor Frequency Converter Application HT46R14A Single Phase AC Induction Motor Frequency Converter Application D/N:HA0095E Introductions Initially the main reason for using frequency conversion technology was for speed control, however to

More information

AUTOMATIC NIGHT LAMP WITH MORNING ALARM USING MICROPROCESSOR

AUTOMATIC NIGHT LAMP WITH MORNING ALARM USING MICROPROCESSOR AUTOMATIC NIGHT LAMP WITH MORNING ALARM USING MICROPROCESSOR INTRODUCTION This Project "Automatic Night Lamp with Morning Alarm" was developed using Microprocessor. It is the Heart of the system. The sensors

More information

FREQUENCY CONTROLLED AC MOTOR DRIVE

FREQUENCY CONTROLLED AC MOTOR DRIVE FREQUENCY CONTROLLED AC MOTOR DRIVE 1.0 Features of Standard AC Motors The squirrel cage induction motor is the electrical motor motor type most widely used in industry. This leading position results mainly

More information

Micro-Step Driving for Stepper Motors: A Case Study

Micro-Step Driving for Stepper Motors: A Case Study Micro-Step Driving for Stepper Motors: A Case Study N. Sedaghati-Mokhtari Graduate Student, School of ECE, University of Tehran, Tehran, Iran n.sedaghati @ece.ut.ac.ir Abstract: In this paper, a case study

More information

MICROPROCESSOR AND MICROCOMPUTER BASICS

MICROPROCESSOR AND MICROCOMPUTER BASICS Introduction MICROPROCESSOR AND MICROCOMPUTER BASICS At present there are many types and sizes of computers available. These computers are designed and constructed based on digital and Integrated Circuit

More information

STEPPER MOTOR SPEED AND POSITION CONTROL

STEPPER MOTOR SPEED AND POSITION CONTROL STEPPER MOTOR SPEED AND POSITION CONTROL Group 8: Subash Anigandla Hemanth Rachakonda Bala Subramanyam Yannam Sri Divya Krovvidi Instructor: Dr. Jens - Peter Kaps ECE 511 Microprocessors Fall Semester

More information

Principles of Adjustable Frequency Drives

Principles of Adjustable Frequency Drives What is an Adjustable Frequency Drive? An adjustable frequency drive is a system for controlling the speed of an AC motor by controlling the frequency of the power supplied to the motor. A basic adjustable

More information

AC/DC Power Supply Reference Design. Advanced SMPS Applications using the dspic DSC SMPS Family

AC/DC Power Supply Reference Design. Advanced SMPS Applications using the dspic DSC SMPS Family AC/DC Power Supply Reference Design Advanced SMPS Applications using the dspic DSC SMPS Family dspic30f SMPS Family Excellent for Digital Power Conversion Internal hi-res PWM Internal high speed ADC Internal

More information

What Is Regeneration?

What Is Regeneration? What Is Regeneration? Braking / Regeneration Manual Regeneration Overview Revision 1.0 When the rotor of an induction motor turns slower than the speed set by the applied frequency, the motor is transforming

More information

DAC Digital To Analog Converter

DAC Digital To Analog Converter DAC Digital To Analog Converter DAC Digital To Analog Converter Highlights XMC4000 provides two digital to analog converters. Each can output one analog value. Additional multiple analog waves can be generated

More information

DC Motor control Reversing

DC Motor control Reversing January 2013 DC Motor control Reversing and a "Rotor" which is the rotating part. Basically there are three types of DC Motor available: - Brushed Motor - Brushless Motor - Stepper Motor DC motors Electrical

More information

AMZ-FX Guitar effects. (2007) Mosfet Body Diodes. http://www.muzique.com/news/mosfet-body-diodes/. Accessed 22/12/09.

AMZ-FX Guitar effects. (2007) Mosfet Body Diodes. http://www.muzique.com/news/mosfet-body-diodes/. Accessed 22/12/09. Pulse width modulation Pulse width modulation is a pulsed DC square wave, commonly used to control the on-off switching of a silicon controlled rectifier via the gate. There are many types of SCR s, most

More information

Programming Logic controllers

Programming Logic controllers Programming Logic controllers Programmable Logic Controller (PLC) is a microprocessor based system that uses programmable memory to store instructions and implement functions such as logic, sequencing,

More information

Series Six Plus Programmable Controller

Series Six Plus Programmable Controller Series Six Plus Programmable Controller Gl?K-0147B June 1989 Central Processor Unit 8-Slot Rack 1l-Slot Rack General Description The Central Processor Unit (CPU) for the Series Six Plus Programmable Logic

More information

Simple PWM Boost Converter with I/O Disconnect Solves Malfunctions Caused when V OUT <V IN

Simple PWM Boost Converter with I/O Disconnect Solves Malfunctions Caused when V OUT <V IN Simple PWM Boost Converter with I/O Disconnect Solves Malfunctions Caused when V OUT

More information

Advance Electronic Load Controller for Micro Hydro Power Plant

Advance Electronic Load Controller for Micro Hydro Power Plant Journal of Energy and Power Engineering 8 (2014) 1802-1810 D DAVID PUBLISHING Advance Electronic Load Controller for Micro Hydro Power Plant Dipesh Shrestha, Ankit Babu Rajbanshi, Kushal Shrestha and Indraman

More information

Interfacing Analog to Digital Data Converters

Interfacing Analog to Digital Data Converters Converters In most of the cases, the PIO 8255 is used for interfacing the analog to digital converters with microprocessor. We have already studied 8255 interfacing with 8086 as an I/O port, in previous

More information

Modified Cascaded Five Level Multilevel Inverter Using Hybrid Pulse Width Modulation

Modified Cascaded Five Level Multilevel Inverter Using Hybrid Pulse Width Modulation International Journal of Computer Sciences and Engineering Open Access Research Paper Volume-4, Special Issue-2, April 2016 E-ISSN: 2347-2693 Modified Cascaded Five Level Multilevel Inverter Using Hybrid

More information

Construction and Application of a Computer Based Interface Card

Construction and Application of a Computer Based Interface Card Session 4 Construction and Application of a Computer Based Interface Card Michael Combs Telescope Operations Engineer m.combs@morehead-st.edu Morehead State University Morehead, Kentucky Ahmad Zargari,

More information

Microcontroller based PWM Inverter for Speed Control of a Three Phase Induction Motor

Microcontroller based PWM Inverter for Speed Control of a Three Phase Induction Motor Microcontroller based PWM Inverter for Speed Control of a Three Phase Induction Motor M. A. Latif, M. J. Alam, M. A. Rashid*, A. Karim, N. H. Ramly, I. Daut Dhaka Water Supply Authority (WASA), Dhaka,

More information

Use and Application of Output Limiting Amplifiers (HFA1115, HFA1130, HFA1135)

Use and Application of Output Limiting Amplifiers (HFA1115, HFA1130, HFA1135) Use and Application of Output Limiting Amplifiers (HFA111, HFA110, HFA11) Application Note November 1996 AN96 Introduction Amplifiers with internal voltage clamps, also known as limiting amplifiers, have

More information

Sierra Dual 24 Volt Brushless DC Motor Controller Product Specification

Sierra Dual 24 Volt Brushless DC Motor Controller Product Specification Sierra Dual 24 Volt Brushless DC Motor Controller Product Specification Assembly 025A0215 600A0942 Rev. A May 14, 2012 025A0215 Brushless DC Motor Controller Page 1 Revision History ECN # Date Rev Description

More information

Microcontroller based speed control of three phase induction motor using v/f method

Microcontroller based speed control of three phase induction motor using v/f method International Journal of Scientific and Research Publications, Volume 3, Issue 2, February 2013 1 Microcontroller based speed control of three phase induction motor using v/f method Mrs.DeepaliS.Shirke,

More information

MICROPROCESSOR. Exclusive for IACE Students www.iace.co.in iacehyd.blogspot.in Ph: 9700077455/422 Page 1

MICROPROCESSOR. Exclusive for IACE Students www.iace.co.in iacehyd.blogspot.in Ph: 9700077455/422 Page 1 MICROPROCESSOR A microprocessor incorporates the functions of a computer s central processing unit (CPU) on a single Integrated (IC), or at most a few integrated circuit. It is a multipurpose, programmable

More information

HIGH VOLTAGE POWER SUPPLY FOR ELECTRO-OPTICS APPLICATIONS

HIGH VOLTAGE POWER SUPPLY FOR ELECTRO-OPTICS APPLICATIONS HIGH VOLTAGE POWER SUPPLY FOR ELECTRO-OPTICS APPLICATIONS A. R. Tamuri, N. Bidin & Y. M. Daud Laser Technology Laboratory, Physics Department Faculty of Science, Universiti Teknologi Malaysia, 81310 Skudai,

More information

Speed Control Methods of Various Types of Speed Control Motors. Kazuya SHIRAHATA

Speed Control Methods of Various Types of Speed Control Motors. Kazuya SHIRAHATA Speed Control Methods of Various Types of Speed Control Motors Kazuya SHIRAHATA Oriental Motor Co., Ltd. offers a wide variety of speed control motors. Our speed control motor packages include the motor,

More information

HANDLING SUSPEND MODE ON A USB MOUSE

HANDLING SUSPEND MODE ON A USB MOUSE APPLICATION NOTE HANDLING SUSPEND MODE ON A USB MOUSE by Microcontroller Division Application Team INTRODUCTION All USB devices must support Suspend mode. Suspend mode enables the devices to enter low-power

More information

Interfacing To Alphanumeric Displays

Interfacing To Alphanumeric Displays Interfacing To Alphanumeric Displays To give directions or data values to users, many microprocessor-controlled instruments and machines need to display letters of the alphabet and numbers. In systems

More information

PART B QUESTIONS AND ANSWERS UNIT I

PART B QUESTIONS AND ANSWERS UNIT I PART B QUESTIONS AND ANSWERS UNIT I 1. Explain the architecture of 8085 microprocessor? Logic pin out of 8085 microprocessor Address bus: unidirectional bus, used as high order bus Data bus: bi-directional

More information

GLOLAB Two Wire Stepper Motor Positioner

GLOLAB Two Wire Stepper Motor Positioner Introduction A simple and inexpensive way to remotely rotate a display or object is with a positioner that uses a stepper motor to rotate it. The motor is driven by a circuit mounted near the motor and

More information

DEPARTMENT OF COMPUTER SCIENCE & ENGINEERING Question Bank Subject Name: EC6504 - Microprocessor & Microcontroller Year/Sem : II/IV

DEPARTMENT OF COMPUTER SCIENCE & ENGINEERING Question Bank Subject Name: EC6504 - Microprocessor & Microcontroller Year/Sem : II/IV DEPARTMENT OF COMPUTER SCIENCE & ENGINEERING Question Bank Subject Name: EC6504 - Microprocessor & Microcontroller Year/Sem : II/IV UNIT I THE 8086 MICROPROCESSOR 1. What is the purpose of segment registers

More information

IGBT Protection in AC or BLDC Motor Drives by Toshio Takahashi

IGBT Protection in AC or BLDC Motor Drives by Toshio Takahashi International Rectifier 233 Kansas Street, El Segundo, CA 90245 USA IGBT Protection in AC or BLDC Motor Drives by Toshio Takahashi The new IR2137 IGBT Gate Driver IC integrates Ground Fault and Over-Current

More information

Digital Systems Based on Principles and Applications of Electrical Engineering/Rizzoni (McGraw Hill

Digital Systems Based on Principles and Applications of Electrical Engineering/Rizzoni (McGraw Hill Digital Systems Based on Principles and Applications of Electrical Engineering/Rizzoni (McGraw Hill Objectives: Analyze the operation of sequential logic circuits. Understand the operation of digital counters.

More information

Chapter 2 Logic Gates and Introduction to Computer Architecture

Chapter 2 Logic Gates and Introduction to Computer Architecture Chapter 2 Logic Gates and Introduction to Computer Architecture 2.1 Introduction The basic components of an Integrated Circuit (IC) is logic gates which made of transistors, in digital system there are

More information

CHAPTER 11: Flip Flops

CHAPTER 11: Flip Flops CHAPTER 11: Flip Flops In this chapter, you will be building the part of the circuit that controls the command sequencing. The required circuit must operate the counter and the memory chip. When the teach

More information

Study Guide for the Electronics Technician Pre-Employment Examination

Study Guide for the Electronics Technician Pre-Employment Examination Bay Area Rapid Transit District Study Guide for the Electronics Technician Pre-Employment Examination INTRODUCTION The Bay Area Rapid Transit (BART) District makes extensive use of electronics technology

More information

Table 1 Comparison of DC, Uni-Polar and Bi-polar Stepper Motors

Table 1 Comparison of DC, Uni-Polar and Bi-polar Stepper Motors Electronics Exercise 3: Uni-Polar Stepper Motor Controller / Driver Mechatronics Instructional Laboratory Woodruff School of Mechanical Engineering Georgia Institute of Technology Lab Director: I. Charles

More information

revolution Contents: Introduction Power 28-pin Project Board with input/output cables

revolution Contents: Introduction Power 28-pin Project Board with input/output cables 28-PIN IN IN PROJECT BOARD Contents: AXE020 28-pin Project Board with input/output cables Introduction The 28-pin project board is designed to allow rapid prototyping with 28-pin PICAXE microcontrollers.

More information

3-Phase Synchronous PWM Controller IC Provides an Integrated Solution for Intel VRM 9.0 Design Guidelines

3-Phase Synchronous PWM Controller IC Provides an Integrated Solution for Intel VRM 9.0 Design Guidelines 3-Phase Synchronous PWM Controller IC Provides an Integrated Solution for Intel VRM 9.0 Design Guidelines Odile Ronat International Rectifier The fundamental reason for the rapid change and growth in information

More information

LAB 7 MOSFET CHARACTERISTICS AND APPLICATIONS

LAB 7 MOSFET CHARACTERISTICS AND APPLICATIONS LAB 7 MOSFET CHARACTERISTICS AND APPLICATIONS Objective In this experiment you will study the i-v characteristics of an MOS transistor. You will use the MOSFET as a variable resistor and as a switch. BACKGROUND

More information

Accurate Measurement of the Mains Electricity Frequency

Accurate Measurement of the Mains Electricity Frequency Accurate Measurement of the Mains Electricity Frequency Dogan Ibrahim Near East University, Faculty of Engineering, Lefkosa, TRNC dogan@neu.edu.tr Abstract The frequency of the mains electricity supply

More information

Discover the power of e-learning! The Quick Guide to AC Variable Frequency

Discover the power of e-learning! The Quick Guide to AC Variable Frequency The Quick Guide to AC Variable Frequency This ebook is meant as an easy guide to any electrical or electronic engineer or technician, who would like to know how modern ac variable frequency drives work.

More information

Motor Fundamentals. DC Motor

Motor Fundamentals. DC Motor Motor Fundamentals Before we can examine the function of a drive, we must understand the basic operation of the motor. It is used to convert the electrical energy, supplied by the controller, to mechanical

More information

Computer System: User s View. Computer System Components: High Level View. Input. Output. Computer. Computer System: Motherboard Level

Computer System: User s View. Computer System Components: High Level View. Input. Output. Computer. Computer System: Motherboard Level System: User s View System Components: High Level View Input Output 1 System: Motherboard Level 2 Components: Interconnection I/O MEMORY 3 4 Organization Registers ALU CU 5 6 1 Input/Output I/O MEMORY

More information

Section 3. Sensor to ADC Design Example

Section 3. Sensor to ADC Design Example Section 3 Sensor to ADC Design Example 3-1 This section describes the design of a sensor to ADC system. The sensor measures temperature, and the measurement is interfaced into an ADC selected by the systems

More information

EET272 Worksheet Week 9

EET272 Worksheet Week 9 EET272 Worksheet Week 9 answer questions 1-5 in preparation for discussion for the quiz on Monday. Finish the rest of the questions for discussion in class on Wednesday. Question 1 Questions AC s are becoming

More information

Controlling a Dot Matrix LED Display with a Microcontroller

Controlling a Dot Matrix LED Display with a Microcontroller Controlling a Dot Matrix LED Display with a Microcontroller By Matt Stabile and programming will be explained in general terms as well to allow for adaptation to any comparable microcontroller or LED matrix.

More information

Fundamentals of Power Electronics. Robert W. Erickson University of Colorado, Boulder

Fundamentals of Power Electronics. Robert W. Erickson University of Colorado, Boulder Robert W. Erickson University of Colorado, Boulder 1 1.1. Introduction to power processing 1.2. Some applications of power electronics 1.3. Elements of power electronics Summary of the course 2 1.1 Introduction

More information

Low Cost Pure Sine Wave Solar Inverter Circuit

Low Cost Pure Sine Wave Solar Inverter Circuit Low Cost Pure Sine Wave Solar Inverter Circuit Final Report Members: Cameron DeAngelis and Luv Rasania Professor: Yicheng Lu Advisor: Rui Li Background Information: Recent rises in electrical energy costs

More information

Brushless DC Motor Controller Product Specification Assembly 025F0129

Brushless DC Motor Controller Product Specification Assembly 025F0129 Brushless DC Motor Controller Product Specification Assembly 025F0129 September 16, 2009 025F0129 ST B Brushless DC Motor Controller Data Sheet Page 1 Revision History ECN # Date Rev Description By 07058

More information

3753 en - 04.2004/b VE/B - VE/RG Va V riable speed drives

3753 en - 04.2004/b VE/B - VE/RG Va V riable speed drives 3753 en 04.2004/b Variable speed drives LEROYSOMER's drives provide SPEED VARIATION for a DC motor, SIMPLY and ECONOMICALLY from a singlephase power supply. CMStype technology is used. These products conform

More information

Digital Signal Controller Based Automatic Transfer Switch

Digital Signal Controller Based Automatic Transfer Switch Digital Signal Controller Based Automatic Transfer Switch by Venkat Anant Senior Staff Applications Engineer Freescale Semiconductor, Inc. Abstract: An automatic transfer switch (ATS) enables backup generators,

More information

A Practical Guide to Free Energy Devices

A Practical Guide to Free Energy Devices A Practical Guide to Free Energy Devices Device Patent No 29: Last updated: 7th October 2008 Author: Patrick J. Kelly This is a slightly reworded copy of this patent application which shows a method of

More information

COMPUTER BASED REMOTE CONTROL FOR LAYOUT OF SCALED MODEL TRAINS

COMPUTER BASED REMOTE CONTROL FOR LAYOUT OF SCALED MODEL TRAINS COMPUTER BASED REMOTE CONTROL FOR LAYOUT OF SCALED MODEL TRAINS Ivan Ivanov Monov, Ivan Petrov Gorchev Technical University - Sofia, 8 Kliment Ohridski Blvd., Sofia 1000, Bulgaria, phone: +359 887 204488,

More information

FlexPak 3000 Digital DC Drive Software Reference Manual Version 4.3

FlexPak 3000 Digital DC Drive Software Reference Manual Version 4.3 FlexPak 3000 Digital DC Drive Software Reference Manual Version 4.3 Instruction Manual D2-3405-2 The information in this manual is subject to change without notice. Throughout this manual, the following

More information

COMPUTER SCIENCE AND ENGINEERING - Microprocessor Systems - Mitchell Aaron Thornton

COMPUTER SCIENCE AND ENGINEERING - Microprocessor Systems - Mitchell Aaron Thornton MICROPROCESSOR SYSTEMS Mitchell Aaron Thornton, Department of Electrical and Computer Engineering, Mississippi State University, PO Box 9571, Mississippi State, MS, 39762-9571, United States. Keywords:

More information

Using Arduino Microcontrollers to Sense DC Motor Speed and Position

Using Arduino Microcontrollers to Sense DC Motor Speed and Position ECE480 Design Team 3 Using Arduino Microcontrollers to Sense DC Motor Speed and Position Tom Manner April 4, 2011 page 1 of 7 Table of Contents 1. Introduction ----------------------------------------------------------

More information

Design of an Auxiliary Power Distribution Network for an Electric Vehicle

Design of an Auxiliary Power Distribution Network for an Electric Vehicle Design of an Auxiliary Power Distribution Network for an Electric Vehicle William Chen, Simon Round and Richard Duke Department of Electrical & Computer Engineering University of Canterbury, Christchurch,

More information

Microtronics technologies Mobile: 99707 90092

Microtronics technologies Mobile: 99707 90092 For more Project details visit: http://www.projectsof8051.com/rfid-based-attendance-management-system/ Code Project Title 1500 RFid Based Attendance System Synopsis for RFid Based Attendance System 1.

More information

Improvements of Reliability of Micro Hydro Power Plants in Sri Lanka

Improvements of Reliability of Micro Hydro Power Plants in Sri Lanka Improvements of Reliability of Micro Hydro Power Plants in Sri Lanka S S B Udugampala, V Vijayarajah, N T L W Vithanawasam, W M S C Weerasinghe, Supervised by: Eng J Karunanayake, Dr. K T M U Hemapala

More information

Direct Current Motors

Direct Current Motors Direct Current Motors DC MOTORS The DC machine can operate as a generator and as a motor. Chap 5. Electrical Machines by Wildi, 6 e Lecturer: R. Alba-Flores Alfred State College Spring 2008 When a DC machine

More information

NC-12 Modbus Application

NC-12 Modbus Application NC-12 Modbus Application NC-12 1 Table of Contents 1 Table of Contents... 2 2 Glossary... 3 SCADA...3 3 NC-12 Modbus in general... 3 4 Entire system... 4 4.1 PFC to PC connection alternatives...4 4.1.1

More information

with Electronic Assistant

with Electronic Assistant TECHNICAL DATASHEET #TDAX100200 BLDC Motor Drive Drives a 12V, 24V or 48V BLDC motor Bidirectional, up to 25A Smooth speed control using Hall Sensors CAN (SAE J1939) with Electronic Assistant Features:

More information

CAUTION! THE 7I29 USES VOLTAGE AND POWER LEVELS THAT REPRESENT A HAZARD TO LIFE AND LIMB.

CAUTION! THE 7I29 USES VOLTAGE AND POWER LEVELS THAT REPRESENT A HAZARD TO LIFE AND LIMB. 7I29 MANUAL Rev 1.5 CAUTION! THE 7I29 USES VOLTAGE AND POWER LEVELS THAT REPRESENT A HAZARD TO LIFE AND LIMB. THE 7I29 IS INTENDED FOR USE BY OEMS THAT WILL INTEGRATE IT INTO A SYSTEM WITH INTERLOCKS AND

More information

EVAL-UFDC-1/UFDC-1M-16

EVAL-UFDC-1/UFDC-1M-16 Evaluation Board for Universal Frequency-to- Digital Converters UFDC-1 and UFDC-1M-16 EVAL-UFDC-1/UFDC-1M-16 FEATURES Full-Featured Evaluation Board for the Universal Frequency-to-Digital Converters UFDC-1

More information

Install the DeviceNet Module using the following procedure:

Install the DeviceNet Module using the following procedure: Installation INSTALLATION INSTRUCTIONS: MCD DEVICENET MODULE Order Code: 175G9002 1. Installation Install the DeviceNet Module using the following procedure: 1. Remove control power and mains supply from

More information

Display Board Pulse Width Modulation (PWM) Power/Speed Controller Module

Display Board Pulse Width Modulation (PWM) Power/Speed Controller Module Display Board Pulse Width Modulation (PWM) Power/Speed Controller Module RS0 Microcontroller LEDs Motor Control Pushbuttons Purpose: To demonstrate an easy way of using a Freescale RS0K2 microcontroller

More information

Application Note AN-1187

Application Note AN-1187 Application Note AN-1187 IR3230 Sensorless BLDC Motor Drive By Alex Lollio Table of Contents Application Note AN-1234... 1 Introduction... 2 Basic Working Principle... 3 Motor Control... 4 Motor Control

More information

Automated Bottle Filling System

Automated Bottle Filling System Automated Bottle Filling System Bipin Mashilkar 1, Pallavi Khaire 1, Girish Dalvi 1 1 Assistant Professor, Department of Mechanical Engineering, Fr.C.Rodrigues Institute of Technology, Maharashtra, India

More information

Harmonics and Noise in Photovoltaic (PV) Inverter and the Mitigation Strategies

Harmonics and Noise in Photovoltaic (PV) Inverter and the Mitigation Strategies Soonwook Hong, Ph. D. Michael Zuercher Martinson Harmonics and Noise in Photovoltaic (PV) Inverter and the Mitigation Strategies 1. Introduction PV inverters use semiconductor devices to transform the

More information

[F/T] [5] [KHz] [AMP] [3] [V] 4 ) To set DC offset to -2.5V press the following keys [OFS] [+/-] [2] [.] [5] [V]

[F/T] [5] [KHz] [AMP] [3] [V] 4 ) To set DC offset to -2.5V press the following keys [OFS] [+/-] [2] [.] [5] [V] FG085 minidds Function Generator Manual of Operation Applicable Models: 08501, 08501K, 08502K, 08503, 08503K Applicable Firmware Version: 1 ) 113-08501-100 or later (for U5) 2 ) 113-08502-030 or later

More information

Simulation and Analysis of PWM Inverter Fed Induction Motor Drive

Simulation and Analysis of PWM Inverter Fed Induction Motor Drive Simulation and Analysis of PWM Inverter Fed Induction Motor Drive C.S.Sharma, Tali Nagwani Abstract Sinusoidal Pulse Width Modulation variable speed drives are increasingly applied in many new industrial

More information

LADDER LOGIC/ FLOWCHART PROGRAMMING DIFFERENCES AND EXAMPLES

LADDER LOGIC/ FLOWCHART PROGRAMMING DIFFERENCES AND EXAMPLES page 1/10 This document is designed as a quick-start primer to assist industrial automation programmers who are familiar with PLCs and Relay Ladder Logic programming to better understand the corresponding

More information

PC BASED PID TEMPERATURE CONTROLLER

PC BASED PID TEMPERATURE CONTROLLER PC BASED PID TEMPERATURE CONTROLLER R. Nisha * and K.N. Madhusoodanan Dept. of Instrumentation, Cochin University of Science and Technology, Cochin 22, India ABSTRACT: A simple and versatile PC based Programmable

More information

AN ULTRA-CHEAP GRID CONNECTED INVERTER FOR SMALL SCALE GRID CONNECTION

AN ULTRA-CHEAP GRID CONNECTED INVERTER FOR SMALL SCALE GRID CONNECTION AN ULTRA-CHEAP GRID CONNECTED INVERTER FOR SMALL SCALE GRID CONNECTION Pramod Ghimire 1, Dr. Alan R. Wood 2 1 ME Candidate Email: pgh56@student.canterbury.ac.nz 2 Senior Lecturer: Canterbury University

More information

A MULTILEVEL INVERTER FOR SYNCHRONIZING THE GRID WITH RENEWABLE ENERGY SOURCES BY IMPLEMENTING BATTERY CUM DC-DC CONERTER

A MULTILEVEL INVERTER FOR SYNCHRONIZING THE GRID WITH RENEWABLE ENERGY SOURCES BY IMPLEMENTING BATTERY CUM DC-DC CONERTER A MULTILEVEL INVERTER FOR SYNCHRONIZING THE GRID WITH RENEWABLE ENERGY SOURCES BY IMPLEMENTING BATTERY CUM DC-DC CONERTER 1 KARUNYA CHRISTOBAL LYDIA. S, 2 SHANMUGASUNDARI. A, 3 ANANDHI.Y 1,2,3 Electrical

More information

The Design of DSP controller based DC Servo Motor Control System

The Design of DSP controller based DC Servo Motor Control System International Conference on Advances in Energy and Environmental Science (ICAEES 2015) The Design of DSP controller based DC Servo Motor Control System Haiyan Hu *, Hong Gu, Chunguang Li, Xiaowei Cai and

More information

MICROMAT-F / MINIMAT-F SCREWDRIVING SYSTEM

MICROMAT-F / MINIMAT-F SCREWDRIVING SYSTEM Screwdriving technology Automation Air motors Air tools Handheld Screwdriver pneumatic MICROMAT-F / MINIMAT-F SCREWDRIVING SYSTEM The screwdriving system with additional function control n Handheld screwdriver

More information

WIND TURBINE TECHNOLOGY

WIND TURBINE TECHNOLOGY Module 2.2-2 WIND TURBINE TECHNOLOGY Electrical System Gerhard J. Gerdes Workshop on Renewable Energies November 14-25, 2005 Nadi, Republic of the Fiji Islands Contents Module 2.2 Types of generator systems

More information

MC433 Stepper Motor Controller

MC433 Stepper Motor Controller MC433 Stepper Motor Controller 4 Axis, 10A PWM Hardware Reference Guide PCB Rev 1.1,1.1b MC433 Rev 1-1(b) Hardware Reference Guide Manual Revision 0.95 Warranty Statement SOC Robotics warrants that the

More information

How To Control Gimbal

How To Control Gimbal Tarot 2-Axis Brushless Gimbal for Gopro User Manual V1.0 1. Introduction Tarot T-2D gimbal is designed for the Gopro Hero3, which is widely used in film, television productions, advertising aerial photography,

More information

Whale 3. User Manual and Installation Guide. DC Servo drive. Contents. 1. Safety, policy and warranty. 1.1. Safety notes. 1.2. Policy. 1.3. Warranty.

Whale 3. User Manual and Installation Guide. DC Servo drive. Contents. 1. Safety, policy and warranty. 1.1. Safety notes. 1.2. Policy. 1.3. Warranty. Whale 3 DC Servo drive User Manual and Installation Guide Contents 1. Safety, policy and warranty. 1.1. Safety notes. 1.2. Policy. 1.3. Warranty. 2. Electric specifications. 2.1.Operation ranges. 3. Connections

More information

Programmable Logic Controller PLC

Programmable Logic Controller PLC Programmable Logic Controller PLC UPCO ICAI Departamento de Electrónica y Automática 1 PLC Definition PLC is a user friendly, microprocessor based, specialized computer that carries out control functions

More information

... Electronic Softstarter...

... Electronic Softstarter... . CT-START Electronic Softstarter. 6 A. to 900. A......... CT START CT-START is a multi-function electronic system with a microcontroller and thyristors, designed for use with all 3-phase squirrel cage

More information

Variable Frequency Drives - a Comparison of VSI versus LCI Systems

Variable Frequency Drives - a Comparison of VSI versus LCI Systems Variable Frequency Drives - a Comparison of VSI versus LCI Systems Introduction TMEIC is a leader in the innovative design and manufacture of large ac variable f requency drive systems. TMEIC has been

More information

Measuring Resistance Using Digital I/O

Measuring Resistance Using Digital I/O Measuring Resistance Using Digital I/O Using a Microcontroller for Measuring Resistance Without using an ADC. Copyright 2011 John Main http://www.best-microcontroller-projects.com Page 1 of 10 Table of

More information

Speed Control of Induction Motor using VHDL Implementation of PWM Technique

Speed Control of Induction Motor using VHDL Implementation of PWM Technique International Journal of Electrical Engineering. ISSN 0974-2158 Volume 7, Number 1 (2014), pp.1-9 International Research Publication House http://www.irphouse.com Speed Control of Induction Motor using

More information

ETEC 421 - Digital Controls PIC Lab 10 Pulse Width Modulation

ETEC 421 - Digital Controls PIC Lab 10 Pulse Width Modulation ETEC 421 - Digital Controls PIC Lab 10 Pulse Width Modulation Program Definition: Write a program to control the speed of a dc motor using pulse width modulation. Discussion: The speed of a dc motor is

More information

Analog Servo Drive 25A8

Analog Servo Drive 25A8 Description Power Range NOTE: This product has been replaced by the AxCent family of servo drives. Please visit our website at www.a-m-c.com or contact us for replacement model information and retrofit

More information

Designing VM2 Application Boards

Designing VM2 Application Boards Designing VM2 Application Boards This document lists some things to consider when designing a custom application board for the VM2 embedded controller. It is intended to complement the VM2 Datasheet. A

More information

NTE2053 Integrated Circuit 8 Bit MPU Compatible A/D Converter

NTE2053 Integrated Circuit 8 Bit MPU Compatible A/D Converter NTE2053 Integrated Circuit 8 Bit MPU Compatible A/D Converter Description: The NTE2053 is a CMOS 8 bit successive approximation Analog to Digital converter in a 20 Lead DIP type package which uses a differential

More information

Data Acquisition Module with I2C interface «I2C-FLEXEL» User s Guide

Data Acquisition Module with I2C interface «I2C-FLEXEL» User s Guide Data Acquisition Module with I2C interface «I2C-FLEXEL» User s Guide Sensors LCD Real Time Clock/ Calendar DC Motors Buzzer LED dimming Relay control I2C-FLEXEL PS2 Keyboards Servo Motors IR Remote Control

More information

Drive circuit basics + V. τ e. Industrial Circuits Application Note. Winding resistance and inductance

Drive circuit basics + V. τ e. Industrial Circuits Application Note. Winding resistance and inductance ndustrial Circuits Application Note Drive circuit basics For a given size of a stepper motor, a limited space is available for the windings. n the process of optimizing a stepper motor drive system, an

More information

Diode Applications. As we have already seen the diode can act as a switch Forward biased or reverse biased - On or Off.

Diode Applications. As we have already seen the diode can act as a switch Forward biased or reverse biased - On or Off. Diode Applications Diode Switching As we have already seen the diode can act as a switch Forward biased or reverse biased - On or Off. Voltage Rectifier A voltage rectifier is a circuit that converts an

More information

FREQUENCY RESPONSE ANALYZERS

FREQUENCY RESPONSE ANALYZERS FREQUENCY RESPONSE ANALYZERS Dynamic Response Analyzers Servo analyzers When you need to stabilize feedback loops to measure hardware characteristics to measure system response BAFCO, INC. 717 Mearns Road

More information

Software Manual RS232 Laser Merge Module. Document # SU-256521-09 Rev A

Software Manual RS232 Laser Merge Module. Document # SU-256521-09 Rev A Laser Merge Module Document # SU-256521-09 Rev A The information presented in this document is proprietary to Spectral Applied Research Inc. and cannot be used for any purpose other than that for which

More information

Flexible Active Shutter Control Interface using the MC1323x

Flexible Active Shutter Control Interface using the MC1323x Freescale Semiconductor Document Number: AN4353 Application Note Rev. 0, 9/2011 Flexible Active Shutter Control Interface using the MC1323x by: Dennis Lui Freescale Hong Kong 1 Introduction This application

More information

Hands On ECG. Sean Hubber and Crystal Lu

Hands On ECG. Sean Hubber and Crystal Lu Hands On ECG Sean Hubber and Crystal Lu The device. The black box contains the circuit and microcontroller, the mini tv is set on top, the bars on the sides are for holding it and reading hand voltage,

More information

Power Electronics. Prof. K. Gopakumar. Centre for Electronics Design and Technology. Indian Institute of Science, Bangalore.

Power Electronics. Prof. K. Gopakumar. Centre for Electronics Design and Technology. Indian Institute of Science, Bangalore. Power Electronics Prof. K. Gopakumar Centre for Electronics Design and Technology Indian Institute of Science, Bangalore Lecture - 1 Electric Drive Today, we will start with the topic on industrial drive

More information