LT1072 -- Wide-range voltage regulator automatically selects operating mode












The circuit in Figure 1 delivers programming voltages to an EEPROM under the control of an external DAC (not shown).
You can replace the DAC with a potentiometer to create a general-purpose power supply operating from 12V
and able to deliver a variable output voltage of 0 to 32V.
As Figure 1 shows, a Linear Technology LT1072HV variable-boost switching regulator, IC1,
drives a Class A amplifier comprising operational amplifier IC2,
voltage-boost-stage Q3, and emitter-follower Darlington transistor Q2.
Resistors R9 and R10 set the amplifier's noninverting loop gain to a value of 1+(R9/R10).
For output voltages below 8V, switching regulator IC1 remains in shutdown mode,
and the output stage draws current through L1 and D1.
Q1's collector voltage, VC, measures approximately 11.4V—that is, 12V minus D1's forward-voltage drop.
Transistor Q1monitors the voltage drop across R7, which measures a fraction of Q2's collector-base voltage, VCB.
As long as VCB exceeds 1V, Q1's collector current remains high enough to drive IC1's feedback input higher than 1.25V, which in turn keeps IC1 shut down.
As the output voltage increases, the voltage differential across R7 decreases,
and, when it drops below 0.9V, Q1's collector current decreases,
lowering the feedback voltage applied to IC1 and switching it on.
The boost regulator's output voltage increases, and the Q1- IC1 feedback loop regulates
the collector-emitter voltage differential across Q2 to a constant 3V for all outputs exceeding 8V.
If IC2's output goes to ground, cutting off Q3 and forcing Q2 into saturation,
the feedback loop around Q1 opens and allows the circuit's output voltage to increase.
Diode D5 and associated components form an overvoltage-protection clamp that limits IC1's output to 37V.
Resistive divider R9 and R10 and IC2 determine the output voltage's range.
A part from selecting the VCE ratings of Q1 and Q3 to withstand the highest desired output voltage,
values of other components are not critical.
If you substitute appropriate components for D5, Q1, and Q3, the circuit can deliver output voltages
as high as IC1's maximum output-switch rating—75V for the LT1072HV variant—minus 3V.
LT1072 -- Wide-range voltage regulator automatically selects operating mode的更多相关文章
- Digital variable resistor compensates voltage regulator
A variable resistor that integrates a programmable, temperature-indexed look-up table can compensate ...
- High accuracy voltage regulator
High accuracy voltage regulator Good morning everybody, I want to make a accurate voltage regulator ...
- MOSFET enhances voltage regulator's overcurrent protection
The classic LM317 adjustable-output linear voltage regulator offers a relatively high, if package-de ...
- 解决 CefSharp WPF控件不能使用输入法输入中文的问题(代码已提交到 github)
首先,本文所有 代码已经提交到github,需要的可以直接从github获取:https://github.com/starts2000/CefSharp,希望可以帮助到有需要的朋友们. CEF 简介 ...
- 30 Cool Open Source Software I Discovered in 2013
30 Cool Open Source Software I Discovered in 2013 #1 Replicant – Fully free Android distribution Rep ...
- OpAmp Voltage Follower/Regulator
LDO Regulator High accuracy voltage regulator Vout = 2.5V * (1 + ( 5.6 / 6.8 ) ) = 4.55V Recently th ...
- Changing the Output Voltage of a Switching Regulator on the Fly
http://www.powerguru.org/changing-the-output-voltage-of-a-switching-regulator-on-the-fly/ There are ...
- PatentTips - Zero voltage processor sleep state
BACKGROUND Embodiments of the invention relate to the field of electronic systems and power manageme ...
- General-Purpose Operating System Protection Profile
1 Protection Profile Introduction This document defines the security functionality expected to be ...
随机推荐
- 008 BlockingQueue理解
原文https://www.cnblogs.com/WangHaiMing/p/8798709.html 本篇将详细介绍BlockingQueue,以下是涉及的主要内容: BlockingQueue的 ...
- Spring Boot 在接收上传文件时,文件过大异常处理问题
Spring Boot 在接收上传文件时,文件过大时,或者请求过大,spring内部处理都会抛出异常,并且捕获不到. 虽然可以通过调节配置,增大 请求的限制值. 但是还是不太方便. 之所以捕获不到异常 ...
- 记一次spring boot中MongoDB Prematurely reached end of stream的异常解决
在spring boot项目中使用了mongodb,当一段时间没有操作mongodb,下次操作mongodb时就会出现异常.异常如下: org.springframework.data.mongodb ...
- oracle 12C wmsys.wm_concat()函数
http://blog.itpub.net/31392094/viewspace-2149577/
- Linux平台上SQLite数据库教程(一)——终端使用篇
https://blog.csdn.net/u011192270/article/details/48031763 https://blog.csdn.net/fml1997/article/deta ...
- qt调用仪器驱动库dll实现程控
在<使用qt+visa实现程控>中实现了qt调用visa库的简单Demo本文将尝试使用qt调用仪器驱动库来实现对仪器仪表的程控 开发环境 系统: windows 10 环境: qt 5.8 ...
- PyCharm中 ImportError: No module named tensorflow
安装完 tensorflow 后在 PyCharm 中导入时显示找不到,可设置如下: PyCharm 中依次打开 File -> Settings -> Project:PycharmPr ...
- Python的hasattr() getattr() setattr() 函数使用方法(简介)
hasattr(object, name)判断一个对象里面是否有name属性或者name方法,返回BOOL值,有name特性返回True, 否则返回False.需要注意的是name要用括号括起来 1 ...
- 小甲鱼Python笔记(上)
基于Python 3.4.3 一 二 三 四 基础 print 三版必须加括号,二版不用加 alt + n :上一条语句 alt + p :下一条语句 打印三条hello 没有大括号,用缩进来表示 ...
- bzoj 1854 并查集 + 贪心
思路:这个题的并查集用的好NB啊, 我们把伤害看成图上的点,武器作为边,对于一个联通块来说, 如果是一棵大小为k的树,那么这个联通块里面有k - 1个伤害能被取到,如果图上有环那么k个值都能 取到,对 ...