Designing a decoupling controller
이전 댓글 표시
I have two control loops in simulink that need a decoupler to fix the inverse effect they have on each other.
I have the two transfer functions g(s) to plug between the two loops, but MATLAB 2020b doesn’t have an option for transfer functions in the form Aexp(-Bs), and I can’t find a work around.
If someone can give me any ideas it’d be of great help, thanks!
댓글 수: 3
exp() is supported for negative constant time s -- exp(-Bs) would be valid for B being a positive constant. It translates into a delay.
s = tf('s');
f = (s^2 - 1)/(s^3 + s - 1)
g = (s^2 + 1)/(s^3 + s + 1)
step(f)
step(g)
h = f * exp(-5*s) + g * exp(-10*s)
step(h)
mehul kishan
2021년 3월 14일
답변 (0개)
카테고리
도움말 센터 및 File Exchange에서 Classical Control Design에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!


