State Space with Disturbance

89 visualizaciones (últimos 30 días)
Azaldo Machava
Azaldo Machava el 21 de En. de 2021
Editada: Paul el 28 de Abr. de 2025
I have this system:
Xdot = AX +Bu +Fd,
where A,B and F are the system, input distribution and disturbance distribution matrices respectively and X, U and d are the state, control and disturbance vectors respectively.
i have all the matrices data. i want to know how to use matlab to plot the state variables for a step disturbance.
where i am finding problem is because the standard form of state space in matlab is :Xdot = AX +Bu without the distubance vector.
so how do i input my system in Matlab???

Respuesta aceptada

Paul
Paul el 21 de En. de 2021
Editada: Paul el 15 de Dic. de 2024
Combine d and u into a single input vector:
Xdot = A*X + [B F] * [u;d]
y = C*X + [D 0]*[u;d] % assuming the disurbance doesn't feed directly into output
sys = ss(A,[B F],C,[D zeros(size(C,1),size(F,2))])
  24 comentarios
Tomo
Tomo el 27 de Abr. de 2025
Editada: Tomo el 28 de Abr. de 2025
Hello @Paul,
If you model it this way like you said,
Xdot = A*X + [B F] * [u;d]
Does that mean to determine reachability we would compute W = ( B_{new}, AB_{new},...) where B_{new}=[B F].
Thanks.
Paul
Paul el 27 de Abr. de 2025
Editada: Paul el 28 de Abr. de 2025
If reachability is to be assessed based only on the control input to the system (as is typical), then the reachability matrix would be computed from A and B.

Iniciar sesión para comentar.

Más respuestas (0)

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by