Jump to content

State variable


msalemip
 Share

Recommended Posts

  • 4 months later...

My problem is that the set of workers should do a test on the patients and then clean the room and finish the final paper works.

From the simulation, I want to see in what days of the week and what times of the day, the number of workers does not match the demand. (see in what window thought out the week workers are more busy and people experience more waiting time, or workers are less busy).

I am thinking to define some states to save the total time which the worker where busy in a specific window. Or save the wait time of each patient in specific time windows. I want to have access to all the saved values at the end. For example if 1700 patients are generated and 500 of them are served in weekends; I want to see the waiting time of all those 500 patients in the weekends. So I am not looking for a single number. I am looking for some specific state values related to each patient or worker. And dependent on the definition of the state (which time frame it is focused on), I will save it in specific time frames.


I am not sure how I can do that. :roll:

Any help is really appreciated.

Link to comment
Share on other sites

One option is to look at the HourlyStatistics SimBit. This provides a general approach for collecting any statistic in any time periods.

You can also do something somewhat similar using TallyStatistics that are specified in a Time Indexed Table.


For a single replication with any use of TallyStatistics, you can also Enable Interactive Logging (on Advanced Options) to see the individual tally observations.


The ultimate is to use the Write or ExcelWrite step to record any information at any time. For example each time you want to record the value of an expression or state, you might write out ReplicationNumber, TimeNow, ExpressionValue, (and anything else that might be of value).

Link to comment
Share on other sites

×
×
  • Create New...