#5924 closed defect (duplicate)
annotation(DynamicSelect)
Reported by: | Anton Haumer | Owned by: | Adeel Asghar |
---|---|---|---|
Priority: | critical | Milestone: | 1.16.0 |
Component: | OMEdit | Version: | v1.16.0-dev |
Keywords: | Cc: | ahaumer@…, christian@… |
Description
OM ignores the
annotation(Icon(Text(textString=DynamicSelect(...)...)...)...);
I would like to use that to provide an experiment to students.
They shall vary a parameter and take notes of the readings (measurements). This is a virtual replacement for a lab experiment - necessary due to the Corona pandemic.
Is there any help available within short?
Attachments (1)
Change History (5)
by , 5 years ago
Attachment: | PMP_V16.mo added |
---|
comment:1 by , 5 years ago
Component: | *unknown* → OMEdit |
---|---|
Milestone: | Future → 1.16.0 |
Owner: | changed from | to
Priority: | high → critical |
Status: | new → assigned |
@ahaumer, let's see what we can do. I think this would be a very useful feature given the current times. Promoting OMC for virtual labs during the corona crisis would be a good strategy, if we can deliver performance.
@adeas31, how long would it take to add this feature?
comment:2 by , 5 years ago
Resolution: | → duplicate |
---|---|
Status: | assigned → closed |
We do have some basic support for DynamicSelect but new frontend is required to evaluate expressions etc. Also right now it is not working if you have Enable new frontend use in the OMC API (faster GUI response)
enabled in Tools->Options->Simulation
. Disable that option and restart OMEdit.
comment:3 by , 4 years ago
This would be a very desired feature as the IBPSA and Buildings library uses DynamicSelect()
in a lot of models. As most users (me included for many weeks) are not likely to know that the setting in Tools->Options->Simulation
affects the display in the model editor, it would be nice if in the meantime, until this is fixed, OMEdit could simply render the icon with the first argument of the DynamicSelect()
statement. This way, the system model would still be legible.
Below is a small test problem.
within ; package DynamicSelectTest model SystemModel "System model that uses the block" TestBlock testBlock annotation (Placement(transformation(extent={{-10,-10},{10,10}}))); end SystemModel; block TestBlock "Block that uses dynamic select" extends Modelica.Blocks.Icons.Block; Real t = time; annotation ( Icon(graphics={ Text( extent={{226,60},{106,10}}, lineColor={0,0,0}, textString=DynamicSelect("", String(t, leftjustified=false, significantDigits=3))), Rectangle( extent={{-60,80},{-20,-22}}, lineColor={28,108,200}, fillColor=DynamicSelect({0,0,255}, if t > 0.5 then {255,0,0} else {0,0,255}), fillPattern=FillPattern.Solid), Text( extent={{-44,-32},{20,-62}}, lineColor={28,108,200}, fillColor={28,108,200}, fillPattern=FillPattern.None, textString="Test")})); end TestBlock; end DynamicSelectTest;
Example for annotation(DynamicSelect)