Hi there,
If I use the Poisson process for arrivals with different volumes for AM/PM sessions as shown below (for AM session):
Object current = param(1); treenode activity = param(2); int rowNumber = param(3); //The arrival entry row number int cycle = param(4); //The current cycle through the arrivals table (first iteration cycle = 1) treenode processFlow = ownerobject(activity); /***popup:StatisticalDistribution*/ return /***tag:distribution*//**/poisson/**//**/(/**/ /***tag:par1*//**/33/**/ /***tag:par2*//**//**/ /***tag:par3*//**/, getstream(activity)/**/ /***tag:par4*//**//**/ /***tag:par5*//**//**/ /**/)/**/
I assume that 33 samples will be created and the arrivals depend on the Poisson probability. Is that correct?
And in this case, what would be the effect of using an "evenly spaced" spacing for arrivals?
Thanks!