question

Katie M avatar image
0 Likes"
Katie M asked Katie M commented

Assigning a second nurse to cover an area when the other is on break.

dgh-ed-triage-12-12-17.fsm

In this model I have 2 nurses (1 assigned to triage1 and the second assigned to triage 2). Triage 1 is the "Lead" nurse and the second nurse is only prompted to work (and use triage 2 when there is more than 1 person in the waiting room. This works fine, however the problem I'm running into is that when nurse 1 is on break or lunch, I cannot seem to get the 2nd nurse to cover her (until there is more than 1 person in the waiting room).

This screenshot shows how I'm attempting to call the second nurse is the other is not available (and vice versa) however it doesn't seem to work. Any help would be appreciated. Thanks.

capture.png

FlexSim HC 5.1.0
nursetriage
· 2
5 |100000

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

Jeff Nordgren avatar image Jeff Nordgren commented ·
@Katie M

Did you receive an answer to your question?

0 Likes 0 ·
Katie M avatar image Katie M commented ·

No, I haven't. Do you have any ideas @Jeff Nordgren? Thanks

0 Likes 0 ·

1 Answer

·
Cliff King avatar image
0 Likes"
Cliff King answered

I don't see this situation in your model because there are no shift schedules set up for your DayStaffLead. The solution to the problem you describe however would probably be to modify your Patient Destination code on activity 30 from this

if(getavailablelocation(Triage1, patient))
	return Triage1;
	
if(getcensus(WaitingTriage) > 1 && getavailablelocation(Triage2, patient))
	return Triage2;

to something like this

if(getobjectstate(Mary) == STAT_OffSchedule)
	return Triage2;

if(getavailablelocation(Triage1, patient))
	return Triage1;
	
if(getcensus(WaitingTriage) > 1 && getavailablelocation(Triage2, patient))
	return Triage2;
5 |100000

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

Write an Answer

Hint: Notify or tag a user in this post by typing @username.

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