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

推荐订阅源

GbyAI
GbyAI
J
Java Code Geeks
雷峰网
雷峰网
WordPress大学
WordPress大学
宝玉的分享
宝玉的分享
云风的 BLOG
云风的 BLOG
V
Visual Studio Blog
V
Vulnerabilities – Threatpost
S
Securelist
The Hacker News
The Hacker News
The Register - Security
The Register - Security
Threat Intelligence Blog | Flashpoint
Threat Intelligence Blog | Flashpoint
Help Net Security
Help Net Security
G
Google Developers Blog
Hugging Face - Blog
Hugging Face - Blog
CTFtime.org: upcoming CTF events
CTFtime.org: upcoming CTF events
M
MIT News - Artificial intelligence
AI
AI
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
The GitHub Blog
The GitHub Blog
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
Schneier on Security
Schneier on Security
N
Netflix TechBlog - Medium
T
The Blog of Author Tim Ferriss
Google DeepMind News
Google DeepMind News
Hacker News - Newest:
Hacker News - Newest: "LLM"
H
Hacker News: Front Page
博客园 - 司徒正美
K
KPMG report finds enterprise disconnect between AI and its ROI | CIO
B
Blog
Microsoft Azure Blog
Microsoft Azure Blog
大猫的无限游戏
大猫的无限游戏
Security Latest
Security Latest
Engineering at Meta
Engineering at Meta
N
News and Events Feed by Topic
cs.AI updates on arXiv.org
cs.AI updates on arXiv.org
酷 壳 – CoolShell
酷 壳 – CoolShell
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
T
Threat Research - Cisco Blogs
U
Unit 42
V
V2EX
V2EX - 技术
V2EX - 技术
L
LINUX DO - 最新话题
aimingoo的专栏
aimingoo的专栏
Microsoft Security Blog
Microsoft Security Blog
Recorded Future
Recorded Future
P
Privacy & Cybersecurity Law Blog
美团技术团队
小众软件
小众软件
F
Fortinet All Blogs

珒陶

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.