Get just enough boost voltage - current-mirror circuit - VOUT tracks VIN varies

Adding a current-mirror circuit to a typical boost circuit allows you to select the amount of boost voltage
and to ensure a constant difference between the input and the output voltages (Figure 1).
This circuit is useful for high-side-drive applications, in which a simple voltage doubler is unacceptable
because of the voltage range of the components involved or where the input voltage can vary widely.
You can also use the circuit at the front end of a power supply to ensure that the PWM controller
has enough voltage to start correctly in low-input-voltage conditions.
The circuit maintains a 10V difference between VIN and VOUT, but you can easily change it to provide other voltages.
The PWM circuit in Figure 1 is the CS5171 from On Semiconductor (www.onsemi.com), but you can use the idea with any boost circuit.
The current-mirror circuit, comprising the dual-pnp transistor, Q1, and the associated resistors,
establishes a current that depends on the voltage difference between VIN and VOUT.
The dual-pnp transistor has a VCEO of 65V.
In this case, VIN=14V (nominal), so you need VOUT to be 24V (nominal).
First, calculate a value for R2, thus establishing the reference current.
If you select a reference current of 1 mA, you obtain

Because the output voltage is not critical, you use a 10-kΩ resistor.
Q1B mirrors the current and sets up the feedback voltage to the PWM circuit.
The CS5171 has an internal voltage of 1.28V (typical), so R3 yields the correct feedback voltage when the current flowing through it is 1 mA.
In this case, by selecting 1.27 kΩ for R3, you obtain an output voltage of 24V.
As VIN varies, VOUT tracks it and maintains a 10V difference between the input and the output. R4 helps reduce the power dissipation in Q1B.
Get just enough boost voltage - current-mirror circuit - VOUT tracks VIN varies的更多相关文章
- Current mirror drives multiple LEDs from a low supply voltage
Driving LEDs at a regulated current from low supply voltages can be difficult because minimal overhe ...
- Current-sense monitor and MOSFET boost output current
A previous Design Idea describes a programmable current source that used a three-terminal National S ...
- Tracking Boost Regulator TYPICAL 5V REGULATION WITH BOOST CONVERTER AND LDO
Cs5171: Tracking Boost Regulator Adding a current mirror circuit to a typical boost circuit allows t ...
- High Voltage Boost Supply
http://learn.adafruit.com/ice-tube-clock-kit/design Tubes such as VFDs, Nixies, Decatrons, etc requi ...
- OpAmp Voltage Follower/Regulator
LDO Regulator High accuracy voltage regulator Vout = 2.5V * (1 + ( 5.6 / 6.8 ) ) = 4.55V Recently th ...
- LDO current regulator for power LED
LDO current regulator for power LED Challenge You've got a power LED? Great! Build a flash light! Wh ...
- High accuracy voltage regulator
High accuracy voltage regulator Good morning everybody, I want to make a accurate voltage regulator ...
- Digital Adjustment of DC-DC Converter Output Voltage in Portable Applications
http://pdfserv.maximintegrated.com/en/an/AN818.pdf http://www.maximintegrated.com/app-notes/index.mv ...
- Use a TL431 shunt regulator to limit high ac input voltage
Most isolated, offline SMPSs (switched-mode power supplies), including flyback, forward, and resonan ...
随机推荐
- Spring源码解读Spring IOC原理
一.什么是Ioc/DI? IoC 容器:最主要是完成了完成对象的创建和依赖的管理注入等等. 先从我们自己设计这样一个视角来考虑: 所谓控制反转,就是把原先我们代码里面需要实现的对象创建.依赖的代码,反 ...
- 174.Dungeon Game---dp
题目链接 题目大意:从左上角到右下角,每一个格子都有各自的权值,如果权值为负,则当到达时,要失血:如果权值为正,则当到达时,要加血.当到达某个格子时,当前血量<=0,则死亡,到达不了右下角,所以 ...
- 大数据系列之Kafka安装
先简单说下安装kafka的流程..(可配置多个zookeeper,这篇文只说一个zookeeper场景) 1.环境配置:jdk1.7+ (LZ用的是jdk1.8) 2.资料准备:下载 kafka_2. ...
- 7.Python3标准库--文件系统
''' Python的标准库中包含大量工具,可以处理文件系统中的文件,构造和解析文件名,还可以检查文件内容. 处理文件的第一步是要确定处理的文件的名字.Python将文件名表示为简单的字符串,另外还提 ...
- Netty性能调优
1. 减少内存allocation和deallocation.通过静态实例和内存缓存,减少IO的次数. 2. 使用gather write和scatter read 3. 使用jDK7,因为他的byt ...
- centos7 开放端口号
firewall-cmd --zone=public --add-port=80/tcp --permanent firewall-cmd --reload
- CentOS7.6安装screenfetch
方法1:yum install -y gitcd /usr/local/srcgit clone https://github.com/KittyKatt/screenFetch.gitcp scre ...
- LeetCode 136. Single Number(只出现一次的数字)
LeetCode 136. Single Number(只出现一次的数字)
- Python添加系统路径BASE_DIR
Python可以使用OS模块智能添加sys.path,需要放在Start.py的开始 import os import sys if __name__== '__main__': BASE_DIR = ...
- Java常用工具类之时间转换
import java.text.DecimalFormat; import java.text.ParseException; import java.text.SimpleDateFormat; ...