Single-phase Variable Frequency Switch Gear

Size: px
Start display at page:

Download "Single-phase Variable Frequency Switch Gear"

Transcription

1 Single-phase Variable Frequency Switch Gear Eric Motyl, Leslie Zeman Advisor: Professor Steven Gutschlag Department of Electrical and Computer Engineering Bradley University, Peoria, IL May 13, 2016

2 ABSTRACT A variable frequency drive (VFD) controls the speed of a three-phase alternating current (AC) motor by varying the frequency and voltage supplied to the motor. Variable frequency drives provide energy efficiency benefits to industries that consume large amounts of power operating AC machines. The goal of this project was to construct single-phase variable frequency switch gear (SPVFSG) to produce a switched pulse-width modulated (PWM) waveform corresponding to a user selected motor frequency as an input. The switched PWM signal was applied to gate drive circuitry to amplify the voltage of the switched PWM. To convert direct current (DC) bus voltages to AC voltages, a DC-to-AC voltage inverter was designed using power transistors. The output of gate drive circuitry was used to switch power transistors in the DC-to-AC voltage inverter to drive an inductive load. The voltage and frequency of the inverter output was measured to verify proper Volts/Hertz ratio. i

3 TABLE OF CONTENTS ABSTRACT... i I. INTRODUCTION... 1 A. Problem Background... 1 B. Problem Statement... 1 C. Constraints... 1 II. SYSTEM DESCRIPTION... 2 A. System Block Diagram... 2 B. Subsystem Block Diagram... 2 C. High-level Flowchart... 2 III. METHOD OF SOLUTION... 4 A. PWM Generation Controller Design... 4 Lookup Table Testing Results... 5 B. Gate Drive Circuitry Design Testing Results... 6 C. DC-to-AC Voltage Inverter Design Testing Results... 9 IV. CONCLUSIONS V. REFERENCES ii

4 I. INTRODUCTION A. Problem Background A variable frequency drive (VFD) controls the speed of a three-phase alternating current (AC) motor by varying the frequency and voltage supplied to the motor [1]. When AC motors were introduced in 1888, motor speed control required either varying the magnetic flux or changing the number of poles on the motor. In contrast, direct current (DC) motor speed control could be achieved by inserting an external rheostat into the DC field circuit. In the 1980 s VFD technology became reliable and inexpensive enough to compete with traditional DC motor control [2]. VFDs are important because they provide energy efficiency benefits to industries that consume large amounts of power operating AC machines. Through the use of VFDs, industries can match the speed of the motor driven equipment to the load requirements, rather than running the AC motor at full speed with variable speed mechanical drive trains [1]. Another benefit of using VFDs is the smooth startup of AC motors, which extends equipment life by reducing belt, gear, and bearing wear [3]. The smooth startup of AC motors also reduces shaft fatigue. Previously at Bradley University, a senior project group designed and built a low-voltage singlephase variable frequency AC source using a LabVIEW based cdaq controller from National Instruments to generate a switched pulse-width modulated (PWM) waveform [5]. Alternative software can be used to generate a switched PWM waveform. B. Problem Statement Single-phase variable frequency switch gear that accepts a user-selected input frequency between 1 and 60 Hz and generates an output voltage with a constant Volts/Hertz ratio was designed, built, and tested. C. Constraints Design constraints for the single-phase variable frequency switch gear are shown in Table I. The variable frequency switch gear must provide outputs frequencies in the range of 1-60 Hz. All devices used must be rated for a current of 1.5 A RMS. The switch gear must be safe and must have a grounded neutral. TABLE I: CONSTRAINTS FOR SINGLE-PHASE VARIABLE FREQUENCY SWITCH GEAR Constraints Output Frequencies In the range of 1-60 Hz Hardware Devices rated for a current of 1.5 A RMS Safety Safe to operate Neutral Grounded neutral 1

5 II. SYSTEM DESCRIPTION A. System Block Diagram The system block diagram for the single-phase variable frequency switch gear is shown in Fig. 1. The inputs are a user-selected frequency input between 1 and 60 Hz and a bipolar DC source voltage. The output is a single-phase variable frequency voltage with a constant Volts/Hertz ratio. B. Subsystem Block Diagram The design of the single-phase variable frequency switch gear will be accomplished through the design of its subsystems. A subsystem block diagram for the overall system is shown in Fig. 2. A PWM generation controller accepts a user-selected frequency between 1 and 60 Hz to generate an upper (positive voltage) and a lower (negative voltage) switched PWM waveform. The switched PWM waveforms become the input to gate drive circuitry, which consists of a high side and low side driver that amplifies the voltage and current levels from the PWM generation controller. Two separate signals, an upper and lower half PWM are the outputs of the gate drive circuitry. A DC-to-AC voltage inverter has two DC rails and the upper and lower half PWM signals as its inputs. DC bus voltages are converted to AC voltages and the voltage inverter has a single-phase variable frequency output with a constant Volts/Hertz ratio. C. High-level Flowchart The team is utilizing Atmel Studios to accomplish the task of generating the PWM signal. The software flow chart provided in Fig. 3 shows the program logic used to generate the PWM signal. Pin 1 and pin 2 are the outputs of the Atmega128 microcontroller. The End of Countdown decision block shown in the flow chart signifies the end of each half-cycle of the fully rectified sine wave. +VDC User-selected Frequency Input Variable Frequency Switch Gear Single-phase, Variable Frequency Output with Constant V/Hz Ratio -VDC Fig. 1. System block diagram for the single-phase variable frequency switch gear. 2

6 Gate Drive Circuitry + VDC User-selected Frequency Input PWM Generation Controller Upper half PWM Lower half PWM DC-to-AC Voltage Inverter VDC Fig. 2. Subsystem block diagram for the single-phase variable frequency switch gear. Single-phase, Variable Frequency Output with Constant V/Hz Ratio Start User select sine frequency Sine > Triangle True Set PWM pin 1 HIGH Set PWM pin 2 LOW False Set PWM pin 1 LOW Set PWM pin2 LOW False True End of Count Down True Sine > Triangle True Set PWM pin 2 HIGH Set PWM pin 1 LOW False Set PWM pin 2 LOW Set PWM pin 1 LOW False End of Count Down Fig. 3. High level flowchart for the PWM generation controller. 3

7 Fig. 4. Subsystem block diagram for the PWM generation controller. III. METHOD OF SOLUTION A. PWM Generation Controller 1. Design The PWM generation controller will accept a user selected frequency as an input for the desired output frequency. The input frequency will be entered via the keypad on an Atmega128 development board, and the software will then generate the PWM signal on the pins of the Atmega128 development board. The PWM signal will be the input for the gate drive circuitry. To create the PWM signal, the PWM generation controller will use a comparison between a triangle wave and fully rectified sine wave. The values for the two waves were generated using MATLAB. Both the triangle and sine waveforms are stored in lookup tables in programmable memory on the Atmega128 development board. The two waveforms are then read from programmable memory and compared. If the amplitude of the sine wave is greater than the amplitude of the triangle wave then the PWM signal will be high, but the PWM signal will be low if the opposite is true. Every half cycle the PWM signal will activate alternate output pins to power the high and low side of the power transistors. It is important that the high and low side of power transistors are not on at the same time. The subsystem block diagram shown in Fig. 4 shows the 3 khz triangle wave is compared with the fully rectified sine wave. The comparison generates the switched PWM signal with the varying duty cycle representative of the fully rectified sine wave at the selected frequency. Lookup Table The sine and triangle waveforms were created by using lookup tables based on simulation results. The results were computed using a MATLAB script to generate the appropriate number of values converted to 8 bit hexadecimal values for both waveforms. The purpose of using the lookup table to store the values of the two waveforms is to compare each triangle value with the corresponding sine value. The result of the comparison is the value associated with the PWM signal. The number of total values for the sine wave is 150,000. A fully rectified sine wave only needs half the number of the predetermined values. In the software developed for this project, the maximum number of values required to generate a fully rectified sine wave at 1Hz is 37,500 because the lookup table can be read in ascending and descending order. The lookup table for the triangle wave contains the 50 values calculated using the MATLAB script. 4

