Digital Power: Definition

Size: px
Start display at page:

Download "Digital Power: Definition"

Transcription

1 Digital Power: New Solutions and New Problems Texas Instruments Dave Freeman Digital Power Forum Digital Power: Definition Digital Power is digitally controlled power products that provide configuration, monitoring, and supervisory functions which extends to full loop control Other definitions include digital methods that address efficiency of the power conversion and are mostly focused on switching loss, for example Predictive Gate Delay. 2 1

2 Analog versus Digital Power The principal difference is the format of the parameters that are used in operating the power supply Analog components typically consist of comparators and amplifiers Signals are kept analog as long as practical Configuration values are usually set using passive analog components such as resistors and capacitors Digital components typical consist of data converters and timers Signals are typically converted to digital data as soon as practical Configuration values are usually set using data memory and may be non-volatile or volatile 3 What drives the digital decision? Communication is a very important driver when deciding to go Digital Providing a digital communication interface allows a host or system level processor to control and monitor the power supply This digital interface helps raise the hood and provides entry of other digital task to be added Complex control algorithms make digital methods attractive Complex phase relationships between power stages Non-linear control Adaptive control law schemes 4 2

3 Digital Configuration Digital Configuration uses a digital memory to retain the power supply configuration parameters The parameters consists of thresholds, calibration values, control values and may also include specialized manufacturing information These values may be loaded during manufacture or during system startup The initialization for these parameters are typically stored in nonvolatile memory such as EPROM or FLASH The parameters are typically communicated over a communication bus, such as I2C 5 Digital Monitoring Power supply monitoring has a wide performance range. Temperature monitoring is perhaps the least demanding as far as speed. < 10 SPS is ok. The resolution resulting in 1 C measurement is typical fine for threshold detection. Higher resolution may be needed if thermal modeling is required Voltage monitoring may be either for average voltage reporting or voltage threshold detection. Average voltage values can be determined by integrating converters Conversion speed of <100KSPS is adequate for most application including typical loop control. 10 bit resolution is satisfactory for many applications and in general has a small dynamic range for DC/DC converters Measurement system calibration may be required to minimize errors due to the ADC reference and signal offset Current is the most demanding monitoring. Average values for current monitoring can be determined by integrating converters Average current mode loop control may require 1us conversion time and a wide dynamic range 6 3

4 Types of High Speed Analog Data Converters SAR DELTA SIGMA Pipelined 7 Analog Data Converters Resolution (Bits) Delta Sigma SAR Pipeline E+00 1.E+01 1.E+02 1.E+03 1.E+04 1.E+05 1.E+06 1.E+07 1.E+08 1.E+09 Maximum Sample Rate (Samples/Second) 8 4

5 Analog Converter Speed versus Power Delta Sigma SAR Pipeline E E E E+03 1.E E E E+07 1.E E E+10 Speed (Samples/Second * Resolution) 9 Digital PWM The digital PWM found on most controllers or processors consists of clock driven counters and digital comparators The digital PWM provides finite resolution of one clock cycle 1 MHz clock provides 1 us duty cycle resolution Higher duty cycle resolution on digital PWM requires a faster clock and more power, ~FCV^2 F is the base clock frequency C is related to the number of gates the clock must propagate through V is the supply voltage for the clock logic 10 5

6 Voltage Mode Control Law Voltage Mode Control Computation Flow: Vref Vout DC/DC Dprd ( n) = Vref ( n) Vout( n) e dsat( n) = min d( n) max (2 Pole / 2 Zero) Dprd = dsat( n) PWMPRD ( n 2) + a1 d( n 1) + b2 e( n 2) + b1 e( n 1) + b e( n) d ( n) = a2 d 0 11 Control Law Implementation 32 Bit DSP Delay Buffer y(n-2) y(n-1) e(n) e(n-1) e(n-2) 32 bit math 2 pole / 2 zero Saturation control Coefficients a2 a1 b0 b1 b2 ; e(n)=vref-vout MOVU ACC,@Vref SUBU ACC,*XAR2++ LSL ACC,#8 ; ACC=e(n) (Q24) ZAPA ; Voltage control law MOVL XT,@VCNTL_DBUFF+8 ; XT=e(n-2) QMPYAL P,XT,*XAR7++ ; b2*e(n-2) MOVDL XT,@VCNTL_DBUFF+6 ; XT=e(n-1), e(n-2)=e(n-1) MPYAL P,XT,*XAR7++ ; ACC=b2*e(n-2) P=b1*e(n-1) MOVDL XT,@VCNTL_DBUFF+4 QMPYAL P,XT,*XAR7++ MOVL XT,@VCNTL_DBUFF+2 ; XT=u(n-2) QMPYAL P,XT,*XAR7++ ; P=a2*u(n-2) MOVDL XT,@VCNTL_DBUFF ; XT=u(n-1), u(n-2)=u(n-1) QMPYAL P,XT,*XAR7++ ; ACC=a2*u(n-2) ADDL ACC,P ; ACC=a2*u(n-2)+ a1*u(n-1) LSL ACC,#(23-VCNTL_QFMAT+8) ; (Q23) ADDL ACC,ACC ; ACC=u(n) (Q24) ; Saturate the result [min,max] MINL ACC,*XAR7++ MAXL ACC,*XAR7++ ; Duty Cycle Modulation MOVL XT,ACC QMPYL P,XT,*XAR7++ MOV *XAR3++,P ;(Q0) 12 6

