question

Edwin Garavito avatar image
0 Likes"
Edwin Garavito asked Edwin Garavito commented

TIEMPO DE PROCESO EN GUI

Cómo puedo modificar el PROCESS TIME desde un GUI?

FlexSim 21.1.0
flexsim 21.1.0
· 4
5 |100000

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

Joerg Vogel avatar image Joerg Vogel commented ·

indirectly by a label. You edit a label in a GUI or dashboard input field and the label value is evaluated by a processor.

1 Like 1 ·
Edwin Garavito avatar image Edwin Garavito Joerg Vogel commented ·

Y es posible usar distribuciones de probabilidad?

0 Likes 0 ·
Joerg Vogel avatar image Joerg Vogel Edwin Garavito commented ·

Still indirectly, yes, with more labels. But you are responsible to allow only values that makes senses. The idea is to evaluate a distribution as a number by a switch by case structure, which matches with your input field. Each statistical distribution parameter is a label value.

An example:

A label value of 3 is “normal” for ”labeldistro”, then “labelparam1” is mean and “labelparam2” is deviation. Any other labels aren’t of any use.

switch(current.labeldistro){
   case 3:
     return normal(current.labelparam1,current.labelparam2,getstream(current));
…}

Edit: I replaced break interrupt by return structural command

1 Like 1 ·
Show more comments

0 Answers

·

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.