msalemip Posted May 18, 2016 Share Posted May 18, 2016 Hi I am defining a state variable. How can I see the value of that state variable at the end of the simulation in the results? Thanks Link to comment Share on other sites More sharing options...
rthiesing Posted May 18, 2016 Share Posted May 18, 2016 I would recommend reading up on State Statistics (Definitions Window) in the Help because that will likely meet your needs. Link to comment Share on other sites More sharing options...
dsturrock Posted May 18, 2016 Share Posted May 18, 2016 Or for just the final value of a state or any expression, use OutputStatistics. Link to comment Share on other sites More sharing options...
msalemip Posted September 23, 2016 Author Share Posted September 23, 2016 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. Any help is really appreciated. Link to comment Share on other sites More sharing options...
dsturrock Posted September 23, 2016 Share Posted September 23, 2016 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 More sharing options...
Recommended Posts