7 Microcontroller 8 Bit multiply: y(n-2) y(n-1) e(n) e(n-1) e(n-2) a2 a1 b0 b1 b2 MUL a,r3,r0 ;BH * AL MOVE r3,a MUL a,r2,r1 ;BL * AH ADD r1,r3,a MUL r2,r0 ;BL * AL MOVE r0,a ADD r1,r2 RET ; en = Vref - Vout; MOVE r0,vref+1 ;<Vout-1> SUBS r0,vout+1 ;<Vout+1> MOVE r1,vref ;<Vref> SUBSC r1,vref+1 ;<Vref+1> ; yn += b0*en, en1 = en; MOVE r2,b0+1 ;<b0+1> MOVE r3,b0 ;<b0> MOVE en1+1,r0 ;<en1+1> MOVE en1,r1 ;<en1> CALL multiply ;multiply ADD i0l,r0 ;<yn+1> ADDC i0h,r1 ;<yn> ; yn = yn>=0? yn : 0; TSTPAT i0h,#0x80 JZS ctl1 MOVE i0l,#0x0 ; <yn+1> MOVE i0h,#0x0 ; yn = yn<=100? yn : 100; ctl1: CMPA i0h,#0 JNE ctl2 CMP i0l,#100 ctl2: JLE ctl3 MOVE i0l,#0x100 ; <yn+1> MOVE i0h,#0 ; <yn>; yn1 = yn MOVE yn+1,i0l ;<yn+1> MOVE yn,i0h ;<yn> RETS Total 103 cycles if no clipping takes place, if clipping then 105 cycles (at 8MHZ, this is 12.3 us) 13 Microcontroller 16 Bit mov.w &vref,r4 ;r4 = e(n) rla.w r4 rla.w r4 rla.w r4 ;Q15 ;voltage control law y(n-2) y(n-1) e(n) e(n-1) e(n-2) a2 a1 b0 b1 b2 Total time estimate is about 28us with multiplier, without the multiplier the 82us. mov.w &vcntl_dbuff+8,&mpys ;e(n-2) to multiplier ;*b2 mov.w &vcntl_dbuff+6,r7 ;e(n-1) mov.w r7,&macs ;e(n-1) to multiplier with accumulate mov.w r7,&vcntl_dbuff+8 ;e(n-2) = e(n-1) ;*b1 mov.w r4,&macs ;e(n) to multiplier with accumulate ;was left in r4, remember? mov.w r4,&vcntl_dbuff+6 ;e(n-1) = e(n) ;*b0 mov.w &vcntl_dbuff+2,&macs ;y(n-2) ;*a2 mov.w &vcntl_dbuff,r7 ;y(n-1) mov.w r7,&macs ;y(n-1) to multiplier mov.w r7,&vcntl_dbuff+2 ;y(n-2) = y(n-1) ;*a1 mov.w &RESHI,r4 ;y(n) rla.w r4 ;Q15 mov.w r4,&vcntl_dbuff ;y(n-1) = y(n) ;compare to maximum jl check_minimum ;if less than maximum, jump ;above maximum, convert to jmp control_law_done ;done check_minimum incd.w r6 ;point r6 at minimum ;compare to minimum jge control_law_done ;if greater than minimum, jump ;below minimum, convert to minimum control_law_done ;duty cycle modulation mov.w r4,mpys ;y(n) mov.w modulation_factor,op2 ;use absolute addressing, r6 unpredictable at this point mov.w RESHI,0(r8) ;store modulation factor. incd.w r8 ;point to next word 14 7

8 32Bit DSP Example 1.8V, IDDIO IDD3VFL, 3.3V 15 Low Power Microcontroller Example 16 8

9 System Interface: Software Derived There are three popular system physical interface protocols Type Dallas One-Wire I2C SMBus Connections 1 Bidirectional line 2 Bidirectional lines 2 Bidirectional lines Code Requirement (relative number of instructions) For I2C, if there is no clock stretch by the slave device then there is 1 bidirectional line and 1 unidirectional line For SMBus, if there is no clock stretch and no multi-master then there is 1 bidirectional line and 1 unidirectional line 17 Isolated Interface Bidirectional Isolated Interface Unidirectional Isolated Interface Single wire communication provides for simple routing but bidirectional requirements need dual optocouplers. 18 9

10 Multiple Power Stage Control It is desirable to control multiple power stages from a single processor if the processor resources allow The power stages will most likely be located away from the controller Feedback signal may require isolation Ground elevation may require differential sense PWM output to the driver may require careful routing to noise on the analog signals Routing high speed digital signals are everyday requirements Driver input impedance needs to be considered Routing of the feedback signals using digital information may be the best choice 19 Summary Communication with power supplies open up the possibilities for digital power Complex control algorithms can be implemented digitally but the digital resources need to be available ADC needs the bandwidth and the resolution Power may become an issue Differential measurements may be required PWM resolution may require high speed clocks Power can also become an issue Practical digital designs with high degrees of flexibility may require power application specific solutions 20 10

C2000 Digital Power Supply Workshop

C2000 Digital Power Supply Workshop C2000 Digital Power Supply Workshop Texas Instruments Technical Training D SP TEXAS INSTRUMENTS TECHNOLOGY Copyright 2008 Texas Instruments. All rights reserved. Introduction to Digital Power Supply Design

More information

Data Converters. Lecture Fall2013 Page 1

Data Converters. Lecture Fall2013 Page 1 Data Converters Lecture Fall2013 Page 1 Lecture Fall2013 Page 2 Representing Real Numbers Limited # of Bits Many physically-based values are best represented with realnumbers as opposed to a discrete number

More information

Linear Integrated Circuits

Linear Integrated Circuits Linear Integrated Circuits Single Slope ADC Comparator checks input voltage with integrated reference voltage, V REF At the same time the number of clock cycles is being counted. When the integrator output

More information

Increasing Performance Requirements and Tightening Cost Constraints

Increasing Performance Requirements and Tightening Cost Constraints Maxim > Design Support > Technical Documents > Application Notes > Power-Supply Circuits > APP 3767 Keywords: Intel, AMD, CPU, current balancing, voltage positioning APPLICATION NOTE 3767 Meeting the Challenges

More information

Optimizing System Operation Using a Flexible Digital PWM Controller

Optimizing System Operation Using a Flexible Digital PWM Controller Optimizing System Operation Using a Flexible Digital PWM Controller Ka Leung Silicon Laboratories Inc. 7000 West William Cannon Drive, Austin, TX 78735 Email: Ka.leung@silabs.com Abstract - This paper

More information

LINEAR IC APPLICATIONS

LINEAR IC APPLICATIONS 1 B.Tech III Year I Semester (R09) Regular & Supplementary Examinations December/January 2013/14 1 (a) Why is R e in an emitter-coupled differential amplifier replaced by a constant current source? (b)

More information

ISSN:

