question

Swami Premnidhi avatar image
0 Likes"
Swami Premnidhi asked Swami Premnidhi commented

Add Objects To Statistics Collector Using Code

Hi Support,

I want to add objects dynamically to enumerate event on reset in the statistics collector.

Attaching a model for your reference.

Similar to the link given below. May be a function_s() code will do the job. But don't know the exact string to be used in the function.

https://answers.flexsim.com/questions/43999/dynamically-adding-events-to-statistics-collector.html

Thanks in advance.

Regards,

Swami

FlexSim 20.2.2
flexsim 20.2.2statistic collectordashboard display
· 1
5 |100000

Up to 12 attachments (including images) can be used with a maximum of 23.8 MiB each and 47.7 MiB total.

Jordan Johnson avatar image
1 Like"
Jordan Johnson answered Swami Premnidhi commented

You can add a Group to the list of objects to enumerate. So I would put the object in a Group, and then add that Group to the list of objects to enumerate, instead of enumerating the object directly. Whatever is in the Group on reset will be added to the chart.


· 4
5 |100000

Up to 12 attachments (including images) can be used with a maximum of 23.8 MiB each and 47.7 MiB total.

Jason Lightfoot avatar image
1 Like"
Jason Lightfoot answered Jordan Johnson commented

As Jordan states in your link - this may change in the future but for now you can try this:

  1. Object X = Model.find("TrolleyOutLoc");
  2. treenode enumerator = model().find("Tools/StatisticsCollectors/StatisticsCollector1>variables/eventReferences/Enumerate1");
  3. function_s(enumerator, "addObject", X);


· 2
5 |100000

Up to 12 attachments (including images) can be used with a maximum of 23.8 MiB each and 47.7 MiB total.