10495|2

2625

帖子

6

TA的资源

五彩晶圆(初级)

LTspice .Subckt(1) PWM发生器 [复制链接]

任务要求:

  1. 两个输出PWM_H,PWM_L,一个接地
  2. 开关频率100Khz
  3. 输出占空比约等于50%
  4. 可以设置死区
  5. 输出电压为5V

设计步骤

步骤1:

找我们要的器件,既然PWM是时间相关的电压源,我们找电压源即可。

211629yjuetmmllt58lulz.png

步骤2:

选定了V source ,因为V source 提供了多种电压输出模式的选择。

211629pwldp16ptbpl1b1u.png

步骤3:

根据V source 的描述直接选用 PULSE模式,直接将其初始代码拷贝到我们的subckt 里面

* design by xutong

* define a PWM Generate

* Name is PWM_G means PWM Generate

*              PWM output+

*              |  PWM output-

*              |  |  Ground

.subckt PWM_G PH PL GND

Vxxx n+ n- PULSE(V1 V2 Tdelay Trise Tfall Ton Tperiod Ncycles)

.ends

 

步骤4:

根据描述添加一些小细节

 

* design by xutong

* define a PWM Generate

* Name is PWM_G means PWM Generate

*              PWM output+

*              |  PWM output-

*              |  |  Ground

 

.subckt PWM_G PH PL GND

*in this here V1 is Vinitial V2 is Von

*Ncycles remove always have

*Vxxx n+ n- PULSE(V1 V2 Tdelay Trise Tfall Ton Tperiod Ncycles)

*                                   DT=0.2us

Vph1 PH GND PULSE(0 5 1m 0.01u 0.01u 4.8u 10u)

*          if function is an operation,you need to add{}                              

Vpl1 PL GND PULSE(0 5 {1m+5u} 0.01u 0.01u 4.8u 10u)

.ends

 

 

步骤5:

拖入LTspice 生成模块

211629b9jttarlca7vt73a.png

步骤6:带入仿真

211629nlnbnllglq41o31b.png

符合我们设想的样子。但是这个用起来还是麻烦,不能直接控制死区,每次改定义的参数非常麻烦所以需要引入.TEXT类似于C语言的宏定义。

Text 使用说明

.TEXT -- User-Defined Strings

Syntax: .text <name>=<string literal>

Example: .text DIODE = "1N4148"

The .text directive allows the creation of user-defined strings. It allows associating a string with a name. That name can be used, e.g., a model or subcircuit name and then by changing the string associated with the name, a different model or subcircuit is used throughout the simulation.

The .text statement can be included inside a subcircuit definition to limit the scope the string value to that subcircuit. Text substitution evaluation is done before the expanding subcircuits to a flat netlist.

To invoke text substitution and text expression evaluation, enclose the expression in pipe, '|', characters. The enclosed expression will be replaced with string value of the name inside the pipes.

Below is an example using both a global scope and local .text definitions.

*
V1 1 0 PULSE(0 1 0 1u 1u .5m 1m)
R1 |node| 1 |"1" + "K"|
C1 |node| 0 |foobar|
X1 2 div 0 NIX
.text node="2"
.text foo=".1" bar="u"
.text foobar = foo + bar
.tran 3m
.text top="100k"
.text bot="100k"
.subckt nix a b c
.text bot="1Meg"
R1 a b |top| ; uses global scope definition of top
R2 b c |bot| ; uses locally scope definition of bot
.ends nix
.end

And below resultant circuit after .text processing and subcircuit expansion.

*
v1 1 0 pulse(0 1 0 1u 1u .5m 1m)
r1 2 1 1k
c1 2 0 .1u
r:1:1 2 div 100k
r:1:2 div 0 1meg
.tran 3m
.end

Note that pipe characters can include string literals, i.e., |"1" + "K"| is resolves to 1K. This will only happen if there exists at least one .text statement in the netlist. This is because .text is a new feature in LTspice. If there are no .text statements, the pipe character has no special meaning in the interest of running existing simulation in the same way

 

添加宏定义后的模块

* design by xutong

* define a PWM Generate

* Name is PWM_G means PWM Generate

*              PWM output+

*              |  PWM output-

*              |  |  Ground

.subckt PWM_G PH PL GND

*in this here V1 is Vinitial V2 is Von

*Ncycles remove always have

*Vxxx n+ n- PULSE(V1 V2 Tdelay Trise Tfall Ton Tperiod Ncycles)

*setting  dead time and frequency,Duty                      

.text DT="1u"

.text Freq="30k"

.text Duty="0.5"

Vph1 PH GND PULSE(0 5 1m 0.01u 0.01u {{1/|Freq|}*|Duty|-|DT|} {1/|Freq|})

*          if function is an operation,you need to add{}                              

Vpl1 PL GND PULSE(0 5 {1m+{1/|Freq|}/2} 0.01u 0.01u {{1/|Freq|}*|Duty|-|DT|} {1/|Freq|})

.ends

 

 

仿真结果符合我们的设计.

211629gc55w5sc4cp5ikfh.png

OK 今天就先聊到这里,拜拜~

邮箱 xutong@zjbtie.com

 

此帖出自模拟电子论坛

最新回复

不错,有创意啊。  详情 回复 发表于 2022-6-26 15:25
个人签名

希望做一些大家觉得好用的东西!


回复
举报

37

帖子

0

TA的资源

一粒金砂(中级)

不错,有创意啊。
此帖出自模拟电子论坛

点评

过几天在更新一些  详情 回复 发表于 2022-7-24 22:30

回复

2625

帖子

6

TA的资源

五彩晶圆(初级)

bmahu001 发表于 2022-6-26 15:25 不错,有创意啊。

过几天在更新一些

此帖出自模拟电子论坛
个人签名

希望做一些大家觉得好用的东西!


回复
您需要登录后才可以回帖 登录 | 注册

随便看看
查找数据手册?

EEWorld Datasheet 技术支持

相关文章 更多>>
关闭
站长推荐上一条 1/10 下一条

 
EEWorld订阅号

 
EEWorld服务号

 
汽车开发圈

About Us 关于我们 客户服务 联系方式 器件索引 网站地图 最新更新 手机版

站点相关: 国产芯 安防电子 汽车电子 手机便携 工业控制 家用电子 医疗电子 测试测量 网络通信 物联网

北京市海淀区中关村大街18号B座15层1530室 电话:(010)82350740 邮编:100190

电子工程世界版权所有 京B2-20211791 京ICP备10001474号-1 电信业务审批[2006]字第258号函 京公网安备 11010802033920号 Copyright © 2005-2024 EEWORLD.com.cn, Inc. All rights reserved
快速回复 返回顶部 返回列表