I have a transfer function as shown, how do i introduce this block in simulink

2 views (last 30 days)
exp(-0.2s)/(0.1s+1)

Answers (1)

Paul
Paul on 30 Mar 2023
Use a Tranport Delay block with Time Delay parameter of 0.2 in series with a Transfer Fcn with Numerator 1 and Denominator [0.1 1].
Or, use an LTI System block with LTI System Variable set to: exp(-0.2*tf('s'))/(0.1*tf('s') + 1)

Community Treasure Hunt

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

Start Hunting!