8 Amplitude (V) Sine and Triangle Triangle (3kHz) Sine (30Hz) Time (ms) Fig. 5. Excel generated 3 khz triangle wave and 30 Hz sine wave from DAC and Op Amp circuitry output data recorded by an oscilloscope. Fig. 6. Oscilloscope plot of 60 Hz fully rectified sine wave (yellow), 3 khz triangle wave (blue), PWM signal from pin 1 (purple), and PMW signal from pin 2 (green). 2. Testing The generated triangle, sine, and PWM waveforms were displayed on an oscilloscope using a digital-to-analog converter (DAC) to permit viewing the PWM generation in real time. The digital data was first converted to an analog signal by using a DAC, and then an oscilloscope displayed the output of the amplified voltage from the LM741 Op Amp. The ability to view the waveforms generated by the microcontroller provided a means to experimentally verify that the software was performing as designed before applying the PWM outputs to the power electronic components. 3. Results The Excel plot in Fig. 5 was generated using data collected from an oscilloscope on the output of the DAC and Op Amp circuitry. The 3 khz triangle wave and 30 Hz sine wave were displayed as expected. 5

9 A PWM signal was created to control the power electronics. The PWM generation controller was designed to receive a user selected input frequency for the fully rectified sine wave and compare the selected frequency with a constant 3 [khz] triangle wave. The result of the comparison generates a high or low signal in the form of a PWM signal with a varying duty cycle. The fully rectified sine wave is compared with the triangle wave, and the active output pin alternates every half cycle. There is a small delay where both the pins are set low to ensure the power transistors are never on at the same time. B. Gate Drive Circuitry 1. Design Two Avago HCPL-3120 IGBT Gate Drive Optocoupler integrated circuit packages were used to make up high side and low side drivers. A gate drive with an optocoupler was selected to protect the Atmega128 board used for the PWM generation controller from high voltages used (or generated) in the DC-to-AC voltage inverter circuitry. Both driver integrated circuits used the same 18 V power supply. The high-side driver was used to switch the power transistor connected to the positive DC voltage rail in the half H-bridge circuit used for the DC-to-AC voltage inverter. The low-side driver was used to switch the power transistor connected to the negative DC voltage rail in the half H-bridge used for the DC-to-AC voltage inverter. 2. Testing The test circuit shown in Fig. 7 was used to determine whether or not the HCPL-3120 would amplify an input voltage to a usable level for hardware to be used in the DC-to-AC voltage inverter. A resistor value R D was computed to limit the diode current to pin 2 of the HCPL-3120 using a 5 V supply. A TTL input was supplied to pin 3 of the HCPL-3120 by the sync output of a function generator. A DC power supply was used to supply 5 V to pin 2 of the HCPL-3120, and a second DC power supply was used to supply 18 V to pin 8 of the HCPL Pin 5 was tied to ground, and pins 6 and 7 were tied together as suggested in the datasheets. An oscilloscope was used to measure the TTL input at pin 3 and the output of the gate driver at pin Results An oscilloscope was used to measure the TTL input to the gate driver and the HCPL-3120 output for the test circuit in Fig. 7 to display the plot shown in Fig. 8. Since the output of the HCPL-3120 reached 18 V, the test circuit verified that the HCPL-3120 gate driver amplified a 5 V input as expected. 5 V 18 V R D 1 HCPL V o TTL Open Collector Fig. 7. Test circuit used to verify that HCPL-3120 amplified an input voltage as desired with ground reference. 6

10 Fig. 8. Oscilloscope plot for the test circuit in Fig. 7 displaying the TTL input (dark blue) and output of the HCPL (light blue). C. DC-to-AC Voltage Inverter 1. Design A half H-bridge with 2 power transistors and bipolar supplies was designed to drive an inductive load. (The half H-bridge is shown in Fig. 11 and will be discussed later in this report.) The upper half PWM is generated from the output of the high side gate driver and the lower half PWM is generated from the output of the low side gate driver. For initial testing of the DC-to-AC voltage inverter, the low side driver test circuit shown in Fig. 9 was built first. The low side driver uses the output of the HCPL-3120 to provide a gate voltage for an IRF640 MOSFET. The value of the current-limiting diode R D is the same as before. Resistor values for the gate resistor R g and the load resistor R Load were computed to limit the maximum gate and load currents, respectively. 2. Testing For initial testing of the DC-to-AC voltage inverter, a low side driver test circuit shown in Fig. 9 was built. The low side driver used the output of the HCPL-3120 to provide a gate voltage for an IRF640 MOSFET. The gate resistor R g was computed so that the current through pins 6 and 7 of the HCPL-3120 did not exceed 2 A. The sync output of a function generator was used as a TTL input to pin 3 of the HCPL One DC power supply was used to supply 5 V to pin 2 of the HCPL A second DC power supply was used to supply 18 V to pin 8 of the HCPL-3120 and the drain of the IRF640 MOSFET. A wire-wound rheostat was used as an inductive load. A free-wheeling diode was placed across the inductive load to eliminate the sudden voltage spike seen across an inductive load when its supply voltage is suddenly reduced or removed. An oscilloscope was used to measure the TTL input, gate voltage of the IRF640 MOSFET, and load voltage. Since the load being driven is inductive, a turn-off snubber capacitor circuit was added to the low side driver test circuit to eliminate excessive transient over-voltages due to the forward recovery time of the free-wheeling diode across the inductive load. The low side driver test circuit with turn-off snubber capacitor circuit is shown in Fig. 10. Source current when the transistor begins to turn off, fall time for source current, switching period, and minimum duty cycle for which the transistor is on were considered 7

11 when values for R s and C s were computed. An oscilloscope was used to measure the TTL input, gate voltage to the IRF640 MOSFET, and load voltage. 18 V 5 V 18 V RLoad RD 1 HCPL Rg IRF640 TTL Open Collector Fig. 9. Low side driver test circuit with ground reference. 18 V RLoad 5 V 18 V RS RD 1 HCPL Rg IRF640 CS TTL Open Collector Fig. 10. Low side driver test circuit with ground reference and snubber capacitor circuit. 8

