How can I implement time delay transfer functions in simulink? 250*e-(s*20)/s(1+s/10) ?

235 views (last 30 days)
Help me Please!

Accepted Answer

Paul Metcalf
Paul Metcalf on 29 Jun 2012
Edited: John Kelly on 27 May 2014
Your function is slightly ambiguous with the usage of brackets, but I get what you are trying to achieve. You need to use the Control System Toolbox from where you can access the tf() and lti/exp() functions to create your desired tf object, then use the LTI block to import that into Simulink. http://www.mathworks.com.au/help/toolbox/control/ref/tf.html http://www.mathworks.com.au/help/toolbox/control/ref/ltiexp.html
Alternatively you could use the System Identification Toolbox if you don't have the Control System Toolbox.

More Answers (2)

Arkadiy Turevskiy
Arkadiy Turevskiy on 29 Jun 2012
You can use LTI System block from Control System Toolbox as suggested. Another option is to use Transfer Function block in Simulink in series with Transport Delay block. Use the TRansfer Function block for everything, except the delay, and use the Transport Delay block to model the time delay.
Arkadiy

Nitish Katal
Nitish Katal on 29 Jun 2012
Thanks a lot both of you ... your replies really helped me out ... Thanks

Community Treasure Hunt

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

Start Hunting!