question

Tom avatar image
0 Likes"
Tom asked Tom commented

Set different label value to patients by percentage in proximity system.

Hi.


According to patient's label, I want to set different label value to patients by percentage.


Specifically, Floor spot1 give 'get' label's value - 0 or 1' to patient using set label function of proximity system.

Patients who have 'type a' label have 70% to acquire 'get' label's value - 0 and 30% to acquire value - 1 by Floor spot1.

Patients who have 'type b' label is the opposite.


I tried to solve this problem in patient flow but I couldn't find the way.

So I think I should to use code in set label page of proximity system.

Could you help me to solve this problem?


Thank you.

Q_set different label value by percentage.fsm

FlexSim 22.2.2
proximity agent systemset labelby percentage
5 |100000

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

1 Answer

Felix Möhlmann avatar image
1 Like"
Felix Möhlmann answered Tom commented

You could probably also solve this with a Decide activity in the patient flow, but using the proximity trigger is likely quicker.

Check which of the two "type" values are present on the patient, then use the "bernoulli" distribution to assign one of two values by percentage.

  1. Object patient = agent.object;
  2. if(patient.type == "a")
  3. {
  4.     patient.get = bernoulli(70, 0, 1, getstream(patient));
  5. }
  6. if(patient.type == "b")
  7. {
  8.     patient.get = bernoulli(70, 1, 0, getstream(patient));
  9. }

1665729957907.png


1665729957907.png (5.7 KiB)
· 3
5 |100000

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