惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

L
LINUX DO - 热门话题
Stack Overflow Blog
Stack Overflow Blog
B
Blog
WordPress大学
WordPress大学
Project Zero
Project Zero
P
Palo Alto Networks Blog
阮一峰的网络日志
阮一峰的网络日志
博客园 - 司徒正美
有赞技术团队
有赞技术团队
S
SegmentFault 最新的问题
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
小众软件
小众软件
T
Tailwind CSS Blog
Forbes - Security
Forbes - Security
F
Full Disclosure
SecWiki News
SecWiki News
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
Hacker News: Ask HN
Hacker News: Ask HN
C
Check Point Blog
Microsoft Security Blog
Microsoft Security Blog
Threat Intelligence Blog | Flashpoint
Threat Intelligence Blog | Flashpoint
F
Fortinet All Blogs
Cisco Talos Blog
Cisco Talos Blog
G
Google Developers Blog
J
Java Code Geeks
Google DeepMind News
Google DeepMind News
人人都是产品经理
人人都是产品经理
CTFtime.org: upcoming CTF events
CTFtime.org: upcoming CTF events
Recorded Future
Recorded Future
O
OpenAI News
Spread Privacy
Spread Privacy
MongoDB | Blog
MongoDB | Blog
H
Hackread – Cybersecurity News, Data Breaches, AI and More
C
Cybersecurity and Infrastructure Security Agency CISA
S
Securelist
V
Vulnerabilities – Threatpost
Y
Y Combinator Blog
IT之家
IT之家
U
Unit 42
腾讯CDC
S
Security Affairs
C
Cisco Blogs
Schneier on Security
Schneier on Security
The Last Watchdog
The Last Watchdog
B
Blog RSS Feed
宝玉的分享
宝玉的分享
cs.AI updates on arXiv.org
cs.AI updates on arXiv.org
S
Security @ Cisco Blogs
Cyberwarzone
Cyberwarzone
T
The Blog of Author Tim Ferriss

珒陶

Windows下OpenCV交叉编译到ARM-Linux - 珒陶 本博客基本完成迁移 - 珒陶 微软在GitHub合并了我提交的PR! - 珒陶 C语言实现中缀表达式计算 - 珒陶 使用VSCode编辑Keil μVision5项目,并用Makefile自动化编译和下载 - 珒陶 Murmurer 现已上架Google Play! - 珒陶 MindCanvas 思维导图现已开源! - 珒陶 本站已更新 - 珒陶 本站已恢复 - 珒陶
LC电路分析入门 - 珒陶
珒陶 珒陶 · 2024-10-12 · via 珒陶

图片

分析上图开关闭合后Uout随时间的变化,步骤如下:

电容:I=CdUdtI=C\frac{{\rm d}U}{{\rm d}t}
电感:U=LdIdtU=L\frac{{\rm d}I}{{\rm d}t}

列电路的电压关系

Uout+UL=UVCCU_{out}+U_L=U_{VCC}

带入电感公式,得

Uout+LdIdt=UVCCU_{out}+L\frac{{\rm d}I}{{\rm d}t}=U_{VCC}

带入电容公式,得

Uout+LCd2Uoutdt2=UVCCU_{out}+LC\frac{{\rm d}^2 U_{out}}{{\rm d}t^2}=U_{VCC}

这是一个二阶常系数非齐次线性微分方程,解为齐次通解+非齐次特解,懒得写具体解法了,就是代公式。

齐次通解为

u′(t)=C1cos⁡tLC+C2sin⁡tLCu^{'}(t)=C_1\cos{\frac{t}{\sqrt{LC}}}+C_2\sin{\frac{t}{\sqrt{LC}}}

特解是一个常数。把Uout=C0U_{out}=C_0带入原方程,解得C0=UVCCC_0=U_{VCC}

此时解为

u(t)=C1cos⁡tLC+C2sin⁡tLC+UVCCu(t)=C_1\cos{\frac{t}{\sqrt{LC}}}+C_2\sin{\frac{t}{\sqrt{LC}}}+U_{VCC}

找初始条件。注意到t=0t=0时,Uout=0U_{out}=0I=0I=0,结合电容公式,dUoutdt=0\frac{{\rm d}U_{out}}{{\rm d}t}=0,解得C1=−UVCCC_1=-U_{VCC}C2=0C_2=0,所以

Uout=−UVCCcos⁡tLC+UVCCU_{out}=-U_{VCC}\cos{\frac{t}{\sqrt{LC}}}+U_{VCC}

令L=1H,C=1F,仿真一下

图片-1728662585832

结果正确。


附一个表,输入LC参数自动计算频率。

L(H) C(F) ω(rad/s) T(s) f(Hz)
1 1 1 6.28 0.16

Q.E.D.