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 = ...
随机推荐
- 关于ORA-04091异常的出现原因,以及解决方案
问题分析 在Oracle中执行DML语句的时候是需要显示进行提交操作的.当我们进行插入的时候,会触发触发器执行对触发器作用表和扩展表的种种操作,但是这个时 候触发器和插入语句是在同一个事务管理中的,因 ...
- SyntaxError: Missing parentheses in call to 'print' 这个错误原因是Python版本问题
问题 print "www.baidu.com" Python2 print ("www.baidu.com") Python3 出 ...
- 5.rabbitmq 主题
1.生产者 #!/usr/bin/env python import pika import sys connection = pika.BlockingConnection(pika.Connect ...
- HDU 2147 kiki's game(博弈图上找规律)
题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=2147 题目大意:给你一个n*m的棋盘,初始位置为(1,m),两人轮流操作,每次只能向下,左,左下这三个 ...
- JAVA封装消息中间件调用二(kafka消费者篇)
上一遍我简单介绍了kafka的生成者使用,调用方式比较简单,今天我给大家分享下封装kafka消费者,作为中间件,我们做的就是最大程度的解耦,使业务方接入我们依赖程度降到最低. 第一步,我们先配置一个消 ...
- 0ra-12170 tns 连接超时
https://blog.csdn.net/zhaoxiangchong/article/details/8296980
- MINIBASE源代码阅读笔记之DB
DB 管理数据库的类 file_entry:dir page的元素,保存不同文件对应的page directory_page:dir page的专用结构体,里面有个初始长度为0的variable si ...
- fastdfs5.10 centos6.9 安装配置
下载相关软件 https://codeload.github.com/happyfish100/fastdfs/tar.gz/V5.10http://download.csdn.net/detail/ ...
- day4递归原理及实现
递归 特定: 递归算法是一种直接或者间接地调用自身算法的过程.在计算机编写程序中,递归算法对解决一大类问题十分有效,它往往是算法的描述简洁而且易于理解. 递归算法解决问题的特点: (1)递归就是在过程 ...
- Codeforces Round #285 (Div. 1) B - Misha and Permutations Summation 康拓展开+平衡树
思路:很裸的康拓展开.. 我的平衡树居然跑的比树状数组+二分还慢.. #include<bits/stdc++.h> #define LL long long #define fi fir ...