Designing a decoupling controller
Afficher commentaires plus anciens
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 commentaires
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
le 14 Mar 2021
Réponses (0)
Catégories
En savoir plus sur Classical Control Design dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!


