I have running a model with a block composed of several interfaces (thermal ports). The dimension of the port is variable and sometime can be up to 20x20... When I run the simulation, the calculation are performed (slowly) but the worst part is when the simulation is done and has to prepare all the data (results)..
In the list of the result there are 20x20 of each interface ! this take several minutes to appears. I don't need to know the ports values and I want to hide it.
I tried this :
- Modelica.Thermal.HeatTransfer.Interfaces.HeatPort_a F6[Nw, Nh] annotation(HideResult = true, Placement(visible = true, transformation(origin = {120, -94}, extent = {{-10, -10}, {10, 10}}, rotation = 0), iconTransformation(origin = {150, 120}, extent = {{-10, -10}, {10, 10}}, rotation = 0)));
but it is still showing the result...
Also, I can't use "protected" as I need to access the port in a global model, but also to some variables of the block which are calculated.
Do you have any solution ?
Thanks for your help :)