How to input exponentials in transfer functions using Simulink?

回答 (3 件)

Sam Chak
Sam Chak 2023 年 3 月 22 日

0 投票

You can insert the Transport Delay block (found in the Library of Continuous function blocks) after the transfer function.
See example here:
Walter Roberson
Walter Roberson 2023 年 3 月 22 日

0 投票

If this must be implemented as transfer functions then you will need to copy the transfer function block several times, set the Input Delay differently on each copy, and then add the results all together.
Each individual transfer function can only represent a single exp(), not a sum of exp()

3 件のコメント

Walter Roberson
Walter Roberson 2023 年 3 月 22 日
ss (state space) blocks can handle everything in one block.
Paul
Paul 2023 年 3 月 22 日
Neither the Transfer Fcn nor the State Space block can model an Input Delay (nor Output Delay) as far as I can tell.
Walter Roberson
Walter Roberson 2023 年 3 月 30 日
You are right, @Paul -- that is a difference between the Simulink blocks and the MATLAB functions.

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

Paul
Paul 2023 年 3 月 22 日

0 投票

In addition to using a single transfer function along with gains and transport delays as suggested by @Sam Chak, if you have the Control SystemToolbox, you can use one LTI System block and enter the transfer function as the LTI system variable parameter. For example, if
H(s) = 1/(s +1)*(exp(-1*s) - exp(-0.5*s))
then the expression for the block parameter would be:
tf(1,[1 1])*( exp(-1*tf('s')) - exp(-0.5*tf('s')) )

カテゴリ

ヘルプ センター および File ExchangeSimulink についてさらに検索

製品

リリース

R2018b

質問済み:

2023 年 3 月 22 日

コメント済み:

2023 年 3 月 30 日

Community Treasure Hunt

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

Start Hunting!

Translated by