Package tulip :: Module hybrid :: Class LtiSysDyn
[frames] | no frames]

Class LtiSysDyn


Represent discrete-time continuous-state dynamics:

   s[t+1] = A*s[t] + B*u[t] + E*d[t] + K

subject to the constraints:

   u[t] \in Uset
   d[t] \in Wset
   s[t] \in domain

where:

A LtiSysDyn object contains the fields:

as defined above.

Note

For state-dependent bounds on the input,:

   [u[t]; s[t]] \in Uset

can be used.

See Also

PwaSysDyn, SwitchedSysDyn, polytope.Polytope

Instance Methods
 
__init__(self, A=None, B=None, E=None, K=None, Uset=None, Wset=None, domain=None, time_semantics=None, timestep=None)
x.__init__(...) initializes x; see help(type(x)) for signature
 
__str__(self)
str(x)
 
plot(self, ax=None, color=array([ 0.99229, 0.32288, 0.52286]), show_domain=True, res=(5, 5), **kwargs)

Inherited from object: __delattr__, __format__, __getattribute__, __hash__, __new__, __reduce__, __reduce_ex__, __repr__, __setattr__, __sizeof__, __subclasshook__

Properties

Inherited from object: __class__

Method Details

__init__(self, A=None, B=None, E=None, K=None, Uset=None, Wset=None, domain=None, time_semantics=None, timestep=None)
(Constructor)

 

x.__init__(...) initializes x; see help(type(x)) for signature

Overrides: object.__init__
(inherited documentation)

__str__(self)
(Informal representation operator)

 

str(x)

Overrides: object.__str__
(inherited documentation)