How to represent uncertain transport delays
Show older comments
Hi all,
I would like to have a dynamic system with uncertain transport delay. Is there any straightforward way to do it using Control System and Robust Control toolboxes?
I was able to create either a system with uncertain poles and zeros, or a system with constant ('certain') time delay.
T = ureal('time',1); G_unc = tf(1,[T 1])
Gdel = ss([],[],[],1,'OutputDelay',1)
However, the two things together did not work:
ss([],[],[],1,'OutputDelay',T)
gave the following error (due to ltipack.matchType)
Error using StaticModel/ss (line 107)
Undefined function or variable "A".
and
ss(T,T,T,T,'OutputDelay',T)
resulted in
Error using StaticModel/ss (line 107)
The value of the "OutputDelay" property must be a vector of nonnegative numbers.
Am I missing something? Any help would be appreciated..
Thanks, Ondrej
Accepted Answer
More Answers (0)
Categories
Find more on Uncertain Models in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!