10362|2

2625

帖子

6

TA的资源

五彩晶圆(初级)

楼主
 

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

任务要求:

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

设计步骤

步骤1:

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

步骤2:

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

步骤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 生成模块

步骤6:带入仿真

符合我们设想的样子。但是这个用起来还是麻烦,不能直接控制死区,每次改定义的参数非常麻烦所以需要引入.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

 

 

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

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

邮箱 xutong@zjbtie.com

 

此帖出自模拟电子论坛

最新回复

不错,有创意啊。  详情 回复 发表于 2022-6-26 15:25
点赞 关注(1)
个人签名

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


回复
举报

37

帖子

0

TA的资源

一粒金砂(中级)

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

点评

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

回复

2625

帖子

6

TA的资源

五彩晶圆(初级)

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

过几天在更新一些

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

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

 
 
 

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

查找数据手册?

EEWorld Datasheet 技术支持

相关文章 更多>>
推荐帖子
Keil软件仿真的串口调试技巧

在单片机系统中,串口(UART,通用异步收发接口)是一个非常重要的组成部分。通常使用单片机串口通过RS232/RS485电平转换芯片与 ...

定时计数器T0作定时应用技术(一)

1. 实验任务 用AT89S51单片机的定时/计数器T0产生一秒的定时时间,作为秒计数时间,当一秒产生时,秒计数加1,秒计数到60时, ...

说说2812

1 芯片介绍 TMS320F2812是 TI公司新近推出的 2 000家族中的一款 32位定点 DSP ,适于电机控制系统应 用。其自身的性能特点如 ...

无所不能的matlab,你心动吗?

先来看看它的系统仿真-------引擎!!! 18681 再来看看它支持的东东!!! 18682 Matlab常用工具箱   MATLA ...

电容的安秒积和电感的伏秒积

  《电工学》或者《电路分析》教材中,对电容的定义是这样的,如图(01),满足图(01)式的电路元件,就是电容。式中i和u都是时间 ...

网状 Wi-Fi 系统增强智能家居应用,轻松搞定连接

在当今的智能家居中,用户经常纠结于信号范围和质量(不满意信号覆盖范围和信号质量)。连接不了网,看不了新闻,联系不了朋友, ...

ESP32的Xtensa内核有了解的没?

看到ESP32数据手册里有这么一句话: ESP32-S2 采用哈佛结构 Xtensa® LX7 CPU 构成单核系统。所有的内部存储器、外部存储 ...

GD32L233C-START评测——06.LPUART+DMA+MCU睡眠唤醒——综合试验1

本帖最后由 wadeRen 于 2022-2-25 10:14 编辑 # (https://bbs.eeworld.com.cn/thread-1192154-1-1.html) (http://bbs.eew ...

LicheePi 4A安装linuxcnc

安装实时内核 1、编译实时内核 参考: https://blog.csdn.net/weixin_51760563/article/details/122231647 2、 ...

IAR 6.30 安装包

链接:https://pan.baidu.com/s/1w-MRhq_2VsIZ4rXYjBSzKg 提取码:6666

关闭
站长推荐上一条 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
快速回复 返回顶部 返回列表