12 25 V 5 V R R D 1 HCPL Rg TTL Open Collector C BS R 5 V R D 1 HCPL R S 2 7 Rg C S TTL C BS -25 V Fig. 11. High and low side driver test circuit with bipolar DC supplies. Once testing of a low side driver with ground reference was complete, a test circuit with bipolar supplies to the half H-bridge was built as shown in Fig. 11. Since bipolar supplies were used, a bootstrap capacitor arrangement with a Zener diode was designed. A resistor R was computed such that the current through the resistor was limited enough to supply 18 V to pin 8 of the HCPL-3120 gate drivers without damaging the Zener diodes. One DC power supply was used to supply +25 V to the drain of the upper transistor of the half H-bridge. A second DC power supply was used to supply -25 V to the source of the lower transistor of the half H-bridge. High and low side drivers were tested independently of one another. To test the low side driver, the sync output of a function generator was used for the TTL input to pin 3 of the lower HCPL-3120 in Fig. 9. There was no connection to pin 3 of the upper HCPL To test the high side driver, the TTL input to pin 3 of the lower HCPL-3120 was disconnected and a TTL input was connected to pin 3 of the upper HCPL A wire-wound rheostat was used as an inductive load, and an oscilloscope was used to measure both the gate voltage of the respective IRF640 MOSFET to the driver being tested and the load voltage. 3. Results Figure 12 shows an oscilloscope plot of measurements made for the low side driver test circuit driving an inductive load as shown in Fig. 9. When the output of the HCPL-3120 goes high, the IRF640 MOSFET turns on and the load voltage goes to 0 V. When the output of the HCPL-3120 goes low, the IRF640 MOSFET turns off and the load voltage goes to 18 V as desired. The low side driver test circuit was also switching as desired. However, there was some voltage ripple in the output of the IRF640 output waveform. The test circuit in Fig. 10 with the snubber capacitor circuit was subsequently used to eliminate the voltage ripple. Figure 13 shows an oscilloscope plot of the measurements made for the low 9

13 side driver test circuit with snubber capacitor circuit shown in Fig. 10. It was found that the snubber capacitor circuit eliminates the voltage ripple at the output of the IRF640 MOSFET as desired. Fig. 12. Oscilloscope plot showing TTL input (dark blue), HCPL-3120 output (light blue), and load voltage (purple) for the low side driver test circuit in Fig. 9. Fig. 13. Oscilloscope plot showing TTL input (dark blue), HCPL-3120 output (light blue), and load voltage (purple) for the low side driver test circuit with snubber capacitor circuit in Fig

14 Fig. 14. Oscilloscope plot showing gate voltage (dark blue) and load voltage (light blue) for the low side driver in Fig. 11. Fig. 15. Oscilloscope plot showing gate voltage (dark blue) and load voltage (light blue) for the low side driver in Fig. 11. Figure 14 shows an oscilloscope plot when the circuit in Fig. 11 was tested as a low side driver. When the output of the HCPL-3120 goes high, the lower transistor in the half H-bridge turns on and the load voltage gets pulled to -25 V. When the output of the HCPL-3120 goes low, the lower transistor in the half H-bridge turns off. While the transistor is off, the bootstrap capacitor for the low side driver charges and the gate voltage to the transistor is at -7 V. The bootstrap capacitor arrangement for the low side driver switches the IRF640 MOSFET as desired. Figure 15 shows an oscilloscope plot of the circuit in Fig. 11 when tested as a high side driver. When the output of the HCPL-3120 goes high (approximately 40V), the upper transistor in the half H-bridge turns on and the load voltage gets pulled to 11

15 24 V. When the output of the HCPL-3120 goes low (i.e., the MOSFET gate is tied to its source), the upper transistor in the half H-bridge turns off and the bootstrap capacitor for the high side driver charges. While the upper transistor is off, the gate-to-source voltage for the transistor is 0 V. Testing confirmed the high side driver with bootstrap capacitor arrangement switches the IRF640 MOSFET as desired. IV. CONCLUSIONS A PWM generation controller was developed using software to generate a switched PWM waveform. The software successfully generated a sine and triangle wave from lookup tables and compared them to produce a switched PWM output on two separate output pins of an Atmega128 microcontroller. However, the software does not provide the proposed constant Volts/Hertz ratio. Hardware for gate drive circuitry and DC-to-AC voltage inverter was developed. High and low side drivers were tested independently of each other with bipolar DC supplies of ±25 V. For future work, hardware can be tested using the output of the PWM generation controller as the input to gate drive circuitry. Once the switched PWM based inverter is successfully implemented in hardware, modifications can be made to the hardware to provide for operation at 120 V RMS. The software for the PWM generation controller can also be adjusted to account for the desired constant Volts/Hertz ratio by modifying the switching period of the PWM signal. 12

16 V. REFERENCES [1] Introduction to AC Drives, [Online]. Available: /ITACDS-D.PDF [2] P. Novak. (2009). The Basics of Variable-Frequency Drives, [Online]. Available: [3] C. Hartman. (2014). What is a Variable Frequency Drive, [Online]. Available: [4] M. Spear. (2005). Drive up energy efficiency, [Online]. Available: /2005/489/ [5] K. Lemke and M. Pasternak. (2014). Variable Frequency AC Source, [Online]. Available: projects/proj2014/vfacs/deliverables/lemke_pasternak_project_proposal.pdf 13

Single-phase Variable Frequency Switch Gear

Single-phase Variable Frequency Switch Gear 1 Single-phase Variable Frequency Switch Gear Department of Electrical and Computer Engineering Eric Motyl and Leslie Zeman Advisor: Professor Steven D. Gutschlag April 21, 2016 2 Outline Introduction

More information

Single-phase Variable Frequency Switch Gear

Single-phase Variable Frequency Switch Gear Single-phase Variable Frequency Switch Gear Eric Motyl, Leslie Zeman Advisor: Professor Steven Gutschlag Department of Electrical and Computer Engineering Bradley University, Peoria, IL October 15, 2015

More information

Single-phase Variable Frequency Switch Gear

Single-phase Variable Frequency Switch Gear 1 Single-phase Variable Frequency Switch Gear Department of Electrical and Computer Engineering Eric Motyl and Leslie Zeman Advisor: Steven D. Gutschlag October 1, 2015 2 Outline Background Design Approach

More information

Single-phase Variable Frequency Switch Gear

Single-phase Variable Frequency Switch Gear 1 Single-phase Variable Frequency Switch Gear Department of Electrical and Computer Engineering Eric Motyl and Leslie Zeman Advisor: Professor Steven D. Gutschlag November 19, 2015 2 Outline Problem Description

More information

Variable Frequency AC Source

Variable Frequency AC Source Variable Frequency AC Source Functional Requirements List and Performance Specifications Students: Kevin Lemke Matthew Pasternak Advisor: Steven D. Gutschlag Date: November 15, 2013 1 Introduction: Variable

More information

Variable Frequency AC Source

Variable Frequency AC Source Variable Frequency AC Source Functional Description and Complete System Block Diagram Students: Kevin Lemke Matthew Pasternak Advisor: Steve Gutschlag Date: October 21, 2013 1 Introduction: Variable frequency

More information

Speed Control Of Transformer Cooler Control By Using PWM

