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!


