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 ...
随机推荐
- 34.Find First and Last Position of Element in Sorted Array---头条面试题、《剑指offer》38
题目链接 题目大意:找出一串升序数组中target值的起始下标和结束下标值,如果不存在则返回{-1,-1}. 解法一:用二分查找,找到数组中的target,然后找其左边和右边的target下标值.代码 ...
- linux系统定时任务设置
.使用at命令设置一次性定时任务 2.使用crontab设置周期性定时任务 1)cd /home 目录下,使用vi test.py创建文件,内容如下: #!/usr/bin/python#coding ...
- Tutorial 7: Schemas & client libraries
转载自:http://www.django-rest-framework.org/tutorial/7-schemas-and-client-libraries/ Tutorial 7: Schema ...
- C#+TaskScheduler(定时任务)实现定时自动下载
C# /TaskScheduler /定时任务 /定时自动下载 3410 实现原理,客户是广电,在广电服务器创建一个FTP目录,然后每天自动从卫星上自动更新节目列表, 然后功能就是要每天定点一个时间自 ...
- 防范XSS跨站2
原文:http://blog.csdn.net/joeyon1985/article/details/43527987 在前面的一篇文章中,讲到了java web应用程序防止 csrf 攻击的方法,参 ...
- Condition接口
<Java并发编程艺术>读书笔记 Condition介绍 任意一个Java对象,都拥有一组监视器方法(定义在java.lang.Object中),主要包括wait().wait(long ...
- 在eclipse中使用Maven3(笔记二)
笔记本二 在Eclipse 中使用Maven 第一节:m2eclipse 插件安装 打开Eclipse,点击菜单Help - > Install New Software 点击Add 按钮N ...
- Python--re模块的findall等用法
1)正则表达式含义 . # 点可代表一切字符 \ # 起转义作用 [...] # 指代方括号中的任意字符 \d # 指代数字0-9 \D # 指代非数字 \s # 指代一切空格,包括tab制表符.空格 ...
- 易普优APS(高级计划排程)演绎饭局模型(通俗的告诉您ERP计划与APS计划的区别)
一天中午,老张突然回到家里对妻子说:“亲爱的老婆,晚上几个同事要来家里吃饭.这次我专门回家来要用最先进的ERP理念来完成咱家的请客过程了,要把这次宴会搞成一次ERP家宴.你看,我已经用CRM客户关系管 ...
- bzoj 1112 treap树
思路:我们只要check一遍每个长度为k的区间就好啦,对于一个区间来说的最优值显然是中位数,我们显然要动态求 第k大,所以需要一个二叉搜索树,用treap就好啦. #include<bits/s ...