Bipolar transistor boosts switcher's current by 12 times
The circuit in Figure 1 uses a minimal number of external parts to raise the maximum output current of a 0.5A buck switching-regulator IC to more than 6A. The circuit accommodates input voltages of 15 to 60V and delivers output voltages of 3.3, 5, or 12V, depending on your choice of IC. Figure 2 provides a graph of conversion efficiency for the three standard output voltages, plotted over a range of input voltages extending to 60V. The circuit is useful in applications requiring higher input voltage, higher current, or both than is available from standard ICs. The LM2594HVN is a buck regulator that switches an internal 0.5A device at 150 kHz. This current suffices to feed the base of Q1 and the bias resistor, R2. The function of R2 is to quickly turn off Q1, a fast npn switch with a beta greater than 10 at 6A. The purpose of R1 may not be obvious without some knowledge of the internal workings of the 2594. Its value is such to produce sufficient voltage drop at peak current so Q1 begins to saturate. The saturation causes Q1's beta to drop, and, as the transistor's base current rises to more than 0.5A, the 2594 drops into its pulse-by-pulse limited-protection mode, followed by a reduction in clock frequency if the overload is severe.
This design example uses through-hole components, because low-ESR capacitors and inductors in through-hole form are inexpensive and easy to find. Worst-case line and load conditions cause Q1 and D1 to dissipate 3W each, so you must choose a heat-sink size to keep the temperature rise within acceptable limits. A heat-sink rating of 6 to 7°C/W can accommodate both devices for operation to 85°C ambient temperature. The capacitors are low-ESR types from Nichicon's PL series (http://www.nichicon-us.com). R2 dissipates less than 0.25W, but, at full load current, R1 can dissipate 1W at high VIN and more than 5W at low VIN. You should locate R1 away from the regulator IC to minimize heating. The DIP version of the 2594 dissipates as much as 0.5W at high VIN; you should solder leads 1, 2, 3, and 6 to a ground-plane area greater than 2 in.2 to avoid thermal shutdown. If you don't need the IC's on/off feature, then you should also solder Pin 5 to the ground plane.


Bipolar transistor boosts switcher's current by 12 times的更多相关文章
- RFID Exploration and Spoofer a bipolar transistor, a pair of FETs, and a rectifying full-bridge followed by a loading FET
RFID Exploration Louis Yi, Mary Ruthven, Kevin O'Toole, & Jay Patterson What did you do? We made ...
- Inverted bipolar transistor doubles as a signal clamp
A number of circuits, such as level detectors and AM demodulators, benefit from a rectifier with a l ...
- MOSFET enhances voltage regulator's overcurrent protection
The classic LM317 adjustable-output linear voltage regulator offers a relatively high, if package-de ...
- Transistor 晶体管 场效应 双极型 达林顿 CMOS PMOS BJT FET
Transistor Tutorial Summary Transistor Tutorial Summary Bipolar Junction Transistor Tutorial We can ...
- Dual transistor improves current-sense circuit
In multiple-output power supplies in which a single supply powers circuitry of vastly different curr ...
- 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 ...
- RFID 仿真/模拟/监控/拦截/检测/嗅探器
Sound card based RFID sniffer/emulator (Too tired after recon.cx to do draw the schematics better th ...
- [Fundamental of Power Electronics]-PART I-4.开关实现-4.1 开关应用
4.1 开关应用 4.1.1 单象限开关 理想的SPST(Single pole single throw)开关如图4.1所示.开关包含电源端子1和0,其电流和电压极性如图所示.在接通状态下,电压\( ...
- Active Low-Pass Filter Design 低通滤波器设计
2nd order RC Low-pass Filter Center frequency fc = 23405.13869[Hz] Q factor Q = ...
随机推荐
- css给奇数行或偶数行添加指定样式
odd表示奇数行,even表示偶数行; tr:nth-child(odd); .table-striped > tbody > tr:nth-child(odd) { background ...
- word2vec参数
架构:skip-gram(慢.对罕见字有利)vs CBOW(快) · 训练算法:分层softmax(对罕见字有利)vs 负采样(对常见词和低纬向量有利) 负例采样准确率提高,速度会慢, ...
- LSTM及其变种及其克服梯度消失
本宝宝又转了一篇博文,但是真的很好懂啊: 写在前面:知乎上关于lstm能够解决梯度消失的问题的原因: 上面说到,LSTM 是为了解决 RNN 的 Gradient Vanish 的问题所提出的.关于 ...
- CentOS系统yum源配置修改、yum安装软件包源码包出错解决办法apt.sw.be couldn't connect to host
yum安装包时报错: Could not retrieve mirrorlist http://mirrorlist.repoforge.org/el6/mirrors-rpmforge error ...
- Python+Selenium 自动化实现实例-数据驱动实例
#coding=utf-8 from selenium import webdriver driver = webdriver.Firefox() driver.implicitly_wait(10) ...
- Reflow(回流)和Repaint(重绘) (转)
原文地址:http://blog.csdn.net/qq_18826911/article/details/68924255 首先我们要明白的是,页面的显示过程分为以下几个阶段: 1.生成DOM树(包 ...
- mongo备份&恢复
1.备份数据: $mongodump -h 127.0.0.1 -u traderaccount -p kasumi -d traderaccount -o "/traderaccount& ...
- Lunix含Ubuntu使用总结
错误 鼠标闪烁解决 系统设置->显示—>未知显示器->关闭->应用->选择当前配置 提示sudo: unable to resolve host ,亦即无法解析主机. 原 ...
- float数据类型
学习一门语言都要打好基础,前面的知识可能看着无聊,但是很重要,能够让我们打好坚实的基础,一定要掌握int.float.long.字符串.列表.元组.集合.字典.函数和类的基础常用的操作. 下面来看一看 ...
- python元类:type和metaclass
python元类:type和metaclass python中一切皆对象,所以类本身也是对象.类有创建对象的能力,那谁来创建类的呢?答案是type. 1.用tpye函数创建一个类 class A(ob ...