State Space with Disturbance

92 vues (au cours des 30 derniers jours)
Azaldo Machava
Azaldo Machava le 21 Jan 2021
Modifié(e) : Paul le 28 Avr 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???

Réponse acceptée

Paul
Paul le 21 Jan 2021
Modifié(e) : Paul le 15 Déc 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 commentaires
Tomo
Tomo le 27 Avr 2025
Modifié(e) : Tomo le 28 Avr 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 le 27 Avr 2025
Modifié(e) : Paul le 28 Avr 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.

Connectez-vous pour commenter.

Plus de réponses (0)

Community Treasure Hunt

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

Start Hunting!

Translated by