question

Vanessa Buen Abad avatar image
0 Likes"
Vanessa Buen Abad asked Ben Wilson edited

Is there a way to open ports with the same probability?

Is there a way to open 2 ports with the same probability? I have 2 racks connected in a queue and I would like the queue to open the port 1 with 50% of probability and the port 2 with the other 50%.

I have a model with 2 racks and a queue and this queue with an on entry trigger. When the entry trigger condition is true, I would like the rack1 to open its port with 50% of probability and rack 2 to open its port with 50% of probability. Can you help me please?

Here is the code:

treenode item = param(1); treenode current = ownerobject(c); int port = param(2); {

// ************* PickOption Start ************* // /***

treenode involved = /** \nObject: */ /***tag:object*//**/centerobject(current, 1)/**/; treenode involved2=centerobject(current,2); int condition = /** \nCondition: */ /***tag:condition*//**/true/**/; if (condition) { /** \nAction: *//***tag:action*//**/openoutput/**

(bernoulli(50, involved, involved2)); }

The errors say:

Invalid type for parameter 1 in call bernoulli()

Invalid type for parameter 2 in call bernoulli()

Invalid type for parameter 3 in call bernoulli()

Thanks you so much! @adrian haws

,

Choose One
port controlprobabilityopen or close specific portopen ports with probability
· 7
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

Joerg Vogel avatar image
0 Likes"
Joerg Vogel answered Ben Wilson commented

Source code to add in the OnEntry-trigger:

  1. treenode yourRack1 = centerobject(current,1);
  2. treenode yourRack2 = centerobject(current,2);
  3. if(duniform(0,1,3)) {
  4. openoutput(yourRack1);
  5. closeoutput(yourRack2);
  6. }
  7. else{
  8. openoutput(yourRack2);
  9. closeoutput(yourRack1);
  10. }

You have to open and close the output of the racks vice versa at each entry event.

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