I'm an old Flexsim user but new to the process flow away of modeling. I'm trying to use a general process flow to route product orders to subsequent operations. The operations may involve ordering or fabrication of parts. All orders are have a preassigned batch number. A batch cannot be passed on to the next stage until all products in the batch have been processed.
I'm just starting to implement the above. I have:
- source that creates product order tokens from a table
- push to list puts tokens on a Orders list
- source that creates a token to circulate in the Order Parts process (yet to be developed)
- A pull from list that pulls product order tokens from the Orders list.
- A create object that represents the guts of the Order Parts process.
- push to list that pushes the product order tokens to the Parts Ordered list.
I'm mainly stuck on the pull from list step. It just seems to hang when the circulating token arrives. I've read documentation, done tutorials and searched the forum. I've tried a bunch of things and I'm stuck.
Once I get that working I will have additional questions.
- How do I pull tokens in batches of various lengths?they are gathered in partitions.
- How does pull from Orders list know which token goes back around and which goes to the Parts Ordered list???
- ??????? :)