Get signal name at inport of subsystem

28 visualizzazioni (ultimi 30 giorni)
Jes Jensen
Jes Jensen il 20 Mag 2019
Commentato: Ralf il 21 Nov 2019
Hi,
I would like a subsystem to know the name of its input so that it can be used for a custom logging solution. I expect a callback on the subsystem which defines a variable could be one way to realize it. I just can't figure out how the callback should obtain the name.
Here is an illustration from the top level:
Capture.PNG
And how I would get the value from the callback.
in_subsys.PNG
Do you have any ideas how the callback would look?

Risposta accettata

Fangjun Jiang
Fangjun Jiang il 20 Mag 2019
The first case truely has the signal name. You can get it like below. In second case, you need to get the name of the Constant.
ph=get_param(SysBlockPath,'PortHandles');
sp=ph.Inport(1);
SignalName=get(sp,'Name');
  5 Commenti
Fangjun Jiang
Fangjun Jiang il 19 Nov 2019
You are right. This could be a workaround for both cases, assuming the lines are connected and labeled.
LineHandles=get_param(SysBlockPath,'LineHandles');
hLine=LineHandles.Inport(1)
SrcPortHandle=get(hLine,'SrcPortHandle');
if isequal('on',get(SrcPortHandle,'SignalPropagation'))
signal=get(SrcPortHandle,'PropagatedSignals')
else
signal=get(SrcPortHandle,'Name')
end
Ralf
Ralf il 21 Nov 2019
That is great!
Thank you very much. It solves my problem!
Ralf

Accedi per commentare.

Più risposte (0)

Prodotti


Release

R2019a

Community Treasure Hunt

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

Start Hunting!

Translated by