Designing a decoupling controller
Mostra commenti meno recenti
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 Commenti
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
il 14 Mar 2021
Risposte (0)
Categorie
Scopri di più su Classical Control Design in Centro assistenza e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!


