State Space with Disturbance

97 次查看(过去 30 天)
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???

采纳的回答

Paul
Paul 2021-1-21
编辑:Paul 2024-12-15
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 个评论
Tomo
Tomo 2025-4-27
编辑:Tomo 2025-4-28
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 2025-4-27
编辑:Paul 2025-4-28
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.

请先登录,再进行评论。

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 PID Controller Tuning 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by