question

Danny W avatar image
0 Likes"
Danny W asked Ryan Clark commented

rack,control point problem

In this model I have two troubles

One is when rack1 is full,KID will cross path to fill up others empty rack ,but it can only be set manually,When the rack number is large, it will be very clumsy, is there anything else way to let it put on any empty rack?plz help me!!!!

and the other is list problem, I want put X,Y point in list, when KID finish one mission need to go to outside point for wait MOM take it to load box,I need KID pull the point from list,and it is nearest point on the line.

1632068202400.png

TEST.fsm


FlexSim 20.0.10
listsrackscontrolpoint
test.fsm (61.2 KiB)
· 1
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

Felix Möhlmann avatar image
0 Likes"
Felix Möhlmann answered Felix Möhlmann commented

You can use "A-connections" between the queue and the racks to send the item to an empty rack. To have them transported by the task executer via your process flow you can check the "Use Transport" option on the queue and push the items onto a list. This will automatically create a label called "destination" on the item, containing the rack they should be send to. You can then have a token in your process flow pull from this list.

Pulling the correct CP to return to from a list seems unnecessarily complicated to me. I'd use connections between the racks and CPs in the model to reference them from one another. So depending on where the item was unloaded the CP to return to is defined by a connection from the rack.

In the attached model I also disconnected the "Mom path" from the "Kid paths" and connected the CPs on the "Mom path" to the racks as well, so telling it to travel to the rack is enough to find the correct CP. Then I use center connections to know to which CP the kid should be moved. (Similar to your last question I use "currentCP" to get the location of the mom/kid car and then reference connected CP with "centerObjects[<rank>]".)

test_2.fsm


test-2.fsm (56.8 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.