Hello I am trying to implement a transfer function with an exponential and use it as a block in matlab simulink .
조회 수: 4 (최근 30일)
이전 댓글 표시
How do i express the transfer function H(s)=(1 - exp(-0.01s))/s and add the transfer funtion H(s) in simulink as a block?
Thank you for the help.
댓글 수: 0
답변 (1개)
Aquatris
2018년 7월 18일
Exponential term is simply a time delay so you can treat your transfer function as; H(s) = 1/s - exp(-0.01s)*(1/s)
The 1/s transfer functions can be implemented using transfer function block and the exp(-0.01s) can be implemented using transport delay block.
댓글 수: 2
Zaharuddeen Haruna
2020년 7월 27일
You can also use the LTI block of the control system toolbox to implement it:
tf(num,den, 'InputDelay', 0.01)
참고 항목
카테고리
Help Center 및 File Exchange에서 Additional Math and Discrete에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!