ISSN: 1391 DESIGN OF 9 BIT SAR ADC USING HIGH SPEED AND HIGH RESOLUTION OPEN LOOP CMOS COMPARATOR IN 180NM TECHNOLOGY WITH R-2R DAC TOPOLOGY AKHIL A 1, SUNIL JACOB 2 1 M.Tech Student, 2 Associate Professor,

More information

Hello, and welcome to this presentation of the STM32 Digital Filter for Sigma-Delta modulators interface. The features of this interface, which

Hello, and welcome to this presentation of the STM32 Digital Filter for Sigma-Delta modulators interface. The features of this interface, which Hello, and welcome to this presentation of the STM32 Digital Filter for Sigma-Delta modulators interface. The features of this interface, which behaves like ADC with external analog part and configurable

More information

Analog to Digital Conversion

Analog to Digital Conversion Analog to Digital Conversion Florian Erdinger Lehrstuhl für Schaltungstechnik und Simulation Technische Informatik der Uni Heidelberg VLSI Design - Mixed Mode Simulation F. Erdinger, ZITI, Uni Heidelberg

More information

Working with ADCs, OAs and the MSP430

Working with ADCs, OAs and the MSP430 Working with ADCs, OAs and the MSP430 Bonnie Baker HPA Senior Applications Engineer Texas Instruments 2006 Texas Instruments Inc, Slide 1 Agenda An Overview of the MSP430 Data Acquisition System SAR Converters

More information

Universal Input Switchmode Controller

Universal Input Switchmode Controller Universal Input Switchmode Controller Si9120 FEATURES 10- to 0- Input Range Current-Mode Control 12-mA Output Drive Internal Start-Up Circuit Internal Oscillator (1 MHz) and DESCRIPTION The Si9120 is a

More information

Analog I/O. ECE 153B Sensor & Peripheral Interface Design Winter 2016

Analog I/O. ECE 153B Sensor & Peripheral Interface Design Winter 2016 Analog I/O ECE 153B Sensor & Peripheral Interface Design Introduction Anytime we need to monitor or control analog signals with a digital system, we require analogto-digital (ADC) and digital-to-analog

More information

INTEGRATED CIRCUITS. AN109 Microprocessor-compatible DACs Dec

INTEGRATED CIRCUITS. AN109 Microprocessor-compatible DACs Dec INTEGRATED CIRCUITS 1988 Dec DAC products are designed to convert a digital code to an analog signal. Since a common source of digital signals is the data bus of a microprocessor, DAC circuits that are

More information

Chapter 2. Operational Amplifiers

Chapter 2. Operational Amplifiers Chapter 2. Operational Amplifiers Tong In Oh 1 Objective Terminal characteristics of the ideal op amp How to analyze op amp circuits How to use op amps to design amplifiers How to design more sophisticated

More information

Hot Swap Controller Enables Standard Power Supplies to Share Load

Hot Swap Controller Enables Standard Power Supplies to Share Load L DESIGN FEATURES Hot Swap Controller Enables Standard Power Supplies to Share Load Introduction The LTC435 Hot Swap and load share controller is a powerful tool for developing high availability redundant

More information

AP1511A / B IR Filter Switch Driver

AP1511A / B IR Filter Switch Driver AP1511A / B with one-shot output for IR-Cut Removable (ICR) ANAPEX TECHNOLOGY INC. 2F -1, No.5, Tai-Yuen 1st St., Jhubei City, Hsinchu 30265, Taiwan, R.O.C. Agent: AENEAS ELECTRONICS CO.,LTD. Tel: +886-2-87974259

More information

Digital Power: Consider The Possibilities

Digital Power: Consider The Possibilities Power: Consider The Possibilities Joseph G Renauer Michael G. Amaro David Figoli Texas Instruments 1 The Promise of Power Accuracy and precision No drift Unit to unit uniformity Programmable performance

More information

Design And Simulation Of First Order Sigma Delta ADC In 0.13um CMOS Technology Jaydip H. Chaudhari PG Student L. C. Institute of Technology, Bhandu

Design And Simulation Of First Order Sigma Delta ADC In 0.13um CMOS Technology Jaydip H. Chaudhari PG Student L. C. Institute of Technology, Bhandu Design And Simulation Of First Order Sigma Delta ADC In 0.13um CMOS Technology Jaydip H. Chaudhari PG Student L. C. Institute of Technology, Bhandu Gireeja D. Amin Assistant Professor L. C. Institute of

More information

Chapter 2 Signal Conditioning, Propagation, and Conversion

Chapter 2 Signal Conditioning, Propagation, and Conversion 09/0 PHY 4330 Instrumentation I Chapter Signal Conditioning, Propagation, and Conversion. Amplification (Review of Op-amps) Reference: D. A. Bell, Operational Amplifiers Applications, Troubleshooting,

More information

Volterra. VT1115MF Pulse Width Modulation (PWM) Controller. Partial Circuit Analysis

Volterra. VT1115MF Pulse Width Modulation (PWM) Controller. Partial Circuit Analysis Volterra VT1115MF Pulse Width Modulation (PWM) Controller Partial Circuit Analysis For questions, comments, or more information about this report, or for any additional technical needs concerning semiconductor

More information

MOS (PTY) LTD. E Single Channel PIR Signal Processor. Applications. General Description. Features. Digital Sensor Assembly with E931.

MOS (PTY) LTD. E Single Channel PIR Signal Processor. Applications. General Description. Features. Digital Sensor Assembly with E931. General Description The integrated circuit is designed for interfacing Passive Infra Red (PIR) sensors with micro-controllers or processors. A single wire Data Out, Clock In (DOCI) interface is provided

More information

ACPL Data Sheet. Three-Channel Digital Filter for Sigma-Delta Modulators. Description. Features. Specifications.

ACPL Data Sheet. Three-Channel Digital Filter for Sigma-Delta Modulators. Description. Features. Specifications. Data Sheet ACPL-0873 Three-Channel Digital Filter for Sigma-Delta Modulators Description The ACPL-0873 is a 3-channel digital filter designed specifically for Second Order Sigma-Delta Modulators in voltage

More information

