State Space with Disturbance

85 views (last 30 days)
Azaldo Machava
Azaldo Machava on 21 Jan 2021
Edited: Paul on 28 Apr 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???

Accepted Answer

Paul
Paul on 21 Jan 2021
Edited: Paul on 15 Dec 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 Comments
Tomo
Tomo on 27 Apr 2025
Edited: Tomo on 28 Apr 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 on 27 Apr 2025
Edited: Paul on 28 Apr 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.

Sign in to comment.

More Answers (0)

Community Treasure Hunt

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

Start Hunting!