http://www.edn.com/design/analog/4363990/Control-an-LM317T-with-a-PWM-signal

The LM317T from NationalSemiconductor is a popular adjustable-voltageregulator that
provides output voltagesof 1.25 to 37V with maximum 1.5Acurrent. You can adjust the output
voltagewith a potentiometer. The circuit inFigure 1 replaces the potentiometerwith an analog
voltage that you cancontrol from a PWM (pulse-width-modulation)signal. You control
thissignal with a microcontroller or anyother digital circuit. You can use thesame
microcontroller to dynamicallymonitor the output and adjust theLM317T.
Using an RC lowpass filter and anop amp, you can convert the PWMsignal to a dc level that
can adjust the LM317T’s voltage output. Varying thepulse width of the input signal lets
yougenerate an analog voltage of 0 to 5V atthe output of the lowpass filter. The opamp
multiplies the voltage to achievethe desired voltage range.

For scenarios in which you mustmultiply the input voltage by two, theLM317T’s adjustment
pin receives 0 to10V. Its output-voltage range is 1.25 to11.25V.

The equation VOUT=VADJ+1.25V governs the LM3175T’s output voltage.

You can change the op amp’s gainby choosing proper values for R4 and R2.

You must be able to remove offset voltages from the op amp.

Use an opamp, such as a National Semiconductor LM741, with null adjustment.

The selection of values for the capacitor and resistor for the RC lowpass filter
depends onthe PWM signal’s frequency. This circuituses values for a 1-kHz PWM signal.

You can improve the circuit by replacingthe RC lowpass filter with an activefilter and then
feeding a feedback signalfrom the circuit’s output into the microcontrollerfor dynamic
adjustments.

http://pandatron.cz/?2684

Control an LM317T with a PWM signal的更多相关文章

  1. Renesas M16C/6X -- Simple PWM Signal Generation Using DMA

    1. Requirements To generate a PWM output, we need to create a train of pulses with constant period a ...

  2. How determine the RC time constant in PWM DAC low-pass filter?

    how determine the RC time constant in PWM digital to analog low-pass filter? I 'm looking for the be ...

  3. The Secret Mixed-Signal Life of PWM Peripherals

    The Secret Mixed-Signal Life of PWM Peripherals Pulse-width modulation (PWM) peripherals have enjoye ...

  4. how to generate an analog output from a in-built pwm of Atmega 32AVR microcontrloller?

    how to generate an analog output from a in-built pwm of Atmega 32AVR microcontrloller? you need a re ...

  5. DC-DC Controllers Use Average-Current-Mode Control for Infotainment Applications-3939

    DC-DC Controllers Use Average-Current-Mode Control for Infotainment Applications Abstract: Auto info ...

  6. STM32学习日志--使用DMA功能自动更新PWM的输出

    /******************************************************************************* 编译环境: EWARM V5.30 硬 ...

  7. Make a DAC with a microcontroller's PWM timer

    http://www.edn.com/design/analog/4337128/Make-a-DAC-with-a-microcontroller-s-PWM-timer Many embedded ...

  8. Digital Current-Mode Control Challenges Analog Counterparts

    http://electronicdesign.com/digital-ics/digital-current-mode-control-challenges-analog-counterparts ...

  9. PWM DAC Low Pass Filtering

    [TI博客大赛][原创]LM3S811之基于PWM的DAC http://bbs.ednchina.com/BLOG_ARTICLE_3005301.HTM http://www.fpga4fun.c ...

随机推荐

  1. 1、CentOS 6 安装GitLab

    1.安装和配置必需的依赖项 在CentOS上将系统防火墙打开HTTP和SSH访问. sudo yum install -y curl policycoreutils-python openssh-se ...

  2. C++卷积神经网络实例(一)

    跟着这位博主来学习C++的卷积网络实例,因为作者一直在更新代码,所以新的代码和这位博主的分析有所不同:这位博主写的东西太泛了,没有讲到实质, 可以参考下他分析的类与类之间的关系图.. 前四节:http ...

  3. 创建 dblink

    目的:oracle中跨数据库查询       两台数据库服务器db_A(本地)和db_B(远程192.168.1.100),db_A下用户user_a 需要访问到db_B下user_b的数据解决:查询 ...

  4. Quartz任务调度入门

    Quartz任务调度入门 了解Quartz体系结构Quartz对任务调度的领域问题进行了高度的抽象,提出了调度器.任务和触发器这3个核心的概念,并在org.quartz通过接口和类对重要的这些核心概念 ...

  5. 【hdoj_1865】1sting(递推+大数)

    题目:http://acm.hdu.edu.cn/showproblem.php?pid=1865 本题的关键是找递推关系式,由题目,可知前几个序列的结果,序列长度为n=1,2,3,4,5的结果分别是 ...

  6. Python 2 到 Python 3 的变化

    1: commands 被 subprocess 所取代:举例 Python2中使用getoutput: >>> import commands >>> print ...

  7. C# 6.0 新特性 (三)

    主构造函数 自动属性初始化表达式尤其适合与主构造函数结合使用.主构造函数为降低常见对象模式的繁琐程度提供了一种方法.此功能自五月以来已显著改进.更新包括: 主构造函数的可选实现主体:这将支持此前不受支 ...

  8. Deepin 2015 安装惠普打印机驱动

    参考:https://bbs.deepin.org/forum.php?mod=viewthread&tid=34749&extra= 1.安装新立得包管理器:sudo apt-get ...

  9. 二安装Python

    因为Python是跨平台的,它可以运行在Windows.Mac和各种Linux/Unix系统上.在Windows上写Python程序,放到Linux上也是能够运行的. 要开始学习Python编程,首先 ...

  10. Hibernate 单项一对多的关联映射

    在上一篇中我们简单介绍了多对一的关联映射,本文介绍hibernate中一对多的关联映射. 1.设计表结构 虽然关联关系由多对一变为一对多,但是我们表结构不会发生改变,只是指向变了. 2.创建stude ...