Pin 19 GPIO. Counters/Delay Generators CNT1 CNT2 CNT3 CNT4 CNT5 CNT6 CNT7 CNT8 CNT9. DFF/Latches. Pin 15 GPIO DFF0 DFF1 DFF2 DFF3 DFF4

Pin 19 GPIO. Counters/Delay Generators CNT1 CNT2 CNT3 CNT4 CNT5 CNT6 CNT7 CNT8 CNT9. DFF/Latches. Pin 15 GPIO DFF0 DFF1 DFF2 DFF3 DFF4 GreenPAK Programmable Mixed-signal Matrix Features Logic & Mixed Signal Circuits Highly Versatile Macro Cells Read Back Protection (Read Lock) 1.8V (±5%) to 5V (±10%) Supply Operating Temperature Range:

More information

DESCRIPTION FEATURES APPLICATIONS TYPICAL APPLICATION. 500KHz, 18V, 2A Synchronous Step-Down Converter

DESCRIPTION FEATURES APPLICATIONS TYPICAL APPLICATION. 500KHz, 18V, 2A Synchronous Step-Down Converter DESCRIPTION The is a fully integrated, high-efficiency 2A synchronous rectified step-down converter. The operates at high efficiency over a wide output current load range. This device offers two operation

More information

Digital Logic, Algorithms, and Functions for the CEBAF Upgrade LLRF System Hai Dong, Curt Hovater, John Musson, and Tomasz Plawski

Digital Logic, Algorithms, and Functions for the CEBAF Upgrade LLRF System Hai Dong, Curt Hovater, John Musson, and Tomasz Plawski Digital Logic, Algorithms, and Functions for the CEBAF Upgrade LLRF System Hai Dong, Curt Hovater, John Musson, and Tomasz Plawski Introduction: The CEBAF upgrade Low Level Radio Frequency (LLRF) control

More information

Designing High Power Parallel Arrays with PRMs

Designing High Power Parallel Arrays with PRMs APPLICATION NOTE AN:032 Designing High Power Parallel Arrays with PRMs Ankur Patel Applications Engineer August 2015 Contents Page Introduction 1 Arrays for Adaptive Loop / Master-Slave Operation 1 High

More information

High Speed PWM Controller

High Speed PWM Controller High Speed PWM Controller application INFO available FEATURES Compatible with Voltage or Current Mode Topologies Practical Operation Switching Frequencies to 1MHz 50ns Propagation Delay to Output High

More information

Current Mode PWM Controller

