필터 지우기
필터 지우기

How can I show Through variables of a Composite Block in Simscape

조회 수: 1 (최근 30일)
Hello
is it possible to show a through variable in the simscape blocks variable section of a composite block.
variables(Access=privat)
G = {0,'kg/s'};
Q = {0,'J/s'};
end
I integrated the following objects:
components(Hidden=true)
chamber = foundation.pneumatic.elements.chamber(Volume=Volume);
orifice = foundation.pneumatic.elements.orifice(Area=Area);
atmosphere = foundation.pneumatic.elements.atmospheric_reference;
end
And connected them with
connections
connect(chamber.A, A);
connect(orifice.A, A);
connect(orifice.B, atmosphere.A);
end
The Across Variables are show right, but the the through variables create an error
equations
p == A.p;
T == A.T;
G == A.G;
Q == A.Q;
end
Error:
Unexpected function or variable 'A'.
Branches can't be used when components are used. Has anybody some kind of idea, for instant by using function setup?
By the way G chamber + G orifice = G and Q chamber + Q orifice = Q.
Thank's in advanced.

채택된 답변

Cedric Götze
Cedric Götze 2015년 7월 27일
The Answer was easier than I expected
equations
p == A.p; % Pressure
T == A.T; % Temperature
G == orifice.G + chamber.G; % Mass flow
Q == orifice.Q1 + chamber.Q; % Heat flow
end

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Composite Components에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by