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 ...
随机推荐
- js事件、事件委托
事件流 事件流:页面中接收事件的顺序: IE的事件流是冒泡流,其他的浏览器是捕获流,如下图: DOM事件流 DOM 事件流同时支持这两种事件流,并且规定DOM任何事件流都包含三个阶段:事件捕获阶段.处 ...
- [How to] HBase的bulkload使用方法
1.简介 将数据插入HBase表中的方法很多,我们可以通过TableOutputFormat以Mapreduce on HBase的方式将数据插入,也可以单纯的使用客户端API将数据插入.但是以上方法 ...
- Windows Phone 8/Windows 8 启动第三方应用程序并传递参数
需要被其他应用启动的第三方应用需要注册protocol association,当一个应用程序启动一个特殊的URI的时候,那么注册了这个protocol的程序会自动启动,并且可以通过这个特殊的URI将 ...
- Selenium_Page Object设计模式
Page Object 介绍 Page Object设计模式的优点如下: 减少代码的重复 提高测试用例的可读性 提高测试用例的可维护性,特别是针对UI频繁变化的项目 当Web页面编写测试时,需要操作该 ...
- Codeforces 822D My pretty girl Noora(最小素因子的性质)
题目大意:一场选美比赛有N个人,可以分成N/x,每组x人.每组的比较次数为x(x-1)/2,f[N]为最后决出冠军所需的比较次数,可以通过改变x的值使f[N]改变.题目给出t,l,r(1 ≤ t &l ...
- CSU 1412 Line and Circles
原题链接:http://acm.csu.edu.cn/OnlineJudge/problem.php?id=1412 题目要求判断是否有一条直线可以穿过所有的圆. 做法:把所有圆心做一次凸包,然后判断 ...
- LoadRunner的Capture Level说明
LoadRunner的Capture Level说明 Capture Level的设置说明: 1.Socket level data. Capture data using trapping on t ...
- Java 中的值传递和引用传递问题
Java 中的值传递和引用传递问题 public class Operation { int data = 50; void change(int data) { data = data + 100; ...
- cvc-complex-type.2.4.d: 发现了以元素 'd:skin' 开头的无效内容。此处不应含有子元素。
Eclipse上开发Android的时候,新建的项目提示: [2016-01-13 14:07:56 - android SDK] Error when loading the SDK: Erro ...
- 【C#】线程问题
多线程编程对很多程序员来说并不容易,在启动访问相同数据的多个线程时,会间歇性地遇到难以发现的问题.如果使用任务.并行LINQ或Parallel类,也会遇到这些问题.为了避免这一系列问题,开发程序中必须 ...