question

dougdurbin avatar image
0 Likes"
dougdurbin asked Parker S edited

Continue Activity After Patient Leaves

In my model after the patient visit I want the staff to do some extra activities after the patient leaves. The problem I'm having is keeping the green token available after the patient is escorted to the exit. I've done this before and split the token so that the patient walks out by themselves and the staff completes some other tasks. However, in this case, after the patient is escorted out, the staff will not start the other activities. After the escort activity, I have the remove patient and sink activities. I have a token split right before the escort activity but the token will sink on the "split activities" after the escort activity. An option would be to not remove the patient and sink and just have those 2 activities happen after the staff activities but might mess up performance metrics. I've thought about creating tokens as well but I can't seem to get that quite right. Is there a better way that I'm not thinking of to continue activities for staff after the patient leaves? (e.g. cleaning an acquired room after patient exits the model, which I assume is released as the patient exits and is not acquired anymore)

FlexSim 20.1.3
flexsim 20.1.3activities
· 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.

Cliff King avatar image
1 Like"
Cliff King answered Parker S edited

You're thinking like a master Doug! I've been going through my own parallel learning process over here, and this is what I've learned:

1. If all you want to do is use the same staff member who works on the patient to do the cleaning after the patient leaves, then it's less work to use the standard maintenance feature on patient locations and set a label on the location before the patient leaves to record which staff member is being used. Unfortunately, there's not a picklist option in the maintenance staff field to do this automatically (I will talk to @matthew.gillespie about the possibility of passing more information into that field and the others for maintenance). Here's an example model of this approach.

Standard_Maintenance_Option_to_Clean_Room_with_Last_Used_Staff.fsm

2. It's impossible to continue activities in a patient flow after the patient leaves the model because the instance of the patient flow associated with the patient is destroyed. Therefore, it's necessary to use a general process flow that's kicked off by a Create Token activity in the patient flow. Here's an example model of this approach that is much easier to follow than the one referenced in the previous post I gave you. It also handles the releasing and reacquiring of the bed and nurse better so that a new entering patient doesn't jump in a vacated bed before it is cleaned. There are lots of steps in this approach, so review it carefully. Also note how I position the Create Token activity before releasing resources, and how in the general process flow that has to reacquire the bed and nurse I use a higher priority (151) so the requests are put to the top of the queue ahead of those requests generated by new patients entering.

General_Process_Flow_to_Clean_Room_After_Patient_Leaves.fsm

3. Do like @tee.hiett suggested and don't let the patient leave the model until after all the "post departure" activities have completed. In this case, you must be sure and manage your patient statistics correctly. For instance, instead of using the default People Staytime charts to get patient LOS, but instead put a milestone in your patient flow to define a "Departure" milestone at a point when the patients theoretically leaves the system and then use the Milestone-Milestone chart to get LOS. Any other metrics that are based on the time a patient is "in" the model will need to be modified as well.

I also wanted to add the following feedback about charts for option 3 that Jordan Johnson mentioned to me:

The person states would also be affected; you'd probably want to put the person in an excluded state somehow, so that those stats wouldn't be affected.

The model census (bar chart or histogram) may also have trouble. You'd need to set a label on the person when they finish, and then filter out everyone with that label.

I don't think it would effect any other charts.


· 9
5 |100000

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

Cliff King avatar image
0 Likes"
Cliff King answered Cliff King converted comment to answer

This other post solves it by putting the activities for cleaning the room in a general process flow rather than in the patient instance flow. As you (and he) discovered, the token created with either a Split or the Create Token activity is destroyed when the patient is removed. This is because the whole instance flow is destroyed at that time. I'd still like to get @matthew.gillespie to weigh in on this when he returns to work.

https://answers.flexsim.com/questions/86002/how-to-manage-in-maintenance-on-release.html

· 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.