question

rafael R7 avatar image
0 Likes"
rafael R7 asked Joerg Vogel answered

process time

¿Cómo puedo poner este tiempo de proceso en mis procesadores?

El tiempo de atención es de 45 +- 20 segundos

FlexSim 19.1.0
process time
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

45 +-20 is a statistical expression for a standard normal distribution. You would get 99% of your values in the range of [-15 .. 105].

you can adjust the deviation that the range is [25 .. 65] for 99% of the values.

double yourTime = normal(45,20/3,getstream(current));

alternatively if you don't want a normal distribution, you can try a uniform distribution:

double yourTime = uniform(20,65,getstream(current));
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.