@Tony Nikolov
Looking at your follow-up questions, it seems that there are two main things you want to do with the Experimenter:
- Add an operator to a specific shift in the Experimenter.
- Access data from all of your performance measures in one place.
For your first question, you can run a code in the Experimenter to join an operator to a specific time table in the model tree. It is run in the "Start of Replication" code of the "Advanced" tab in the Experimenter. This is what it would look like, only with the specific names and locations for your model:
treenode operator = node("Operator8", model());
treenode timetable = node("Tools/TimeTables/TimeTable1", model());
treenode operatorTimeTableNode = nodeadddata(nodeinsertinto(getvarnode(operator,"timetables")), DATATYPE_COUPLING);
treenode timetableMemberNode = nodeadddata(nodeinsertinto(getvarnode(timetable,"members")), DATATYPE_COUPLING);
setname(operatorTimeTableNode, getname(timetable));
setname(timetableMemberNode, getname(operator));
nodejoin(operatorTimeTableNode, timetableMemberNode);
For your second question, you can access your performance measure data in the tree. Under Tools->Experimenter->Performance Measures you can select each performance measure and look at their stats.