LT1961 升压型稳压器造就了兼具升压和降压能力的扁平状SEPIC

Transformerless dc/dc converter produces bipolar outputs

Well-regulated, dual-polarity power supplies find wide use in disk-drive, handheld-device, automotive, and notebook-computer applications. In these applications, board space and allowable component heights are continually shrinking. So, power-supply designers face the challenge of providing split rails with as few parts as possible, thus saving board space and cost. Some dual-polarity dc/dc-converter topologies—for example, overwindings and flyback converters with multiple-winding transformers—require excessive board space, component height, or both; offer poor load regulation; or provide limited load current. Figure 1 shows an alternative approach that uses a single boost regulator using a dual-polarity SEPIC (single-ended, primary-inductance-converter) architecture. The circuit saves space and offers good regulation and current-handling capability. The boost regulator, IC1, usually figures in step-up-converter configurations, but the low-side power switch in IC1 allows the use of the IC in both SEPIC and negative-SEPIC circuits.

The combination of the two topologies creates a dual-polarity SEPIC, an excellent source for multiple-rail bias power. The circuit provides well-regulated ±12V outputs at varying load currents (5W power with 12V input and 3.6W with 5V input). Figure 2shows the maximum available current at VOUT2 as a function of the load current at VOUT1Figure 3 shows the efficiency of the converter as a function of the load current at VOUT1. Although the positive feedback comes from VOUT1, VOUT2 maintains excellent regulation (Figure 4 and  Figure 5). The circuit maintains the regulation as long as each load draws a minimum of 5-mA current. The SEPIC topology accommodates input voltages both above and below the output voltage. The use of three small power inductors as opposed to a transformer keeps the component height below 3 mm, reduces board space, and allows layout flexibility. The high-frequency, current-mode boost-regulator IC uses all ceramic capacitors, thus minimizing ripple and overall cost.

Dual-polarity supply provides ±12V from one IC的更多相关文章

  1. Level-shifting nixes need for dual power supply

    The AD736 true-rms-to-dcconverter is useful for many applications that require precise calculation o ...

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

  3. 孕龙逻辑分析仪 ZeroPlus Logic Analyzer

    Voltage Translation for Analog to Digital Interface ADC http://openschemes.com/2010/03/23/zeroplus-l ...

  4. Adding Digital control to Dual tracking LM317 / LM337 Bench supply

    Adding Digital control to Dual tracking LM317 / LM337 Bench supply I've been working on my own idea ...

  5. Wide-range regulator delivers 12V, 3A output from 16 to 100V source

    Synchronous buck regulators offer high efficiency and are popular in applications in which available ...

  6. Dual transistor improves current-sense circuit

    In multiple-output power supplies in which a single supply powers circuitry of vastly different curr ...

  7. Buck converter uses low-side PWM IC

    The most common switching-power topology is a buck converter, which efficiently transforms high volt ...

  8. 同步降压DC-DC转换IC——XC9264

    设计一个12V转3.3V,输出电流30mA的电源电路,由于项目对转化效率要求较高,所以不能采用低压差线性稳压LDO的方案.经过对比,TOREX的XC9264效率在此转化条件下效率可做到85%以上,比M ...

  9. sis9280触摸ic 基于rk3288 的安卓4.4的 多点触摸

    前言:sis提供的驱动ic.基于rk3288的安卓系统.亲眼看到人家完成一次移植.很激动的记下一些东西..虽然我看不懂.其实现在的工作也不需要看懂.叫人协助就好,只需要知道有这个东西. 1linux下 ...

随机推荐

  1. Deep Learning基础--机器翻译BLEU与Perplexity详解

    前言 近年来,在自然语言研究领域中,评测问题越来越受到广泛的重视,可以说,评测是整个自然语言领域最核心和关键的部分.而机器翻译评价对于机器翻译的研究和发展具有重要意义:机器翻译系统的开发者可以通过评测 ...

  2. js弱数据类型的坑

    1.从表单获取的value是字符串,如果需要为数字相加,则需要转换为number类型 <input type="number" id="val1"> ...

  3. yum和head一起用,报错“由于管道被破坏而退出”

    当要打印 [yum list ]时, 加上了管道符 以及 head 会出现报错 “由于管道被破坏而退出” 是因为 yum 与 head 连用 存在bug ,如果使用tail 则没有出现 具体什么bug ...

  4. xss 过滤

    一. xss过滤 用户通过Form获取展示在终端, 提交数据,Form验证里面加入xss验证(对用户提交的内容验证是否有关键标签) from django.conf.urls import url f ...

  5. plt-3D打印1

    plt-3D打印 import numpy as np import matplotlib.pyplot as plt from mpl_toolkits.mplot3d import Axes3D ...

  6. xpath简单应用

    相对路径与绝对路径: 如果"/"处在XPath表达式开头则表示文档根元素,(表达式中间作为分隔符用以分割每一个步进表达式)如:/messages/message/subject是一 ...

  7. socket-----爬虫&&文件传输

    最近想着写几个小demo 写了一个爬虫,用的是C++,基本思想就是一层一层的找类似深搜吧,抓取的页面是www.cnblogs.com,从localhost发送request请求,给www.cnblog ...

  8. Java学习(final、static关键词)

    final关键词 概念:final的意思为最终,不可变.final是个修饰符,它可以用来修饰类,类的成员,以及局部变量.不能修饰构造方法. 特点: 1.final修饰的类不可以被继承,但可以继承别的类 ...

  9. Python2中input()、raw_input()和Python3中input()

    听了ALEX的某节课,说input()和raw_input()函数在Python2中没有区别,现在来探讨一下Python2中的input().raw_input()函数和Pyhont3中的input( ...

  10. BASH 的调试技巧

    平时在写 BASH 脚本时,总是会碰到让人抓狂的 BUG.和 C/C++ 这么丰富的调试工具相比,BASH 又有什么调试手段呢? 1 echo/print (普通技) 打印一些变量,或者提示信息.这应 ...