필터 지우기
필터 지우기

state space of computation for combination of two plants

조회 수: 12 (최근 30일)
Waqar Ahmed
Waqar Ahmed 2020년 5월 17일
답변: Star Strider 2020년 5월 17일
I have two plants and I know the state space representation of it. how can i obtain the state space parameter for combination of two plants if they are in series
[Ap,Bp,Cp,Dp]=ssdata(P);
[Av,Bv,Cv,Dv]=ssdata(Wv);
if both of them are in series how can the state space parameter be computed

답변 (1개)

Star Strider
Star Strider 2020년 5월 17일
Multiply them, or use the series function. The Control System Toolbox does everything else.
Example —
A1 = randi(9,2)
B1 = randi(9,2,1)
C1 = randi(9,1,2)
D1 = 0
A2 = randi(9,2)
B2 = randi(9,2,1)
C2 = randi(9,1,2)
D2 = 0
C = ss(A1,B1,C1,D1) * ss(A2,B2,C2,D2) % Series Connection
The ‘C’ variable now has the complete series representation of the two models.

카테고리

Help CenterFile Exchange에서 Dynamic System Models에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by