question

JIANYUAN, HALLEY L avatar image
0 Likes"
JIANYUAN, HALLEY L asked Matthew Gillespie commented

How to replicate this model suggeted?

Hello all,

I am having troubles trying to replicate a model that was suggested to me by Regan Blackett in this link and was wondering if anyone could help.

https://answers.flexsim.com/questions/81044/what-is-the-best-process-flow-model-to-resolve-thi.html

From the thread I was able to obtain a model that works like this.

test-13.fsm

Matthew Gillespie then pointed out that I should let the processor pull items of the correct type. I've tried to change the request number in the "yes" side of the decide function to item.Type instead as the value is not important and it should pull all the items in the list but it didn't seem to work.

Also, to ensure the model works correctly, he has also kindly suggested to include the dashboard control widget but while I was able to get the dynamic text and ok button on the dashboard, I can't seem to find the method to write scripts within the code and am unable to find a similar function in the manual. For this model, can I use this for multiple entries in the global table?

  1. treenode edit = getdashboardcontrol("NumVehicles");
  2. int num = getviewtext(edit).toNum();
  3. Table("GlobalTable1")[1][1] = num;
  4. Table("GlobalTable1")[2][1] = num;
  5. ... so on and so forth

Could it work this way? Or would I have to write multiple scripts for each row in the global table?

Thanks for reading and hope you could help me with these issues.

FlexSim 20.0.0
process flow pull from listdashboard control widget
test-13.fsm (54.2 KiB)
5 |100000

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

Matthew Gillespie avatar image
1 Like"
Matthew Gillespie answered Matthew Gillespie commented

You don't want to change the Request Number. That's how many things you want to pull off the list. You still just want to pull 1 thing so leave the request and require number at 1. What you need to change is the Query. Regan's model uses a query to pull only items of a certain type. If you want to pull any type just delete the query. Here's a version of your model with those changes:

test13-working.fsm

For the dashboard controls you put that script in the OnApply field of the Apply button. You can use just one button to update multiple rows of the table if that's what you want. The above model is set up to update both rows 1 and 2 when you hit apply. If you wanted to update rows individually you'd need to split them out into separate buttons. Here's and example with 2 different buttons with one for the first row and another for the second.

test13-working2.fsm


test13-working.fsm (52.9 KiB)
test13-working2.fsm (53.0 KiB)
· 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.

Braydn T avatar image
1 Like"
Braydn T answered JIANYUAN, HALLEY L commented

@JIANYUAN, HALLEY L

This is a little unrelated, but I think you should consider going about this model in a different way.

Resources are perfectly suited for this kind of behavior you are looking for. In this example model, you can input a number of available resources into the global table. Then the process flow uses the max wait timer feature of the first acquire resource to see if it can get one of them in the required time. If it can, it goes to the processor. If not, it goes to the timeout queue.

I think this would be a much easier way to do what you want. For example, if the token needs to acquire two from the resource, you can just set that to the label value of the item that represents how many it needs to pull, and this still allows you to read in the number from an excel sheet.

Here is the example model.

jian.fsm


jian.fsm (38.8 KiB)
· 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.