Switching regulator forms constant-current source

Switching regulator forms constant-current source

Many applications require current sources rather than voltage sources. When you need a high-current source, using a linear regulator is inadvisable, because of the high power dissipation in the series resistor. To solve the wasted-power problem, you can use a switch-mode regulator. The circuit of Figure 1 uses IC1, an LM2576 adjustable regulator. It needs only a few external elements and has an adjustable sensing input, which you use for controlling the output current. Resistor RSC is a current sensor. IC2A, one-half of a TL082 op amp, operates as a difference amplifier. When R1=R2=R3=R4, the output voltage is proportional to the current flowing in RSC. Good common-mode rejection and a wide common-mode voltage range are important, because the amplifier works with large, changing common-mode signals.

The second half of the TL082 op amp, IC2B, operates as a noninverting amplifier. The required gain depends on the output current you need: G=VREF/VSC, where G is gain, VREF is the voltage on the sensing input of the LM2576, and VSC is the voltage across RSC. Note that VSC=IOUTRSC, where IOUT is the output current. For example, if IOUT=2A and RSC=0.12Ω, then VSC=0.24V. Typically, for the LM2576, VREF=1.237V. So, you can obtain the gain of the noninverting amplifier from the gain equation: G=5.15V/V. The overall gain of the noninverting amplifier is G=1+R7/R6. If R7=100 kΩ and G=5.15, you can solve for R6 (24.1 kΩ). When you need a precise output current, you can replace the fixed resistor, R6,with a series connection of a fixed resistor and a potentiometer. Tests showed that the output current is practically constant with varying loads. For example, the 2A output current changed less than 1% for an output-voltage range of 0.3 to 15V.

Switching regulator forms constant-current source

 

版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请联系我们举报,一经查实,本站将立刻删除。

发布者:全栈程序员-站长,转载请注明出处:https://javaforall.net/109642.html原文链接:https://javaforall.net

(0)
上一篇 2021年9月2日 下午1:00
下一篇 2021年9月2日 下午2:00


相关推荐

  • document.getElementById的理解

    document.getElementById的理解个人现在的理解就是在一个页面中找到对应id的模块

    2022年7月15日
    24
  • 可视化工具sqlyog连接MySQL数据库

    可视化工具sqlyog连接MySQL数据库大家好 今天分享一下使用可视化工具 sqlyog 连接 MySQL 数据库 MySQL 数据库已经安装成功了 但是如果在 dos 窗口上操作数据库是非常不方便的所以要使用可视化 工具来连接 MySQL 数据库可以直接百度搜索就可以这就是 sqlyog 成功连接 MySQL 数据库我这个是旗舰版这样就可以成功连接数据库这几个数据库不可以改动 school 是我自己写的 新建数据库这里是对应 sql 命令 刚刚建库的操作实际上就是这些 sql 语句实现的 这是创建的表表格创建成功看这里

    2026年3月17日
    2
  • Python使用py2exe打包exe程序[通俗易懂]

    Python使用py2exe打包exe程序[通俗易懂]py2exe可以将Python程序打包成exe程序,使得可以在没有Python环境的机器上运行。

    2025年10月22日
    4
  • pycharm调试模式

    pycharm调试模式判断代码是否正确时启动调试模式 运行键旁边 首先设置断点 gt 启动调试模式 gt 按 stepover 键一步步进行运行代码 直到条件的布尔值为 True 时 Console 控制台 显示运行的正确结果 如图

    2026年3月18日
    2
  • leetcode 回溯算法_leetcode有效的括号

    leetcode 回溯算法_leetcode有效的括号原题链接数字 n 代表生成括号的对数,请你设计一个函数,用于能够生成所有可能的并且 有效的 括号组合。示例 1:输入:n = 3输出:[“((()))”,”(()())”,”(())()”,”()(())”,”()()()”]示例 2:输入:n = 1输出:[“()”] 提示:1 <= n <= 8题解回溯class Solution {public: vector<string>res; string t = “”; voi

    2022年8月9日
    8
  • Java代码实体类生成SQL语句(Java实体类转数据库)

    Java代码实体类生成SQL语句(Java实体类转数据库)有的时候把数据库删了,如果照着实体类重新创建数据库的话比较麻烦,可以使用这个工具,把代码复制到项目里面设置一下即可把Java代码中的实体类转换为SQL语句输出为一个文件,打开执行命令即可。代码如下:packageMain;importjavax.xml.bind.annotation.XmlElement;importjava.io.*;importjava.lang.annotation.Annotation;importjava.lang.reflect.Field;p.

    2022年5月6日
    233

发表回复

您的邮箱地址不会被公开。 必填项已用 * 标注

关注全栈程序员社区公众号