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 ...
随机推荐
- 剑指offer算法题
数组中只出现一次的数字(一个整型数组里除了两个数字之外,其他的数字都出现了两次.请写程序找出这两个只出现一次的数字): 解法在于位运算中的异或,直接异或可以得到这两个数的异或,按照最后的有效数字位可以 ...
- STL中heap相关函数
heap并不是属于STL中的containers,而是在<algorithm>下提供了相关的函数 make_heap,sort_heap,pop_heap,push_heap 函数的说明: ...
- java基础12 抽象类(及关键字:abstract)
抽象类:abstract 1.应用的场景 我们描述一类事物时,存在着某种行为,但这种行为目前不具体,那么我们就可以抽取这种行为的声明,但是不去实现这种行为,我们就需要使用抽象类. 2.抽象的好处 强制 ...
- mongodb与mysql传统的关系数据库区别
转自:易百教程 MongoDB中的数据具有灵活的模式.文档在同一集合,但它们不需要具有相同的字段或结构集合,集合文档中的公共字段可以包含不同类型的数据. MongoDB中的数据具有灵活的模式.与SQL ...
- csu 1548(三分)
1548: Design road Time Limit: 2 Sec Memory Limit: 256 MBSubmit: 383 Solved: 200[Submit][Status][We ...
- linux 把ls -R格式化成树状结构
谁能写脚本把linux中的ls -R命令的结果格式化成树状结构? 最好是shell脚本!欢迎讨论! 参与讨论有可能意外获取iPhone6哦~~
- Wannafly挑战赛7 E - 珂朵莉与GCD
题目描述 给你一个长为n的序列a m次查询 每次查询一个区间的所有子区间的gcd的和mod1e9+7的结果 输入描述: 第一行两个数n,m之后一行n个数表示a之后m行每行两个数l,r表示查询的区间 输 ...
- EOJ 3265 七巧板
模拟. 先判断三边形和四边形的个数. 然后判断$5$个三角形是否都是等腰直角三角形. 然后判断$5$个等腰直角三角形比例是否符合要求. 然后寻找正方形.判断比例是否符合要求. 最后判断四边形是否符合要 ...
- VIM块操作
一.可视模式 按v启用可视模式,之后移动光标可以选择. 如: 如果想整行操作,则用大写的V,再移动光标可以按行为单位进行选择. 二.列块操作 在 word中有一个功能,按alt加鼠标拖动,可以 ...
- golang中接口interface和struct结构类的分析
再golang中,我们要充分理解interface和struct这两种数据类型.为此,我们需要优先理解type的作用. type是golang语言中定义数据类型的唯一关键字.对于type中的匿名成员和 ...