Current Mode PWM Controller application INFO available UC1842/3/4/5 Current Mode PWM Controller FEATURES Optimized For Off-line And DC To DC Converters Low Start Up Current (

More information

Regulating Pulse Width Modulators

Regulating Pulse Width Modulators Regulating Pulse Width Modulators UC1525A/27A FEATURES 8 to 35V Operation 5.1V Reference Trimmed to ±1% 100Hz to 500kHz Oscillator Range Separate Oscillator Sync Terminal Adjustable Deadtime Control Internal

More information

MICROPROCESSORS AND MICROCONTROLLER 1

MICROPROCESSORS AND MICROCONTROLLER 1 MICROPROCESSORS AND MICROCONTROLLER 1 Microprocessor Applications Data Acquisition System Data acquisition is the process of sampling signals that measure real world physical conditions ( such as temperature,

More information

FXWA9306 Dual Bi-Directional I 2 C-Bus and SMBus Voltage- Level Translator

FXWA9306 Dual Bi-Directional I 2 C-Bus and SMBus Voltage- Level Translator FXWA9306 Dual Bi-Directional I 2 C-Bus and SMBus Voltage- Level Tralator Features 2-Bit Bi-Directional Tralator for SDA and SCL Lines in Mixed-Mode I 2 C-Bus Applicatio Standard-Mode, Fast-Mode, and Fast-Mode-Plus

More information

Digital mw meter. 1. Functioning VHF COMMUNICATIONS 2/2003. Alexander Meier, DG6RBP

Digital mw meter. 1. Functioning VHF COMMUNICATIONS 2/2003. Alexander Meier, DG6RBP Alexander Meier, DG6RBP Digital mw meter The revised version of a digital mw meter [1] is described below. Almost any diode detectors not needing a Townsend current can be used as sensors for this equipment.

More information

Welcome. High Efficiency SMPS with Digital Loop Control

Welcome. High Efficiency SMPS with Digital Loop Control Welcome High Efficiency SMPS with Digital Loop Control Presenter: Walter Mosa Company: MagneTek IBM Power and Cooling Technology Symposium September 20-21st FE 1U 800-12 High Density AC/DC Front-End Design

More information

EUP A,30V,1.2MHz Step-Down Converter DESCRIPTION FEATURES APPLICATIONS. Typical Application Circuit

EUP A,30V,1.2MHz Step-Down Converter DESCRIPTION FEATURES APPLICATIONS. Typical Application Circuit 1.2A,30V,1.2MHz Step-Down Converter DESCRIPTION The is current mode, step-down switching regulator capable of driving 1.2A continuous load with excellent line and load regulation. The can operate with

More information

Improving Loop-Gain Performance In Digital Power Supplies With Latest- Generation DSCs

Improving Loop-Gain Performance In Digital Power Supplies With Latest- Generation DSCs ISSUE: March 2016 Improving Loop-Gain Performance In Digital Power Supplies With Latest- Generation DSCs by Alex Dumais, Microchip Technology, Chandler, Ariz. With the consistent push for higher-performance

More information

Dual Bidirectional I 2 C-Bus and SMBus Voltage-Level Translator UM3212M8 MSOP8 UM3212DA DFN

Dual Bidirectional I 2 C-Bus and SMBus Voltage-Level Translator UM3212M8 MSOP8 UM3212DA DFN Dual Bidirectional I 2 C-Bus and SMBus Voltage-Level Translator UM3212M8 MSOP8 UM3212DA DFN8 2.1 1.6 General Description The UM3212 is a dual bidirectional I 2 C-bus and SMBus voltage-level translator

More information

FAN5602 Universal (Step-Up/Step-Down) Charge Pump Regulated DC/DC Converter

FAN5602 Universal (Step-Up/Step-Down) Charge Pump Regulated DC/DC Converter August 2009 FAN5602 Universal (Step-Up/Step-Down) Charge Pump Regulated DC/DC Converter Features Low-Noise, Constant-Frequency Operation at Heavy Load High-Efficiency, Pulse-Skip (PFM) Operation at Light

More information

Enhancing Analog Signal Generation by Digital Channel Using Pulse-Width Modulation

Enhancing Analog Signal Generation by Digital Channel Using Pulse-Width Modulation Enhancing Analog Signal Generation by Digital Channel Using Pulse-Width Modulation Angelo Zucchetti Advantest angelo.zucchetti@advantest.com Introduction Presented in this article is a technique for generating

More information

Current Mode PWM Controller

Current Mode PWM Controller Current Mode PWM Controller UC1842/3/4/5 FEATURES Optimized For Off-line And DC To DC Converters Low Start Up Current (

More information

AVERAGE CURRENT MODE CONTROL IN POWER ELECTRONIC CONVERTERS ANALOG VERSUS DIGITAL. K. D. Purton * and R. P. Lisner**

AVERAGE CURRENT MODE CONTROL IN POWER ELECTRONIC CONVERTERS ANALOG VERSUS DIGITAL. K. D. Purton * and R. P. Lisner** AVERAGE CURRENT MODE CONTROL IN POWER ELECTRONIC CONVERTERS ANALOG VERSUS DIGITAL Abstract K. D. Purton * and R. P. Lisner** *Department of Electrical and Computer System Engineering, Monash University,

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

Digital Power-Conversion for the Analog Engineer

Digital Power-Conversion for the Analog Engineer Digital Power-Conversion for the Analog Engineer By Bryan Kris Staff Architect, Architecture & Applications Digital Signal Controller Division Microchip Technology Inc. It is no secret that, in the past,

More information

2. ADC Architectures and CMOS Circuits

2. ADC Architectures and CMOS Circuits /58 2. Architectures and CMOS Circuits Francesc Serra Graells francesc.serra.graells@uab.cat Departament de Microelectrònica i Sistemes Electrònics Universitat Autònoma de Barcelona paco.serra@imb-cnm.csic.es

More information

EE445L Fall 2011 Quiz 2A Page 1 of 6

EE445L Fall 2011 Quiz 2A Page 1 of 6 EE445L Fall 2011 Quiz 2A Page 1 of 6 Jonathan W. Valvano First: Last: November 18, 2011, 2:00pm-2:50pm. Open book, open notes, calculator (no laptops, phones, devices with screens larger than a TI-89 calculator,

More information

EE2254 LINEAR INTEGRATED CIRCUITS UNIT-I IC FABRICATION

EE2254 LINEAR INTEGRATED CIRCUITS UNIT-I IC FABRICATION DEPARTMENT OF ELECTRICAL AND ELECTRONICS ENGINEERING Question bank EE2254 LINEAR INTEGRATED CIRCUITS UNIT-I IC FABRICATION 1. Mention the advantages of integrated circuits. 2. Write down the various processes

More information

SG2525A SG3525A REGULATING PULSE WIDTH MODULATORS

SG2525A SG3525A REGULATING PULSE WIDTH MODULATORS SG2525A SG3525A REGULATING PULSE WIDTH MODULATORS 8 TO 35 V OPERATION 5.1 V REFERENCE TRIMMED TO ± 1 % 100 Hz TO 500 KHz OSCILLATOR RANGE SEPARATE OSCILLATOR SYNC TERMINAL ADJUSTABLE DEADTIME CONTROL INTERNAL

More information

High Speed PWM Controller

High Speed PWM Controller High Speed PWM Controller FEATURES Compatible with Voltage or Current Mode Topologies Practical Operation Switching Frequencies to 1MHz 50ns Propagation Delay to Output High Current Dual Totem Pole Outputs

More information

Power Factor Correction in Digital World. Abstract. 1 Introduction. 3 Advantages of Digital PFC over traditional Analog PFC.

Power Factor Correction in Digital World. Abstract. 1 Introduction. 3 Advantages of Digital PFC over traditional Analog PFC. Power Factor Correction in Digital World By Nitin Agarwal, STMicroelectronics Pvt. Ltd., India Abstract There are various reasons why power factor correction circuit is used in various power supplies in

More information

Question Paper Code: 21398

Question Paper Code: 21398 Reg. No. : Question Paper Code: 21398 B.E./B.Tech. DEGREE EXAMINATION, MAY/JUNE 2013 Fourth Semester Electrical and Electronics Engineering EE2254 LINEAR INTEGRATED CIRCUITS AND APPLICATIONS (Regulation

More information

The simplest DAC can be constructed using a number of resistors with binary weighted values. X[3:0] is the 4-bit digital value to be converter to an

The simplest DAC can be constructed using a number of resistors with binary weighted values. X[3:0] is the 4-bit digital value to be converter to an 1 Although digital technology dominates modern electronic systems, the physical world remains mostly analogue in nature. The most important components that link the analogue world to digital systems are

More information

High Speed PWM Controller

High Speed PWM Controller High Speed PWM Controller FEATURES Compatible with Voltage or Current Mode Topologies Practical Operation Switching Frequencies to 1MHz 50ns Propagation Delay to Output High Current Dual Totem Pole Outputs

More information

ESMT Preliminary EMD2080

ESMT Preliminary EMD2080 Constant Current LED Lighting Driver With PWM Dimming Control General Description The EMD2080 was designed with high efficiency step up DC/DC converter with constant current source for driving lighting

More information

Satellite STB Bluetooth Speaker Large TFT screen bias Other application which needs high voltage and high current generation

Satellite STB Bluetooth Speaker Large TFT screen bias Other application which needs high voltage and high current generation Description The is a high efficiency step-up converter with an internally integrated 20V power MOSEFT. It runs with an optimal 1MHz frequency that enables the use of small external components while still

More information

Fundamentals of Data Converters. DAVID KRESS Director of Technical Marketing

Fundamentals of Data Converters. DAVID KRESS Director of Technical Marketing Fundamentals of Data Converters DAVID KRESS Director of Technical Marketing 9/14/2016 Analog to Electronic Signal Processing Sensor (INPUT) Amp Converter Digital Processor Actuator (OUTPUT) Amp Converter

More information

AZ DISPLAYS, INC. SPECIFICATIONS FOR LIQUID CRYSTAL DISPLAY COMPLETE LCD SOLUTIONS. AGM1064B Series PART NUMBER:

AZ DISPLAYS, INC. SPECIFICATIONS FOR LIQUID CRYSTAL DISPLAY COMPLETE LCD SOLUTIONS. AGM1064B Series PART NUMBER: AZ DISPLAYS, INC. COMPLETE LCD SOLUTIONS SPECIFICATIONS FOR LIQUID CRYSTAL DISPLAY PART NUMBER: AGM1064B Series REVISED: MAY 14, 2003 General Specification Table 1 Item Standard Value Unit Character Format

More information

LD7550-B. Green-Mode PWM Controller. General Description. Features. Applications. Typical Application 01/03/2005 LD7550-B

LD7550-B. Green-Mode PWM Controller. General Description. Features. Applications. Typical Application 01/03/2005 LD7550-B 01/03/2005 Green-Mode PWM Controller General Description The LD7550-B is a low cost, low startup current, current mode PWM controller with green-mode power-saving operation. The integrated functions such

More information

EXAM Amplifiers and Instrumentation (EE1C31)

EXAM Amplifiers and Instrumentation (EE1C31) DELFT UNIVERSITY OF TECHNOLOGY Faculty of Electrical Engineering, Mathematics and Computer Science EXAM Amplifiers and Instrumentation (EE1C31) April 18, 2017, 9.00-12.00 hr This exam consists of four

More information

Another way to implement a folding ADC

Another way to implement a folding ADC Another way to implement a folding ADC J. Van Valburg and R. van de Plassche, An 8-b 650 MHz Folding ADC, IEEE JSSC, vol 27, #12, pp. 1662-6, Dec 1992 Coupled Differential Pair J. Van Valburg and R. van

More information

RESIDUE AMPLIFIER PIPELINE ADC

RESIDUE AMPLIFIER PIPELINE ADC RESIDUE AMPLIFIER PIPELINE ADC A direct-conversion ADC designed only with Op-Amps Abstract This project explores the design of a type of direct-conversion ADC called a Residue Amplifier Pipeline ADC. Direct-conversion

More information

8-Bit A/D Converter AD673 REV. A FUNCTIONAL BLOCK DIAGRAM

8-Bit A/D Converter AD673 REV. A FUNCTIONAL BLOCK DIAGRAM a FEATURES Complete 8-Bit A/D Converter with Reference, Clock and Comparator 30 s Maximum Conversion Time Full 8- or 16-Bit Microprocessor Bus Interface Unipolar and Bipolar Inputs No Missing Codes Over

More information

LCC-10 Product manual

LCC-10 Product manual LCC-10 Product manual Rev 1.0 Jan 2011 LCC-10 Product manual Copyright and trademarks Copyright 2010 INGENIA-CAT, S.L. / SMAC Corporation Scope This document applies to i116 motion controller in its hardware

More information

Environmental ADC Interface P Team Members

Environmental ADC Interface P Team Members Environmental ADC Interface P14346 Team Members Caleb Stephens- Electrical Engineer Kevin Oswald- Electrical Engineer Ory Maimon- Electrical Engineer Edward Wlodarczyk- Electrical Engineer Marissa Fox-

More information

SP310001/02: Wireless Power Controller for Fast Charging Transmitter

SP310001/02: Wireless Power Controller for Fast Charging Transmitter SP310001/02: Wireless Power Controller for Fast Charging Transmitter 1 Feature Input Voltage: 4.5V to 5.5V Compliant with WPC 1.2.3 to Work with A11 Coils Reliable and Accurate Foreign Object Detection

More information

ANALOG TO DIGITAL (ADC) and DIGITAL TO ANALOG CONVERTERS (DAC)

ANALOG TO DIGITAL (ADC) and DIGITAL TO ANALOG CONVERTERS (DAC) COURSE / CODE DIGITAL SYSTEM FUNDAMENTALS (ECE421) DIGITAL ELECTRONICS FUNDAMENTAL (ECE422) ANALOG TO DIGITAL (ADC) and DIGITAL TO ANALOG CONVERTERS (DAC) Connecting digital circuitry to sensor devices

More information

YOUR VIDEO TITLE POWER DISTRIBUTION FOR

YOUR VIDEO TITLE POWER DISTRIBUTION FOR YOUR VIDEO TITLE POWER DISTRIBUTION FOR GOES SOC AND FPGA HERE APPLICATIONS THE WHAT SUBTITLE SPECS GOES TO LOOK HERE FOR Detailed Agenda Power Distribution for SoC and FPGA applications: Microprocessors

More information

WD3122EC. Descriptions. Features. Applications. Order information. High Efficiency, 28 LEDS White LED Driver. Product specification

WD3122EC. Descriptions. Features. Applications. Order information. High Efficiency, 28 LEDS White LED Driver. Product specification High Efficiency, 28 LEDS White LED Driver Descriptions The is a constant current, high efficiency LED driver. Internal MOSFET can drive up to 10 white LEDs in series and 3S9P LEDs with minimum 1.1A current

More information

ICS OSCILLATOR, MULTIPLIER, AND BUFFER WITH 8 OUTPUTS. Description. Features (all) Features (specific) DATASHEET

ICS OSCILLATOR, MULTIPLIER, AND BUFFER WITH 8 OUTPUTS. Description. Features (all) Features (specific) DATASHEET DATASHEET ICS552-01 Description The ICS552-01 produces 8 low-skew copies of the multiple input clock or fundamental, parallel-mode crystal. Unlike other clock drivers, these parts do not require a separate

More information

Design Of A Comparator For Pipelined A/D Converter

Design Of A Comparator For Pipelined A/D Converter Design Of A Comparator For Pipelined A/D Converter Ms. Supriya Ganvir, Mr. Sheetesh Sad ABSTRACT`- This project reveals the design of a comparator for pipeline ADC. These comparator is designed using preamplifier

More information

Lab 7: DELTA AND SIGMA-DELTA A/D CONVERTERS

Lab 7: DELTA AND SIGMA-DELTA A/D CONVERTERS ANALOG & TELECOMMUNICATION ELECTRONICS LABORATORY EXERCISE 6 Lab 7: DELTA AND SIGMA-DELTA A/D CONVERTERS Goal The goals of this experiment are: - Verify the operation of a differential ADC; - Find the

More information

ADT7350. General Description. Features. Applications. Typical Application Circuit. Sep / Rev. 0.

ADT7350. General Description. Features. Applications. Typical Application Circuit.   Sep / Rev. 0. General Description The ADT7350 is a step-down converter with integrated switching MOSFET. It operates wide input supply voltage range from 4.5V to 24V with 1.2A peak output current. It includes current

More information

The University of Texas at Arlington Lecture 10 ADC and DAC

The University of Texas at Arlington Lecture 10 ADC and DAC The University of Texas at Arlington Lecture 10 ADC and DAC CSE 3442/5442 Measuring Physical Quantities (Digital) computers use discrete values, and use these to emulate continuous values if needed. In

More information

LM1044 Analog Video Switch

LM1044 Analog Video Switch LM1044 Analog Video Switch General Description Primarily intended for but not restricted to the switching of video signals the LM1044 is a monolithic DC controlled analog switch with buffered outputs allowing

More information

1MHz, 3A Synchronous Step-Down Switching Voltage Regulator

1MHz, 3A Synchronous Step-Down Switching Voltage Regulator FEATURES Guaranteed 3A Output Current Efficiency up to 94% Efficiency up to 80% at Light Load (10mA) Operate from 2.8V to 5.5V Supply Adjustable Output from 0.8V to VIN*0.9 Internal Soft-Start Short-Circuit

More information

1 Signals and systems, A. V. Oppenhaim, A. S. Willsky, Prentice Hall, 2 nd edition, FUNDAMENTALS. Electrical Engineering. 2.

1 Signals and systems, A. V. Oppenhaim, A. S. Willsky, Prentice Hall, 2 nd edition, FUNDAMENTALS. Electrical Engineering. 2. 1 Signals and systems, A. V. Oppenhaim, A. S. Willsky, Prentice Hall, 2 nd edition, 1996. FUNDAMENTALS Electrical Engineering 2.Processing - Analog data An analog signal is a signal that varies continuously.

More information

ICS CLOCK SYNTHESIZER FOR PORTABLE SYSTEMS. Description. Features. Block Diagram PRELIMINARY DATASHEET

ICS CLOCK SYNTHESIZER FOR PORTABLE SYSTEMS. Description. Features. Block Diagram PRELIMINARY DATASHEET PRELIMINARY DATASHEET ICS1493-17 Description The ICS1493-17 is a low-power, low-jitter clock synthesizer designed to replace multiple crystals and oscillators in portable audio/video systems. The device

More information

CHAPTER 6 DEVELOPMENT OF A CONTROL ALGORITHM FOR BUCK AND BOOST DC-DC CONVERTERS USING DSP

CHAPTER 6 DEVELOPMENT OF A CONTROL ALGORITHM FOR BUCK AND BOOST DC-DC CONVERTERS USING DSP 115 CHAPTER 6 DEVELOPMENT OF A CONTROL ALGORITHM FOR BUCK AND BOOST DC-DC CONVERTERS USING DSP 6.1 INTRODUCTION Digital control of a power converter is becoming more and more common in industry today because

More information

Design of High Gain Low Voltage CMOS Comparator

Design of High Gain Low Voltage CMOS Comparator Design of High Gain Low Voltage CMOS Comparator Shahid Khan 1 1 Rustomjee Academy for Global Careers Abstract: Comparators used in most of the analog circuits like analog to digital converters, switching

More information

LD5857 4/15/2014. Boost Controller for LED Backlight. General Description. Features. Applications. Typical Application REV: 00

LD5857 4/15/2014. Boost Controller for LED Backlight. General Description. Features. Applications. Typical Application REV: 00 4/15/2014 Boost Controller for LED Backlight REV: 00 General Description The LD5857 is a wide-input asynchronous current mode boost controller, capable to operate in the range between 9V and 28V and to

More information

Temperature Monitoring and Fan Control with Platform Manager 2

Temperature Monitoring and Fan Control with Platform Manager 2 Temperature Monitoring and Fan Control September 2018 Technical Note FPGA-TN-02080 Introduction Platform Manager 2 devices are fast-reacting, programmable logic based hardware management controllers. Platform

More information

Advantages of Analog Representation. Varies continuously, like the property being measured. Represents continuous values. See Figure 12.

Advantages of Analog Representation. Varies continuously, like the property being measured. Represents continuous values. See Figure 12. Analog Signals Signals that vary continuously throughout a defined range. Representative of many physical quantities, such as temperature and velocity. Usually a voltage or current level. Digital Signals

More information

AUR3840. Serial-interface, Touch screen controller. Features. Description. Applications. Package Information. Order Information

AUR3840. Serial-interface, Touch screen controller. Features. Description. Applications. Package Information. Order Information Serial-interface, Touch screen controller Features Multiplexed Analog Digitization with 12-bit Resolution Low Power operation for 2.2V TO 5.25V Built-In BandGap with Internal Buffer for 2.5V Voltage Reference

More information

B.E. SEMESTER III (ELECTRICAL) SUBJECT CODE: X30902 Subject Name: Analog & Digital Electronics

B.E. SEMESTER III (ELECTRICAL) SUBJECT CODE: X30902 Subject Name: Analog & Digital Electronics B.E. SEMESTER III (ELECTRICAL) SUBJECT CODE: X30902 Subject Name: Analog & Digital Electronics Sr. No. Date TITLE To From Marks Sign 1 To verify the application of op-amp as an Inverting Amplifier 2 To

More information

Isolated Interface Solutions for Industrial Sensor and Monitoring Applications

Isolated Interface Solutions for Industrial Sensor and Monitoring Applications The World Leader in High Performance Signal Processing Solutions Isolated Interface Solutions for Industrial Sensor and Monitoring Applications Michael Müller-Aulmann Applications Engineer icoupler Digital

More information

Real Time Embedded Systems. Lecture 1 January 17, 2012

Real Time Embedded Systems.  Lecture 1 January 17, 2012 Analog Real Time Embedded Systems www.atomicrhubarb.com/embedded Lecture 1 January 17, 2012 Topic Section Topic Where in the books Catsoulis chapter/page Simon chapter/page Zilog UM197 (ZNEO Z16F Series

More information

Combo Hot Swap/Load Share Controller Allows the Use of Standard Power Modules in Redundant Power Systems

Combo Hot Swap/Load Share Controller Allows the Use of Standard Power Modules in Redundant Power Systems Combo Hot Swap/Load Share Controller Allows the Use of Standard Power Modules in Redundant Power Systems by Vladimir Ostrerov and David Soo Introduction High power, high-reliability electronics systems

More information

Mixed-Signal-Electronics

Mixed-Signal-Electronics 1 Mixed-Signal-Electronics PD Dr.-Ing. Stephan Henzler 2 Chapter 6 Nyquist Rate Analog-to-Digital Converters 3 Pipelined ADC 2 4 High-Speed ADC: Pipeline Processing Stephan Henzler Advanced Integrated

More information

Design of Phase Locked Loop as a Frequency Synthesizer Muttappa 1 Akalpita L Kulkarni 2

Design of Phase Locked Loop as a Frequency Synthesizer Muttappa 1 Akalpita L Kulkarni 2 IJSRD - International Journal for Scientific Research & Development Vol. 3, Issue 03, 2015 ISSN (online): 2321-0613 Design of Phase Locked Loop as a Frequency Synthesizer Muttappa 1 Akalpita L Kulkarni

More information

Built-In OVP White LED Step-up Converter in Tiny Package

Built-In OVP White LED Step-up Converter in Tiny Package Built-In White LED Step-up Converter in Tiny Package Description The is a step-up DC/DC converter specifically designed to drive white LEDs with a constant current. The device can drive up to 4 LEDs in

More information

Advanced Regulating Pulse Width Modulators

Advanced Regulating Pulse Width Modulators Advanced Regulating Pulse Width Modulators FEATURES Complete PWM Power Control Circuitry Uncommitted Outputs for Single-ended or Push-pull Applications Low Standby Current 8mA Typical Interchangeable with

More information

Digital Isolators: A Space-Saving Alternative to Gate-Drive Transformers in DC-DC Converters

Digital Isolators: A Space-Saving Alternative to Gate-Drive Transformers in DC-DC Converters ISSUE: March 2010 Digital Isolators: A Space-Saving Alternative to Gate-Drive Transformers in DC-DC Converters by Bob Bell, National Semiconductor, Phoenix, Ariz. and Don Alfano, Silicon Labs, Austin,

More information

eorex EP MHz, 600mA Synchronous Step-down Converter

eorex EP MHz, 600mA Synchronous Step-down Converter 1.5MHz, 600mA Synchronous Step-down Converter Features High Efficiency: Up to 96% 1.5MHz Constant Switching Frequency 600mA Output Current at V IN = 3V Integrated Main Switch and Synchronous Rectifier

More information

Hello, and welcome to this presentation of the STM32G0 digital-to-analog converter. This block is used to convert digital signals to analog voltages

Hello, and welcome to this presentation of the STM32G0 digital-to-analog converter. This block is used to convert digital signals to analog voltages Hello, and welcome to this presentation of the STM32G0 digital-to-analog converter. This block is used to convert digital signals to analog voltages which can interface with the external world. 1 The STM32G0

More information

V OUT0 OUT DC-DC CONVERTER FB

V OUT0 OUT DC-DC CONVERTER FB Rev 1; /08 Dual-Channel, I 2 C Adjustable General Description The contains two I 2 C adjustable-current DACs that are each capable of sinking or sourcing current. Each output has 15 sink and 15 source

More information

Temperature Monitoring and Fan Control with Platform Manager 2

Temperature Monitoring and Fan Control with Platform Manager 2 August 2013 Introduction Technical Note TN1278 The Platform Manager 2 is a fast-reacting, programmable logic based hardware management controller. Platform Manager 2 is an integrated solution combining

More information

Tiny 12-Bit ADC Delivers 2.2Msps Through 3-Wire Serial Interface by Joe Sousa Introduction

Tiny 12-Bit ADC Delivers 2.2Msps Through 3-Wire Serial Interface by Joe Sousa Introduction DESIGN FETURES Tiny -Bit DC Delivers.Msps Through -Wire Serial Interface by Joe Sousa Introduction LTC Serial interfaces occupy little routing space, but usually limit the speed of an DC. The LTC has a

More information

Analogue to Digital Conversion

Analogue to Digital Conversion Analogue to Digital Conversion Turns electrical input (voltage/current) into numeric value Parameters and requirements Resolution the granularity of the digital values Integral NonLinearity proportionality

More information

BL V 2.0A 1.3MHz Synchronous Buck Converter

BL V 2.0A 1.3MHz Synchronous Buck Converter GENERATION DESCRIPTION The BL9309 is a high-efficiency, DC-to-DC step-down switching regulators, capable of delivering up to 2A of output current. The device operates from an input voltage range of 2.5V

More information

MCP3426/7/8. 16-Bit, Multi-Channel ΔΣ Analog-to-Digital Converter with I 2 C Interface and On-Board Reference. Features.

MCP3426/7/8. 16-Bit, Multi-Channel ΔΣ Analog-to-Digital Converter with I 2 C Interface and On-Board Reference. Features. 16-Bit, Multi-Channel ΔΣ Analog-to-Digital Converter with I 2 C Interface and On-Board Reference Features 16-bit ΔΣ ADC with Differential Inputs: - 2 channels: MCP3426 and MCP3427-4 channels: MCP3428 Differential

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

Eliminate Pipeline Headaches with New 12-Bit 3Msps SAR ADC by Dave Thomas and William C. Rempfer

Eliminate Pipeline Headaches with New 12-Bit 3Msps SAR ADC by Dave Thomas and William C. Rempfer A new 12-bit 3Msps ADC brings new levels of performance and ease of use to high speed ADC applications. By raising the speed of the successive approximation (SAR) method to 3Msps, it eliminates the many

More information