question

Kulan Gunawardena avatar image
1 Like"
Kulan Gunawardena asked Joshua S commented

Inputting Setup Times as Scenarios for the Experimenter

Background: I am using the FlexSim experimenter to compare two scenarios for the same Assembly Station - one scenario with a setup time with a mean of 10 mins (600s) and a min value of 7.5 mins (450s), and another scenario with a lower setup time that has a mean value of 8 mins (480s) and a min value of 6 mins (360s). The setup times assume a beta distribution. In either case, I am using scripts.

Scenario 1: As you can see in the script, the setup time is denoted by: beta(450, 1100, 1.5, 5, getstream(current))/**/; (I would like this setup time to be treated as Scenario 1)

I would like another setup time denoted by 'beta(360, 880, 1.5, 5, getstream(current))/**/;' which can represent Scenario 2.

What I've tried to do:

I am wondering if this was the proper way to go about it, as the Throughput in either scenario is the same and I am unsure if it should be? Many thanks

FlexSim 18.2.3
experimentersetup timescenarioexperimenter variablebeta distribution
5 |100000

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

Joshua S avatar image
1 Like"
Joshua S answered Joshua S commented

Take a look at this sample model. The Processor has a label called Scenario where it is changed by the Experimenter to a 1 or 2. The Process time is by case, Which looks at the label on the processor.

experimenter.fsm


experimenter.fsm (241.5 KiB)
· 2
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
0 Likes"
Joerg Vogel answered

The experimenter can change any label very easily.

You can set the different parameters of a statistical distribution or the batchsize by labels.

  1. normal(current.myMeanLabel, current.myStdDevLabel, current.myStreamLabel)

Or for a batchsize

  1. current.myOwnBatchSizeLabel

I put the number labels in an object and give them the appropriate names.

  • myMeanLabel
  • myStdDevLabel
  • myStreamLabel
  • myOwnBatchSizeLabel
5 |100000

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