question

Alex H4 avatar image
0 Likes"
Alex H4 asked Joshua S edited

Stop item on conveyor with decision point? process flow example?

fsqgeneralflow.jpgfsq.fsm

I am trying to figure out how to stop an item on a conveyor using a decision point that checks if a queue has an item in it or an AGV is transporting an item to that queue using an entry and exit label. How would I accomplish this?

Secondly can anyone show me what a process flow would look like for the first conveyor item through the process? I will upload a flow chart that may also help with this.

FlexSim 18.2.0
process flowdecision point
fsqgeneralflow.jpg (44.8 KiB)
fsq.fsm (66.3 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.

1 Answer

Joshua S avatar image
0 Likes"
Joshua S answered Joshua S edited

1. One way of stopping an item on a conveyor using decision point is in process flow using an event triggered source. The trigger would be on arrival, then you could have a decide activity that checks if the queue has an item in it or the AGV is transporting an item to it.You can do this by using the code

  1. model.find("TheQueue").subnodes.length>0

for checking the AGV's destionation you can use the code

  1. Model.find("AGV_108570").as(TaskExecuter).activeTask.involved2

once it checks you can use a custom code activity that has a built in "stop/resume item on conveyor". Then you would need another wait for event activity that is fired when the queue clears, or after the AGV clears, I'm not what sure the conditions you want to check for after.

Not sure what you mean by process flow, like how you would build it in process flow?

· 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.