フィルターのクリア

How can I avoid Algebraic loops In these equations

1 回表示 (過去 30 日間)
Anuj
Anuj 2014 年 1 月 27 日
コメント済み: Anuj 2014 年 1 月 28 日
Hi,
I Have two equations of the form-
1) dy/dt = A - By - Cdx/dt + Dx, and
2) dx/dt = E - Fx - Gdy/dt + Hy.
I want to apply them in a Simulink model, Is there any way I can do it without using Algebraic loops?
Thanks

採用された回答

A Jenkins
A Jenkins 2014 年 1 月 28 日
If you are smart about it, you may be able to avoid a memory block. Depending on the properties of your numbers (for example, if 1+GC is invertible), you may be able to rewrite the equations:
dy/dt = A-B*y-C*(dx/dt)+D*x
dx/dt = E-F*x-G*(dy/dt)+H*y
dx/dt = E-F*x-G*(A-B*y-C*(dx/dt)+D*x)+H*y
dx/dt = (E-F*x-G*(A-B*y+D*x)+H*y)/(1+GC)
  1 件のコメント
Anuj
Anuj 2014 年 1 月 28 日
Thanks for your suggestion, I didn't think this way.

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

その他の回答 (1 件)

Mischa Kim
Mischa Kim 2014 年 1 月 28 日
  1 件のコメント
Anuj
Anuj 2014 年 1 月 28 日
That one suggests to include delay or memory, but in the above system how will i use delay/memory?

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

カテゴリ

Help Center および File ExchangeGeneral Applications についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by