Speed Control Of Transformer Cooler Control By Using PWM Speed Control Of Transformer Cooler Control By Using PWM Bhushan Rakhonde 1, Santosh V. Shinde 2, Swapnil R. Unhone 3 1 (assistant professor,department Electrical Egg.(E&P), Des s Coet / S.G.B.A.University,

More information

CHAPTER-5 DESIGN OF DIRECT TORQUE CONTROLLED INDUCTION MOTOR DRIVE

CHAPTER-5 DESIGN OF DIRECT TORQUE CONTROLLED INDUCTION MOTOR DRIVE 113 CHAPTER-5 DESIGN OF DIRECT TORQUE CONTROLLED INDUCTION MOTOR DRIVE 5.1 INTRODUCTION This chapter describes hardware design and implementation of direct torque controlled induction motor drive with

More information

Pulse-Width-Modulation Motor Speed Control with a PIC (modified from lab text by Alciatore)

Pulse-Width-Modulation Motor Speed Control with a PIC (modified from lab text by Alciatore) Laboratory 14 Pulse-Width-Modulation Motor Speed Control with a PIC (modified from lab text by Alciatore) Required Components: 1x PIC 16F88 18P-DIP microcontroller 3x 0.1 F capacitors 1x 12-button numeric

More information

Design and Applications of HCPL-3020 and HCPL-0302 Gate Drive Optocouplers

Design and Applications of HCPL-3020 and HCPL-0302 Gate Drive Optocouplers Design and Applications of HCPL-00 and HCPL-00 Gate Drive Optocouplers Application Note 00 Introduction The HCPL-00 (DIP-) and HCPL-00 (SO-) consist of GaAsP LED optically coupled to an integrated circuit

More information

6. HARDWARE PROTOTYPE AND EXPERIMENTAL RESULTS

6. HARDWARE PROTOTYPE AND EXPERIMENTAL RESULTS 6. HARDWARE PROTOTYPE AND EXPERIMENTAL RESULTS Laboratory based hardware prototype is developed for the z-source inverter based conversion set up in line with control system designed, simulated and discussed

More information

Lab 3 Power electronics

Lab 3 Power electronics 15-12-10 1(28) Lab 3 Power electronics Contents Introduction... 1 Initial setup... 2 Verifying correct LabVIEW interface with ELVIS... 2 Starting the LabVIEW software... 3 LabVIEW FB-Inverter control interface...

More information

Calhoon MEBA Engineering School. Study Guide for Proficiency Testing Industrial Electronics

Calhoon MEBA Engineering School. Study Guide for Proficiency Testing Industrial Electronics Calhoon MEBA Engineering School Study Guide for Proficiency Testing Industrial Electronics January 0. Which factors affect the end-to-end resistance of a metallic conductor?. A waveform shows three complete

More information

CONVERTING 1524 SWITCHING POWER SUPPLY DESIGNS TO THE SG1524B

CONVERTING 1524 SWITCHING POWER SUPPLY DESIGNS TO THE SG1524B LINEAR INTEGRATED CIRCUITS PS-5 CONVERTING 1524 SWITCHING POWER SUPPLY DESIGNS TO THE SG1524B Stan Dendinger Manager, Advanced Product Development Silicon General, Inc. INTRODUCTION Many power control

More information

MDSRC Proceedings, December, 2017 Wah/Pakistan

MDSRC Proceedings, December, 2017 Wah/Pakistan Three Phase Frequency Converter Quratulain Jamil 1, Hafiz Muhammad Ashraf Hayat 2, Haris Masood 3 1 Department of Electrical Engineering Wah Engineering College, University of Wah jamil0265@gmail.com 2

More information

CHAPTER 3 METHODOLOGY

CHAPTER 3 METHODOLOGY CHAPTER 3 METHODOLOGY 3.1 INTRODUCTION This chapter will explain about the flow chart of project, designing fuzzy logic controller and fuzzy logic algorithms. Next, it will explain electrical circuit design

More information

Micro-controller Based Three-phase Voltage Source Inverter for Alternative Energy Source. Abstract

Micro-controller Based Three-phase Voltage Source Inverter for Alternative Energy Source. Abstract Micro-controller Based Three-phase Voltage Source Inverter for Alternative Energy Source M.M. A. Rahman, Kurt Hammons, Phillip Beemer, Marcia Isserstedt, and Matt Trommater School of Engineering Padnos

More information

Chapter 8. Chapter 9. Chapter 6. Chapter 10. Chapter 11. Chapter 7

Chapter 8. Chapter 9. Chapter 6. Chapter 10. Chapter 11. Chapter 7 5.5 Series and Parallel Combinations of 246 Complex Impedances 5.6 Steady-State AC Node-Voltage 247 Analysis 5.7 AC Power Calculations 256 5.8 Using Power Triangles 258 5.9 Power-Factor Correction 261

More information

LS7362 BRUSHLESS DC MOTOR COMMUTATOR / CONTROLLER

LS7362 BRUSHLESS DC MOTOR COMMUTATOR / CONTROLLER LS7362 BRUSHLESS DC MOTOR COMMUTATOR / CONTROLLER FEATURES: Speed control by Pulse Width Modulating (PWM) only the low-side drivers reduces switching losses in level converter circuitry for high voltage

More information

EE 230 Lab Lab 9. Prior to Lab

EE 230 Lab Lab 9. Prior to Lab MOS transistor characteristics This week we look at some MOS transistor characteristics and circuits. Most of the measurements will be done with our usual lab equipment, but we will also use the parameter

More information

Application Note AN-3006 Optically Isolated Phase Controlling Circuit Solution

Application Note AN-3006 Optically Isolated Phase Controlling Circuit Solution www.fairchildsemi.com Application Note AN-3006 Optically Isolated Phase Controlling Circuit Solution Introduction Optocouplers simplify logic isolation from the ac line, power supply transformations, and

More information

Simulation Study of MOSFET Based Drive Circuit Design of Sensorless BLDC Motor for Space Vehicle

Simulation Study of MOSFET Based Drive Circuit Design of Sensorless BLDC Motor for Space Vehicle Simulation Study of MOSFET Based Drive Circuit Design of Sensorless BLDC Motor for Space Vehicle Rajashekar J.S. 1 and Dr. S.C. Prasanna Kumar 2 1 Associate Professor, Dept. of Instrumentation Technology,

More information

ECET Industrial Motor Control. Variable Frequency Drives. Electronic Motor Drives

ECET Industrial Motor Control. Variable Frequency Drives. Electronic Motor Drives ECET 4530 Industrial Motor Control Variable Frequency Drives Electronic Motor Drives Electronic motor drives are devices that control the speed, torque and/or rotational direction of electric motors. Electronic

More information

Design Document. Analog PWM Amplifier. Reference: DD00004

Design Document. Analog PWM Amplifier. Reference: DD00004 Grainger Center for Electric Machinery and Electromechanics Department of Electrical and Computer Engineering University of Illinois at Urbana-Champaign 1406 W. Green St. Urbana, IL 61801 Design Document

More information

MIC38C42A/43A/44A/45A

MIC38C42A/43A/44A/45A MIC38C42A/43A/44A/45A BiCMOS Current-Mode PWM Controllers General Description The MIC38C4xA are fixed frequency, high performance, current-mode PWM controllers. Micrel s BiCMOS devices are pin compatible

More information

INVESTIGATION OF GATE DRIVERS FOR SNUBBERLESS OVERVOLTAGE SUPPRESSION OF POWER IGBTS

INVESTIGATION OF GATE DRIVERS FOR SNUBBERLESS OVERVOLTAGE SUPPRESSION OF POWER IGBTS INVESTIGATION OF GATE DRIVERS FOR SNUBBERLESS OVERVOLTAGE SUPPRESSION OF POWER IGBTS Alvis Sokolovs, Iļja Galkins Riga Technical University, Department of Power and Electrical Engineering Kronvalda blvd.

More information

RAPID DESIGN KITS FOR THREE PHASE MOTOR DRIVES. Nicholas Clark Applications Engineer Powerex, Inc.

RAPID DESIGN KITS FOR THREE PHASE MOTOR DRIVES. Nicholas Clark Applications Engineer Powerex, Inc. by Nicholas Clark Applications Engineer Powerex, Inc. Abstract: This paper presents methods for quick prototyping of motor drive designs. The techniques shown can be used for a wide power range and demonstrate

More information

Embedded Test System. Design and Implementation of Digital to Analog Converter. TEAM BIG HERO 3 John Sopczynski Karim Shik-Khahil Yanzhe Zhao

Embedded Test System. Design and Implementation of Digital to Analog Converter. TEAM BIG HERO 3 John Sopczynski Karim Shik-Khahil Yanzhe Zhao Embedded Test System Design and Implementation of Digital to Analog Converter TEAM BIG HERO 3 John Sopczynski Karim Shik-Khahil Yanzhe Zhao EE 300W Section 1 Spring 2015 Big Hero 3 DAC 2 INTRODUCTION (KS)

More information

Phys Lecture 3. Power circuits how to control your motors Noise and Shielding

Phys Lecture 3. Power circuits how to control your motors Noise and Shielding Phys 253 - Lecture 3 Power circuits how to control your motors Noise and Shielding Digital-to-Analog Conversion PWM 2 D/A Conversion and power circuits When would you like to produce an output signal that

More information

Analysis of Solar PV Inverter based on PIC Microcontroller and Sinusoidal Pulse Width Modulation

Analysis of Solar PV Inverter based on PIC Microcontroller and Sinusoidal Pulse Width Modulation IJSRD - International Journal for Scientific Research & Development Vol. 4, Issue 08, 2016 ISSN (online): 2321-0613 Analysis of Solar PV Inverter based on PIC Microcontroller and Sinusoidal Pulse Width

More information

University of North Carolina-Charlotte Department of Electrical and Computer Engineering ECGR 3157 Electrical Engineering Design II Fall 2013

University of North Carolina-Charlotte Department of Electrical and Computer Engineering ECGR 3157 Electrical Engineering Design II Fall 2013 Exercise 1: PWM Modulator University of North Carolina-Charlotte Department of Electrical and Computer Engineering ECGR 3157 Electrical Engineering Design II Fall 2013 Lab 3: Power-System Components and

More information

EE 368 Electronics Lab. Experiment 10 Operational Amplifier Applications (2)

EE 368 Electronics Lab. Experiment 10 Operational Amplifier Applications (2) EE 368 Electronics Lab Experiment 10 Operational Amplifier Applications (2) 1 Experiment 10 Operational Amplifier Applications (2) Objectives To gain experience with Operational Amplifier (Op-Amp). To

More information

CHAPTER 7 MAXIMUM POWER POINT TRACKING USING HILL CLIMBING ALGORITHM

CHAPTER 7 MAXIMUM POWER POINT TRACKING USING HILL CLIMBING ALGORITHM 100 CHAPTER 7 MAXIMUM POWER POINT TRACKING USING HILL CLIMBING ALGORITHM 7.1 INTRODUCTION An efficient Photovoltaic system is implemented in any place with minimum modifications. The PV energy conversion

More information

Photovoltaic Power Converter

Photovoltaic Power Converter Students: Thomas Carley Luke Ketcham Brendan Zimmer Advisors: Dr. Woonki Na Dr. Brian Huggins Bradley University Department of Electrical Engineering 5/10/12 ii Table of Contents Abstract... iv Project

More information

results at the output, disrupting safe, precise measurements.

results at the output, disrupting safe, precise measurements. H Common-Mode Noise: Sources and Solutions Application Note 1043 Introduction Circuit designers often encounter the adverse effects of commonmode noise on a design. Once a common-mode problem is identified,

More information

Development of a Single-Phase PWM AC Controller

Development of a Single-Phase PWM AC Controller Pertanika J. Sci. & Technol. 16 (2): 119-127 (2008) ISSN: 0128-7680 Universiti Putra Malaysia Press Development of a Single-Phase PWM AC Controller S.M. Bashi*, N.F. Mailah and W.B. Cheng Department of

More information

CHAPTER IV DESIGN AND ANALYSIS OF VARIOUS PWM TECHNIQUES FOR BUCK BOOST CONVERTER

CHAPTER IV DESIGN AND ANALYSIS OF VARIOUS PWM TECHNIQUES FOR BUCK BOOST CONVERTER 59 CHAPTER IV DESIGN AND ANALYSIS OF VARIOUS PWM TECHNIQUES FOR BUCK BOOST CONVERTER 4.1 Conventional Method A buck-boost converter circuit is a combination of the buck converter topology and a boost converter

More information

OCR Electronics for A2 MOSFETs Variable resistors

OCR Electronics for A2 MOSFETs Variable resistors Resistance characteristic You are going to find out how the drain-source resistance R d of a MOSFET depends on its gate-source voltage V gs when the drain-source voltage V ds is very small. 1 Assemble

More information

Application Note AN-1052

Application Note AN-1052 Application Note AN-05 Using the IR7x Linear Current Sensing ICs By Jonathan Adams. Basic Functionality.... Bootstrap Circuit... 3. Retrieving Analog Current Signal at the Output... 3. Passive Filters...

More information

Multiple Instrument Station Module

Multiple Instrument Station Module Multiple Instrument Station Module Digital Storage Oscilloscope Vertical Channels Sampling rate Bandwidth Coupling Input impedance Vertical sensitivity Vertical resolution Max. input voltage Horizontal

More information

Scalable Regulated Three Phase Power Rectifier

Scalable Regulated Three Phase Power Rectifier Scalable Regulated Three Phase Power Rectifier ECE 481 Senior Design Final Presentation Tyler Budzianowski & Tao Nguyen Dec 7, 2004 Instructor: Dr. Jim Frenzel Technical Advisors: Dr. Herb Hess and Dr.

More information

Micro Controller Based Ac Power Controller

Micro Controller Based Ac Power Controller Wireless Sensor Network, 9, 2, 61-121 doi:1.4236/wsn.9.112 Published Online July 9 (http://www.scirp.org/journal/wsn/). Micro Controller Based Ac Power Controller S. A. HARI PRASAD 1, B. S. KARIYAPPA 1,

More information

Use of Advanced Unipolar SPWM Technique for Higher Efficiency High Power Applications

Use of Advanced Unipolar SPWM Technique for Higher Efficiency High Power Applications 2 nd International Conference on Multidisciplinary Research & Practice P a g e 161 Use of Advanced Unipolar SPWM Technique for Higher Efficiency High Power Applications Naman Jadhav, Dhruv Shah Institute

More information

A Subsidiary of Regal-Beloit Corporation. AC Inverter Terminology

A Subsidiary of Regal-Beloit Corporation. AC Inverter Terminology AP200-9/01 Acceleration The rate of change in velocity as a function of time. Acceleration usually refers to increasing velocity and deceleration to decreasing velocity. Acceleration Boost During acceleration,

More information

GCSE Electronics. Scheme of Work

GCSE Electronics. Scheme of Work GCSE Electronics Scheme of Work Week Topic Detail Notes 1 Practical skills assemble a circuit using a diagram recognize a component from its physical appearance (This is a confidence building/motivating

More information

CHAPTER 2 DESIGN AND MODELING OF POSITIVE BUCK BOOST CONVERTER WITH CASCADED BUCK BOOST CONVERTER

CHAPTER 2 DESIGN AND MODELING OF POSITIVE BUCK BOOST CONVERTER WITH CASCADED BUCK BOOST CONVERTER 17 CHAPTER 2 DESIGN AND MODELING OF POSITIVE BUCK BOOST CONVERTER WITH CASCADED BUCK BOOST CONVERTER 2.1 GENERAL Designing an efficient DC to DC buck-boost converter is very much important for many real-time

More information

ECET 211 Electric Machines & Controls Lecture 9-1 Adjustable-Speed Drives and PLC Installations (1 of 2)

ECET 211 Electric Machines & Controls Lecture 9-1 Adjustable-Speed Drives and PLC Installations (1 of 2) ECET 211 Electric Machines & Controls Lecture 9-1 Adjustable-Speed Drives (1 of 2) Text Book: Electric Motors and Control Systems, by Frank D. Petruzella, published by McGraw Hill, 2015. Paul I-Hai Lin,

More information

Features. 5V Reference UVLO. Oscillator S R

Features. 5V Reference UVLO. Oscillator S R MIC38C42/3/4/5 BiCMOS Current-Mode PWM Controllers General Description The MIC38C4x are fixed frequency, high performance, current-mode PWM controllers. Micrel s BiCMOS devices are pin compatible with

More information

Automotive Surge Suppression Devices Can Be Replaced with High Voltage IC

Automotive Surge Suppression Devices Can Be Replaced with High Voltage IC Automotive Surge Suppression Devices Can Be Replaced with High Voltage IC By Bruce Haug, Senior Product Marketing Engineer, Linear Technology Background Truck, automotive and heavy equipment environments

More information

Computer Controlled Curve Tracer

Computer Controlled Curve Tracer Computer Controlled Curve Tracer Christopher Curro The Cooper Union New York, NY Email: chris@curro.cc David Katz The Cooper Union New York, NY Email: katz3@cooper.edu Abstract A computer controlled curve

More information

PreLab 6 PWM Design for H-bridge Driver (due Oct 23)

PreLab 6 PWM Design for H-bridge Driver (due Oct 23) GOAL PreLab 6 PWM Design for H-bridge Driver (due Oct 23) The overall goal of Lab6 is to demonstrate a DC motor controller that can adjust speed and direction. You will design the PWM waveform and digital

More information

EE 330 Laboratory 8 Discrete Semiconductor Amplifiers

EE 330 Laboratory 8 Discrete Semiconductor Amplifiers EE 330 Laboratory 8 Discrete Semiconductor Amplifiers Fall 2018 Contents Objective:...2 Discussion:...2 Components Needed:...2 Part 1 Voltage Controlled Amplifier...2 Part 2 A Nonlinear Application...3

More information

Drives 101 Lesson 3. Parts of a Variable Frequency Drive (VFD)

Drives 101 Lesson 3. Parts of a Variable Frequency Drive (VFD) Drives 101 Lesson 3 Parts of a Variable Frequency Drive (VFD) This lesson covers the parts that make up the Variable Frequency Drive (VFD) and describes the basic operation of each part. Here is the basics

More information

ELG3336: Power Electronics Systems Objective To Realize and Design Various Power Supplies and Motor Drives!

ELG3336: Power Electronics Systems Objective To Realize and Design Various Power Supplies and Motor Drives! ELG3336: Power Electronics Systems Objective To Realize and Design arious Power Supplies and Motor Drives! Power electronics refers to control and conversion of electrical power by power semiconductor

More information

ECE1750, Spring dc-ac power conversion

ECE1750, Spring dc-ac power conversion ECE1750, Spring 2018 dc-ac power conversion (inverters) 1 H-Bridge Inverter Basics Creating AC from DC Single-phase H-bridge bid (voltage Switching rules source) inverter topology: Either A+ or A is closed,

More information

CHAPTER 3 SINGLE SOURCE MULTILEVEL INVERTER

CHAPTER 3 SINGLE SOURCE MULTILEVEL INVERTER 42 CHAPTER 3 SINGLE SOURCE MULTILEVEL INVERTER 3.1 INTRODUCTION The concept of multilevel inverter control has opened a new avenue that induction motors can be controlled to achieve dynamic performance

More information

CLD Application Notes Connection Options

CLD Application Notes Connection Options CLD Application Notes Connection Options Series Higher voltages may be obtained by connecting identical CLDs in series (Figure 4). Voltage balancing resistors are recommended. Since the resistors shunt

More information

PCB layout guidelines. From the IGBT team at IR September 2012

PCB layout guidelines. From the IGBT team at IR September 2012 PCB layout guidelines From the IGBT team at IR September 2012 1 PCB layout and parasitics Parasitics (unwanted L, R, C) have much influence on switching waveforms and losses. The IGBT itself has its own

More information

Renewable Energy Based Interleaved Boost Converter

Renewable Energy Based Interleaved Boost Converter Renewable Energy Based Interleaved Boost Converter Pradeepakumara V 1, Nagabhushan patil 2 PG Scholar 1, Professor 2 Department of EEE Poojya Doddappa Appa College of Engineering, Kalaburagi, Karnataka,

More information

AC Drives and Soft Starter Application Guide

AC Drives and Soft Starter Application Guide Feature AC Drives and Soft Starter Application Guide by Walter J Lukitsch PE, Gary Woltersdorf Jeff Theisen, and John Streicher Allen-Bradley Company Abstract: There are usually several choices for starting

More information

Electronic Concepts and Troubleshooting 101. Experiment 1

Electronic Concepts and Troubleshooting 101. Experiment 1 Electronic Concepts and Troubleshooting 101 Experiment 1 o Concept: What is the capacity of a typical alkaline 1.5V D-Cell? o TS: Assume that a battery is connected to a 20Ω load and the voltage across

More information

CURRENT CONTROLLER FOR INVERTER BRIDGE DESIGNED FOR GRID-CONNECTED PHOTOVOLTAIC SYSTEM

CURRENT CONTROLLER FOR INVERTER BRIDGE DESIGNED FOR GRID-CONNECTED PHOTOVOLTAIC SYSTEM University of Southern Queensland Faculty of Engineering and Surveying CURRENT CONTROLLER FOR INVERTER BRIDGE DESIGNED FOR GRID-CONNECTED PHOTOVOLTAIC SYSTEM A dissertation submitted by Alista Miletic

More information

Electronic PRINCIPLES

Electronic PRINCIPLES MALVINO & BATES Electronic PRINCIPLES SEVENTH EDITION Chapter 22 Nonlinear Op-Amp Circuits Topics Covered in Chapter 22 Comparators with zero reference Comparators with non-zero references Comparators

More information

CHAPTER 7 HARDWARE IMPLEMENTATION

CHAPTER 7 HARDWARE IMPLEMENTATION 168 CHAPTER 7 HARDWARE IMPLEMENTATION 7.1 OVERVIEW In the previous chapters discussed about the design and simulation of Discrete controller for ZVS Buck, Interleaved Boost, Buck-Boost, Double Frequency

More information

BME/ISE 3512 Bioelectronics. Laboratory Five - Operational Amplifiers

BME/ISE 3512 Bioelectronics. Laboratory Five - Operational Amplifiers BME/ISE 3512 Bioelectronics Laboratory Five - Operational Amplifiers Learning Objectives: Be familiar with the operation of a basic op-amp circuit. Be familiar with the characteristics of both ideal and

More information

Fluxgate Magnetometer

Fluxgate Magnetometer 6.101 Final Project Proposal Woojeong Elena Byun Jack Erdozain Farita Tasnim 7 April 2016 Fluxgate Magnetometer Motivation: A fluxgate magnetometer is a highly precise magnetic field sensor. Its typical

More information

CHAPTER 4 CONTROL ALGORITHM FOR PROPOSED H-BRIDGE MULTILEVEL INVERTER

CHAPTER 4 CONTROL ALGORITHM FOR PROPOSED H-BRIDGE MULTILEVEL INVERTER 65 CHAPTER 4 CONTROL ALGORITHM FOR PROPOSED H-BRIDGE MULTILEVEL INVERTER 4.1 INTRODUCTION Many control strategies are available for the control of IMs. The Direct Torque Control (DTC) is one of the most

More information

Experiment DC-DC converter

Experiment DC-DC converter POWER ELECTRONIC LAB Experiment-7-8-9 DC-DC converter Power Electronics Lab Ali Shafique, Ijhar Khan, Dr. Syed Abdul Rahman Kashif 10/11/2015 This manual needs to be completed before the mid-term examination.

More information

MOSFET as a Switch. MOSFET Characteristics Curves

MOSFET as a Switch. MOSFET Characteristics Curves MOSFET as a Switch MOSFET s make very good electronic switches for controlling loads and in CMOS digital circuits as they operate between their cut-off and saturation regions. We saw previously, that the

More information

3 Circuit Theory. 3.2 Balanced Gain Stage (BGS) Input to the amplifier is balanced. The shield is isolated

3 Circuit Theory. 3.2 Balanced Gain Stage (BGS) Input to the amplifier is balanced. The shield is isolated Rev. D CE Series Power Amplifier Service Manual 3 Circuit Theory 3.0 Overview This section of the manual explains the general operation of the CE power amplifier. Topics covered include Front End Operation,

More information

DOWNLOAD PDF POWER ELECTRONICS DEVICES DRIVERS AND APPLICATIONS

DOWNLOAD PDF POWER ELECTRONICS DEVICES DRIVERS AND APPLICATIONS Chapter 1 : Power Electronics Devices, Drivers, Applications, and Passive theinnatdunvilla.com - Google D Download Power Electronics: Devices, Drivers and Applications By B.W. Williams - Provides a wide

More information

A Series-Resonant Half-Bridge Inverter for Induction-Iron Appliances

A Series-Resonant Half-Bridge Inverter for Induction-Iron Appliances IEEE PEDS 2011, Singapore, 5-8 December 2011 A Series-Resonant Half-Bridge Inverter for Induction-Iron Appliances N. Sanajit* and A. Jangwanitlert ** * Department of Electrical Power Engineering, Faculty

More information

A Novel Single-Stage Push Pull Electronic Ballast With High Input Power Factor

A Novel Single-Stage Push Pull Electronic Ballast With High Input Power Factor 770 IEEE TRANSACTIONS ON INDUSTRIAL ELECTRONICS, VOL. 48, NO. 4, AUGUST 2001 A Novel Single-Stage Push Pull Electronic Ballast With High Input Power Factor Chang-Shiarn Lin, Member, IEEE, and Chern-Lin

More information

The Single-Phase PWM Inverter with Dual-Polarity DC Bus

The Single-Phase PWM Inverter with Dual-Polarity DC Bus Exercise 2 The Single-Phase PWM Inverter with Dual-Polarity DC Bus EXERCISE OBJECTIVE When you have completed this exercise, you will be familiar with the singlephase PWM inverter with dual-polarity dc

More information

LABORATORY 3 v1 CIRCUIT ELEMENTS

LABORATORY 3 v1 CIRCUIT ELEMENTS University of California Berkeley Department of Electrical Engineering and Computer Sciences EECS 100, Professor Bernhard Boser LABORATORY 3 v1 CIRCUIT ELEMENTS The purpose of this laboratory is to familiarize

More information

ECE1750, Spring Week 5 MOSFET Gate Drivers

ECE1750, Spring Week 5 MOSFET Gate Drivers ECE1750, Spring 2018 Week 5 MOSFET Gate Drivers 1 Power MOSFETs (a high-speed, voltage-controlled switch) D: Drain D If desired, a series blocking diode can be inserted here to prevent reverse current

More information

A Novel Simple Reliability Enhancement Switching Topology for Single Phase Buck-Boost Inverter

A Novel Simple Reliability Enhancement Switching Topology for Single Phase Buck-Boost Inverter A Novel Simple Reliability Enhancement Switching Topology for Single Phase Buck-Boost Inverter Snehal Balaji Gatkine 1 PG Scholar, 1 Department of Electrical Engineering, 1 Tulsiramji Gaikwad - Patil College

More information

Applications for Isolated Gate Drivers

Applications for Isolated Gate Drivers Applications for Isolated Gate Drivers Multiple Choice Quiz TI Precision Labs Isolation 1 1. must be used for the interface between high voltage and user-accessible circuitry (like connectors or communications

More information

10 AMP, 75V, 3 PHASE MOSFET BRUSHLESS MOTOR CONTROLLER

10 AMP, 75V, 3 PHASE MOSFET BRUSHLESS MOTOR CONTROLLER MILPRF3534 CERTIFIED FACILITY 10 AMP, 75V, 3 PHASE MOSFET BRUSHLESS 4363 MOTOR CONTROLLER M.S.KENNEDY CORP. 4707 Dey Road Liverpool, N.Y. 130 (315) 7016751 FEATURES: 75 Volt Motor Supply Voltage 10 Amp

More information

Group 1616B: Wireless Power Transfer. Brandon Conlon Juan Carlos Lluberes Tyler Hayslett Advisors: Peng Zhang & Taofeek Orekan

Group 1616B: Wireless Power Transfer. Brandon Conlon Juan Carlos Lluberes Tyler Hayslett Advisors: Peng Zhang & Taofeek Orekan Group 1616B: Wireless Power Transfer Brandon Conlon Juan Carlos Lluberes Tyler Hayslett Advisors: Peng Zhang & Taofeek Orekan System Overview Frequency adjustable subsea Resonant Wireless Power transfer

More information

ECE 363 EXAM #2 (F18) 4 problems for 100 pts Problem #1: Amplifier Output Error (25 pts)

ECE 363 EXAM #2 (F18) 4 problems for 100 pts Problem #1: Amplifier Output Error (25 pts) ECE 363 EXAM #2 (F18) NAME: 4 problems for 100 pts Problem #1: Amplifier Output Error (25 pts) Consider an optical communication link for an infrared remote control. A transmitter sends a train of infrared

More information

Single Phase Induction Motor Drive using Modified SEPIC Converter and Three Phase Inverter

Single Phase Induction Motor Drive using Modified SEPIC Converter and Three Phase Inverter Single Phase Induction Motor Drive using Modified SEPIC Converter and Three Phase Inverter Ajeesh P R PG Student, M. Tech Power Electronics, Mar Athanasius College of Engineering, Kerala, India, Dr. Babu

More information

Design & Implementation of PWM Based 3-Phase Switch-Mode Power Supply (SMPS)

Design & Implementation of PWM Based 3-Phase Switch-Mode Power Supply (SMPS) Design & Implementation of PWM Based 3-Phase Switch-Mode Power Supply (SMPS) Abstract This research work is on designing a PWM based SMPS instead of using conventional pulse generating pre-programmed chips.

More information

User s Manual. ACPL-339J Isolated Gate Driver Evaluation Board. Quick-Start. Testing Either Arm of The Half Bridge Inverter Driver (without IGBT)

User s Manual. ACPL-339J Isolated Gate Driver Evaluation Board. Quick-Start. Testing Either Arm of The Half Bridge Inverter Driver (without IGBT) ACPL-339J Isolated Gate Driver Evaluation Board User s Manual Quick-Start Visual inspection is needed to ensure that the evaluation board is received in good condition. The default connections of the evaluation

More information

Frequently Asked Questions (FAQs) MV1000 Drive

Frequently Asked Questions (FAQs) MV1000 Drive QUESTION 1. What is a conventional PWM Inverter? 2. What is a medium voltage inverter? 3. Are all MV inverters Voltage Source (VSI) design? 4. What is a Current Source Inverter (CSI)? 5. What output power

More information

Contents. Acknowledgments. About the Author

Contents. Acknowledgments. About the Author Contents Figures Tables Preface xi vii xiii Acknowledgments About the Author xv xvii Chapter 1. Basic Mathematics 1 Addition 1 Subtraction 2 Multiplication 2 Division 3 Exponents 3 Equations 5 Subscripts

More information

Experiment (1) Principles of Switching

Experiment (1) Principles of Switching Experiment (1) Principles of Switching Introduction When you use microcontrollers, sometimes you need to control devices that requires more electrical current than a microcontroller can supply; for this,

More information

Bradley University Department of Electrical and Computer Engineering Senior Capstone Project Active Suspension System (ACTSS)

Bradley University Department of Electrical and Computer Engineering Senior Capstone Project Active Suspension System (ACTSS) Bradley University Department of Electrical and Computer Engineering Senior Capstone Project Active Suspension System (ACTSS) Xander Serrurier, Josh Rose, Chase Ramseyer, Rhydon Vassay Project Advisor:

More information

An Improvement in the Virtually Isolated Transformerless Off - Line Power Supply

An Improvement in the Virtually Isolated Transformerless Off - Line Power Supply An Improvement in the Virtually Isolated Transformerless Off - Line Power Supply Spiros Cofinas Department of Electrotechnics and Computer Science Hellenic Naval Academy Terma Hatzikyriakou, Piraeus GREECE

More information

Lecture 4 ECEN 4517/5517

Lecture 4 ECEN 4517/5517 Lecture 4 ECEN 4517/5517 Experiment 3 weeks 2 and 3: interleaved flyback and feedback loop Battery 12 VDC HVDC: 120-200 VDC DC-DC converter Isolated flyback DC-AC inverter H-bridge v ac AC load 120 Vrms

More information

EUP V/12V Synchronous Buck PWM Controller DESCRIPTION FEATURES APPLICATIONS. Typical Application Circuit. 1

EUP V/12V Synchronous Buck PWM Controller DESCRIPTION FEATURES APPLICATIONS. Typical Application Circuit. 1 5V/12V Synchronous Buck PWM Controller DESCRIPTION The is a high efficiency, fixed 300kHz frequency, voltage mode, synchronous PWM controller. The device drives two low cost N-channel MOSFETs and is designed

More information

Bi-Directional DC Motor Speed Controller 5-32Vdc (3166v2)

Bi-Directional DC Motor Speed Controller 5-32Vdc (3166v2) General Guidelines for Electronic Kits and Assembled Modules Thank you for choosing one of our products. Please take some time to carefully read the important information below concerning use of this product.

More information

A Highly Versatile Laboratory Setup for Teaching Basics of Power Electronics in Industry Related Form

A Highly Versatile Laboratory Setup for Teaching Basics of Power Electronics in Industry Related Form A Highly Versatile Laboratory Setup for Teaching Basics of Power Electronics in Industry Related Form JOHANN MINIBÖCK power electronics consultant Purgstall 5 A-3752 Walkenstein AUSTRIA Phone: +43-2913-411

More information

Testing and Verification Waveforms of a Small DRSSTC. Part 1. Steven Ward. 6/24/2009

Testing and Verification Waveforms of a Small DRSSTC. Part 1. Steven Ward.  6/24/2009 Testing and Verification Waveforms of a Small DRSSTC Part 1 Steven Ward www.stevehv.4hv.org 6/24/2009 Power electronics, unlike other areas of electronics, can be extremely critical of small details, since

More information

Application Note AN-1075

Application Note AN-1075 Application Note AN-1075 Obtaining Low THD and high PF without A PFC By Cecilia Contenti and Peter Green Table of Contents Page I. Introduction...1 II. Test Results...1 III. Electrical Circuit...2 IV.

More information

CHAPTER 3 APPLICATION OF THE CIRCUIT MODEL FOR PHOTOVOLTAIC ENERGY CONVERSION SYSTEM

CHAPTER 3 APPLICATION OF THE CIRCUIT MODEL FOR PHOTOVOLTAIC ENERGY CONVERSION SYSTEM 63 CHAPTER 3 APPLICATION OF THE CIRCUIT MODEL FOR PHOTOVOLTAIC ENERGY CONVERSION SYSTEM 3.1 INTRODUCTION The power output of the PV module varies with the irradiation and the temperature and the output

More information

Effects of Initial Conditions in a DRSSTC. Steven Ward. 6/26/09

Effects of Initial Conditions in a DRSSTC. Steven Ward.   6/26/09 Effects of Initial Conditions in a DRSSTC Steven Ward www.stevehv.4hv.org 6/26/09 The DRSSTC is based on the idea that the initial conditions of the tank circuit are that the primary inductor has zero

More information

Design of a Wide Input Range DC-DC Converter Suitable for Lead-Acid Battery Charging

Design of a Wide Input Range DC-DC Converter Suitable for Lead-Acid Battery Charging ENGINEER - Vol. XXXXIV, No. 04, pp, [47-53], 2011 The Institution of Engineers, Sri Lanka Design of a Wide Input Range DC-DC Converter Suitable for Lead-Acid Battery Charging M.W.D.R. Nayanasiri and J.A.K.S.Jayasinghe,

More information

Features MIC5022 C TH. Sense H+ C TL. Sense L. DC Motor Control Application

Features MIC5022 C TH. Sense H+ C TL. Sense L. DC Motor Control Application MIC0 MIC0 Half-Bridge MOSFET Driver Not Recommended for New Designs General Description The MIC0 half-bridge MOSFET driver is designed to operate at frequencies up to 00kHz (khz PWM for % to 00% duty cycle)

More information

Capacitive Touch Sensing Tone Generator. Corey Cleveland and Eric Ponce

Capacitive Touch Sensing Tone Generator. Corey Cleveland and Eric Ponce Capacitive Touch Sensing Tone Generator Corey Cleveland and Eric Ponce Table of Contents Introduction Capacitive Sensing Overview Reference Oscillator Capacitive Grid Phase Detector Signal Transformer

More information