Stuck with electronic circuit simulation..

2 ビュー (過去 30 日間)
Serbianu
Serbianu 2015 年 1 月 11 日
コメント済み: Serbianu 2015 年 1 月 11 日
Can someoane help me to simulate this circuit without using Simulink? Must be solved by using Kirkov's second Law..
  3 件のコメント
Serbianu
Serbianu 2015 年 1 月 11 日
mm, i uploaded it on Flickr https://www.flickr.com/photos/80173698@N08/
Star Strider
Star Strider 2015 年 1 月 11 日
That’s a simple series circuit. Use Laplace transforms for the element impedances and the forcing function ‘U(t)’ (that seems to be a d-c source), solve the circuit equation, take the inverse Laplace transform, and then simulate it with a vector of times. You want the initial transient response.

サインインしてコメントする。

採用された回答

Shoaibur Rahman
Shoaibur Rahman 2015 年 1 月 11 日
R = 1; L = 1; C = 1; % replace by your values
w = 50; % replace by frequency
Z = R+1j*w*L+1./(1j*w*C); % impedence of the circuit
t = 0:0.1:10;
U = sin(t); % voltage
I = U/Z; % current
Now you can find voltages accross other elements.
  1 件のコメント
Serbianu
Serbianu 2015 年 1 月 11 日
Thanks :)

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeSpecialized Power Systems についてさらに検索

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by