i am trying to count and record the time and that task executors pass through a Network Node in the model (i am using Flexsim 5) .. what is the trigger that will satisfy my propose and what commands ?
i am trying to count and record the time and that task executors pass through a Network Node in the model (i am using Flexsim 5) .. what is the trigger that will satisfy my propose and what commands ?
OnArrival trigger, to count the task executors increment a labels value (e.g. inc(label(current,"count")))) to record times use something as: addtablerow("times"); settablenum("times",gettablerows("times"),1,time);
thank you @Marco Baccalaro
now i want to get the arrival rate for task executors to this node per each half an hour (30 min) of simulation , please give me detailed explanation if applicable..
I'd use a User Event that is executed every 30 min, you can read and write in a node the last total task executors passed though the node in order to know the difference of the last 30 mins.
E.g.
int last_count = getlabel(network_node,"last count"); int new_count = getlabel(newtork_node,"count"); int count_in_last_30_min = new_count - last_count; setlabel(network_node,"last count",new_count); // then you can write the count_in_last_30_min value in a table or where you want
4 People are following this question.
FlexSim can help you understand and improve any system or process. Transform your existing data into accurate predictions.
FlexSim is a fully 3D simulation software environment. FlexSim can be used to simulate any process in any industry.
FlexSim®, FlexSim Healthcare™, Problem Solved.®, the FlexSim logo, the FlexSim X-mark, and the FlexSim Healthcare logo with stylized Caduceus mark are trademarks of FlexSim Software Products, Inc. All rights reserved.
Privacy | Do not sell or share my personal information | Cookie preferences | Report noncompliance | Terms of use | Legal | © Autodesk Inc. All rights reserved