How should I create a Transfer function with nth order polynomial term in denominator in simulink?

2 visualizaciones (últimos 30 días)
I need to implement following transfer function in simulink
Lets say if n = 5 than can you suggest a better method of implementing this other than using 5 blocks of ?

Respuesta aceptada

Paul
Paul el 12 de Abr. de 2021
The power operator works for SISO tf and zpk objects. For example:
>> h=exp(-0.2*tf('s'))*zpk([],-1,1)^5
h =
1
exp(-0.2*s) * -------
(s+1)^5
Continuous-time zero/pole/gain model.
  2 comentarios
Tushar Jain
Tushar Jain el 12 de Abr. de 2021
Thanks For your answer But I want to implement this transfer function in Simulink. Can you please suggest something for that??
Paul
Paul el 12 de Abr. de 2021
Use a Transport Delay block to model the 0.2 s delay. Use an LTI System block to model the the 1/(s+1)^5. In that block, enter zpk([],-1,1)^5 as the LTI System Variable parameter. Connect the output of the Transport Delay to the input of the LTI System.

Iniciar sesión para comentar.

Más respuestas (0)

Productos

Community Treasure Hunt

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

Start Hunting!

Translated by