![]() |
- 3.0.2 core module.
|
interface class for a general switched linear system or linearized system More...
#include <SwitchedLinearSystem.h>
Public Types | |
typedef Switched< LinearSystemPtr > | SwitchedLinearSystems |
typedef ControlledSystem< STATE_DIM, CONTROL_DIM, SCALAR > | Base |
typedef Base::time_t | time_t |
typedef StateVector< STATE_DIM, SCALAR > | state_vector_t |
state vector type More... | |
typedef ControlVector< CONTROL_DIM, SCALAR > | control_vector_t |
input vector type More... | |
typedef StateMatrix< STATE_DIM, SCALAR > | state_matrix_t |
state Jacobian type More... | |
typedef StateControlMatrix< STATE_DIM, CONTROL_DIM, SCALAR > | state_control_matrix_t |
input Jacobian type More... | |
![]() | |
typedef Base::time_t | time_t |
typedef StateVector< STATE_DIM, SCALAR > | state_vector_t |
state vector type More... | |
typedef ControlVector< CONTROL_DIM, SCALAR > | control_vector_t |
input vector type More... | |
typedef StateMatrix< STATE_DIM, SCALAR > | state_matrix_t |
state Jacobian type More... | |
typedef StateControlMatrix< STATE_DIM, CONTROL_DIM, SCALAR > | state_control_matrix_t |
input Jacobian type More... | |
![]() | |
typedef std::shared_ptr< ControlledSystem< STATE_DIM, CONTROL_DIM, SCALAR > > | Ptr |
typedef Base::time_t | time_t |
![]() | |
typedef SCALAR | time_t |
the type of the time variable More... | |
Public Member Functions | |
SwitchedLinearSystem (const SwitchedLinearSystems &switchedLinearSystems, const ContinuousModeSequence &continuousModeSequence, const ct::core::SYSTEM_TYPE &type=ct::core::SYSTEM_TYPE::GENERAL) | |
default constructor More... | |
SwitchedLinearSystem (const SwitchedLinearSystem &arg) | |
copy constructor More... | |
virtual | ~SwitchedLinearSystem () |
destructor More... | |
virtual SwitchedLinearSystem< STATE_DIM, CONTROL_DIM, SCALAR > * | clone () const override |
deep cloning More... | |
virtual const state_matrix_t & | getDerivativeState (const state_vector_t &x, const control_vector_t &u, const time_t t=time_t(0.0)) override |
get the A matrix of a linear system More... | |
virtual const state_control_matrix_t & | getDerivativeControl (const state_vector_t &x, const control_vector_t &u, const time_t t=time_t(0.0)) override |
get the B matrix of a linear system More... | |
![]() | |
LinearSystem (const ct::core::SYSTEM_TYPE &type=ct::core::SYSTEM_TYPE::GENERAL) | |
default constructor More... | |
virtual | ~LinearSystem () |
destructor More... | |
virtual void | computeControlledDynamics (const state_vector_t &state, const time_t &t, const control_vector_t &control, state_vector_t &derivative) override |
compute the system dynamics More... | |
virtual void | getDerivatives (state_matrix_t &A, state_control_matrix_t &B, const state_vector_t &x, const control_vector_t &u, const time_t t=time_t(0.0)) |
Get both linear system matrices A and B in one call. More... | |
![]() | |
ControlledSystem (const SYSTEM_TYPE &type=SYSTEM_TYPE::GENERAL) | |
default constructor More... | |
ControlledSystem (std::shared_ptr< ct::core::Controller< STATE_DIM, CONTROL_DIM, SCALAR >> controller, const SYSTEM_TYPE &type=SYSTEM_TYPE::GENERAL) | |
constructor More... | |
ControlledSystem (const ControlledSystem &arg) | |
copy constructor More... | |
virtual | ~ControlledSystem () |
destructor More... | |
void | setController (const std::shared_ptr< Controller< STATE_DIM, CONTROL_DIM, SCALAR >> &controller) |
set a new controller More... | |
void | getController (std::shared_ptr< Controller< STATE_DIM, CONTROL_DIM, SCALAR >> &controller) const |
get the controller instance More... | |
std::shared_ptr< Controller< STATE_DIM, CONTROL_DIM, SCALAR > > | getController () |
get the controller instace More... | |
virtual void | computeDynamics (const StateVector< STATE_DIM, SCALAR > &state, const time_t &t, StateVector< STATE_DIM, SCALAR > &derivative) override |
compute the dynamics of the system More... | |
virtual void | computeControlledDynamics (const StateVector< STATE_DIM, SCALAR > &state, const time_t &t, const ControlVector< CONTROL_DIM, SCALAR > &control, StateVector< STATE_DIM, SCALAR > &derivative)=0 |
ControlVector< CONTROL_DIM, SCALAR > | getLastControlAction () |
![]() | |
System (const SYSTEM_TYPE &type=SYSTEM_TYPE::GENERAL) | |
default constructor More... | |
System (const System &other) | |
copy constructor More... | |
virtual | ~System () |
destructor More... | |
virtual void | computeDynamics (const StateVector< STATE_DIM, SCALAR > &state, const time_t &t, StateVector< STATE_DIM, SCALAR > &derivative)=0 |
computes the system dynamics More... | |
SYSTEM_TYPE | getType () const |
get the type of system More... | |
virtual bool | isSymplectic () const |
Determines if the system is in symplectic form. More... | |
Public Attributes | |
EIGEN_MAKE_ALIGNED_OPERATOR_NEW typedef std::shared_ptr< LinearSystem< STATE_DIM, CONTROL_DIM, SCALAR > > | LinearSystemPtr |
![]() | |
EIGEN_MAKE_ALIGNED_OPERATOR_NEW typedef ControlledSystem< STATE_DIM, CONTROL_DIM, SCALAR > | Base |
![]() | |
EIGEN_MAKE_ALIGNED_OPERATOR_NEW typedef System< STATE_DIM, SCALAR > | Base |
![]() | |
EIGEN_MAKE_ALIGNED_OPERATOR_NEW typedef SCALAR | S |
the scalar type More... | |
Additional Inherited Members | |
![]() | |
std::shared_ptr< Controller< STATE_DIM, CONTROL_DIM, SCALAR > > | controller_ |
the controller instance More... | |
ControlVector< CONTROL_DIM, SCALAR > | controlAction_ |
![]() | |
SYSTEM_TYPE | type_ |
type of system More... | |
interface class for a general switched linear system or linearized system
Defines the interface for a switched linear system
STATE_DIM | size of state vector |
CONTROL_DIM | size of input vector |
typedef Switched<LinearSystemPtr> ct::core::SwitchedLinearSystem< STATE_DIM, CONTROL_DIM, SCALAR >::SwitchedLinearSystems |
typedef ControlledSystem<STATE_DIM, CONTROL_DIM, SCALAR> ct::core::SwitchedLinearSystem< STATE_DIM, CONTROL_DIM, SCALAR >::Base |
typedef Base::time_t ct::core::SwitchedLinearSystem< STATE_DIM, CONTROL_DIM, SCALAR >::time_t |
typedef StateVector<STATE_DIM, SCALAR> ct::core::SwitchedLinearSystem< STATE_DIM, CONTROL_DIM, SCALAR >::state_vector_t |
state vector type
typedef ControlVector<CONTROL_DIM, SCALAR> ct::core::SwitchedLinearSystem< STATE_DIM, CONTROL_DIM, SCALAR >::control_vector_t |
input vector type
typedef StateMatrix<STATE_DIM, SCALAR> ct::core::SwitchedLinearSystem< STATE_DIM, CONTROL_DIM, SCALAR >::state_matrix_t |
state Jacobian type
typedef StateControlMatrix<STATE_DIM, CONTROL_DIM, SCALAR> ct::core::SwitchedLinearSystem< STATE_DIM, CONTROL_DIM, SCALAR >::state_control_matrix_t |
input Jacobian type
|
inline |
default constructor
type | system type |
Referenced by ct::core::SwitchedLinearSystem< STATE_DIM, CONTROL_DIM, SCALAR >::clone().
|
inline |
copy constructor
|
inlinevirtual |
destructor
|
inlineoverridevirtual |
deep cloning
Implements ct::core::LinearSystem< STATE_DIM, CONTROL_DIM, SCALAR >.
References ct::core::SwitchedLinearSystem< STATE_DIM, CONTROL_DIM, SCALAR >::SwitchedLinearSystem().
|
inlineoverridevirtual |
get the A matrix of a linear system
x | state vector (required for linearizing non-linear systems, ignored for pure linear system) |
u | input vector (required for linearizing non-linear systems, ignored for pure linear system) |
t | current time |
Implements ct::core::LinearSystem< STATE_DIM, CONTROL_DIM, SCALAR >.
References ct::core::PhaseSequence< Phase, Time >::getPhaseFromTime(), and t.
Referenced by TEST().
|
inlineoverridevirtual |
get the B matrix of a linear system
x | state vector (required for linearizing non-linear systems, ignored for pure linear system) |
u | input vector (required for linearizing non-linear systems, ignored for pure linear system) |
t | current time |
Implements ct::core::LinearSystem< STATE_DIM, CONTROL_DIM, SCALAR >.
References ct::core::PhaseSequence< Phase, Time >::getPhaseFromTime(), and t.
Referenced by TEST().
EIGEN_MAKE_ALIGNED_OPERATOR_NEW typedef std::shared_ptr<LinearSystem<STATE_DIM, CONTROL_DIM, SCALAR> > ct::core::SwitchedLinearSystem< STATE_DIM, CONTROL_DIM, SCALAR >::LinearSystemPtr |
Referenced by TEST().