A previous Design Idea describes a programmable current source that used a three-terminal National Semiconductor LM317 adjustable regulator (Reference 1). Although that circuit lets you program the output current, the load current flowed through the BCD (binary-coded-decimal) switches. However, you may find it difficult to purchase BCD switches that can handle more than 25 mA, limiting the circuit’s output current. By applying the simple, four-pin Zetex ZXCT1010 current-sense-monitor chip, you can boost current because it doesn’t flow through BCD switches (Figure 1).

The load current results in a voltage on the sense resistor RSENSE. The voltage on R1, the 100Ω resistor, is the same as that on RSENSE, generating an output current on R1: IOUT×100=ILOAD×RSENSE, and VOUT= IOUT×ROUT, where IOUT is the output current, ILOAD is the load current, and VOUT is the output voltage. You can apply the output voltage as a control voltage to regulate the load current.

One application for this circuit would be to refill accumulators in portable devices. In this case, the circuit works at 18V. The Fairchild SemiconductorIRF520 is an N-channel, power-MOSFET chip in an aluminum heat sink with as much as 9.2A current and 0.27Ω drain-to-source resistance to connect the load current. An op amp controls the IRF520 in the feedback of the load current. In this application, the maximum output current is 1A, and the value of the sense resistor is 0.1Ω. The PCB (printed-circuit board) can also have this small resistance value, which you calculate using the cuprum material’s 35-micron-thick layer. The BCD switches are in parallel and connect from 125Ω to 100 kΩ to adjust the output voltage on the op amp’s negative input. The equations to calculate resistor values are: VSENSE=RSENSE×ILOAD, IOUT=RSENSE×ILOAD/100, and R0=VREF×100/(RSENSE×ILOAD). If you choose a value of 0.1Ω for the sense resistor and a value of 0.1V for the reference voltage, the equation becomes R0=100/ILOAD.

Applying this equation, you can calculate the four weighting resistors of the three BCD switches, which you can determine when the current flows through only that resistor. For currents of 800, 400, 200, 100, 80, 40, 20, 10, 8, 4, 2, and 1 mA, the corresponding resistances would be 0.125, 0.25, 0.5, 1, 1.25, 2.5, 5, 10, 12.5, 25, 50, and 100 kΩ. If the load current is 1A, then the output current is only 1 mA, and, if the load current is 1 mA, then the output current is only 1 μA. Note that the IRF520’s surface is on the drain potential.

Current-sense monitor and MOSFET boost output current的更多相关文章

  1. DAC calibrates 4- to 20-mA output current

    Industrial controls make heavy use of 4- to 20-mA current loops to transmit process measurements bec ...

  2. 拉电流(source current)与灌电流(sink current)

    对一个互补输出的驱动器而言,从输出端向外电路流出的负载电流称为拉电流(SOURCE CURRENT):从外电路流入输出端的负载电流称为灌电流(SINK CURRENT):在没有负载的情况下,驱动器本身 ...

  3. ISO7816 (part 1-3) asynchronous smartcard information

    http://java.inf.elte.hu/java-1.3/javacard/iso7816.txt ============================================== ...

  4. LT1946A-- Transformerless dc/dc converter produces bipolar outputs

    Dual-polarity supply provides ±12V from one IC VC (Pin 1): Error Amplifier Output Pin. Tie external ...

  5. Add current boost to a USB charger

    The popular USB interface can charge a portable device while transferring data. But for high-capacit ...

  6. Cascode MOSFET increases boost regulator's input- and output-voltage ranges

    Targeting use in portable-system applications that require raising a battery's voltage to a higher l ...

  7. 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 ...

  8. Current limiter allows large USB bypass capacitance

    The USB (Universal Serial Bus) specification requires a connected USB device to present a load to th ...

  9. 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 ...

随机推荐

  1. C/C++——C语言常用库函数

    本文转载自:https://blog.csdn.net/qq_36955347/article/details/71511900 一.数学函数 调用数学函数时,要求在源文件中包下以下命令行: #inc ...

  2. Linux 用户篇——用户管理的配置文件

    一.用户管理之配置文件的重要性 在Linux系统中,用户账户的相关信息是存放在相关配置文件中.而Linux安全系统的核心是用户账号,用户对系统中各种对象的访问权限取决于他们登录系统时用的账户,并且Li ...

  3. 【C#日期系列(一)】--C#获取某月第一天0分0秒以及最后一天59分59秒

    工作中可能会遇到很多不常见的需求,比如这次需要获取某个月的第一天和最后一天 #region 取得某月的第一天0分0秒 /// <summary> /// 取得某月的第一天0分0秒 /// ...

  4. 基于原生JS的jsonp方法的实现

    基于原生JS的jsonp方法的实现 jsonp,相信大家并不陌生,是在js异步请求中解决跨域的方法之一,原理很简单,有不清楚的同学可以google下,这里就补详细解释了.在Jquery库中,jQuer ...

  5. windows下运行命令行mysql,提示mysql不是内部命令,解决办法

    1. 打开CMD命令行,连接本地mysql数据库:mysql -u root -p 提示‘mysql’不是本地命令,解决办法如下: 找到你安装的mysql的目录,打开当前目录下的bin文件夹,你可以看 ...

  6. mysql协议简析

    前言 如果要在命令行中连接mysql,最常用的便是 mysql -u root -p 这样指定用户名和密码 当然还可以使用远程连接 mysql -h 127.0.0.1 -u root -p 还有一种 ...

  7. 洛谷P3812 【模板】线性基 [线性基]

    题目传送门 线性基 题目描述 给定n个整数(数字可能重复),求在这些数中选取任意个,使得他们的异或和最大. 输入输出格式 输入格式: 第一行一个数n,表示元素个数 接下来一行n个数 输出格式: 仅一行 ...

  8. Python并发编程-多进程socketserver简易版

    普通版的socketserver #server.py import socket sk = socket.socket() sk.bind(('127.0.0.1',8080))#建立连接 sk.l ...

  9. Python类总结-多态及鸭子类型

    Python天生支持多态. 什么是多态: 一类事务的多种形态. 多态的一个例子 class Alipay(): def pay(self,money): print('用支付宝支付了%s元' % mo ...

  10. Docker入门到实战

    1.系统要求 Docker CE 支持 64 位版本 CentOS 7,并且要求内核版本不低于 3.10. CentOS 7满足最低内核的要求,但由于内核版本比较低,部分功能(如 overlay2 存 ...