Item not being pulled

Item not being pulled

alejandra_n2
Not applicable
1 View
7 Replies
Message 1 of 8

Item not being pulled

alejandra_n2
Not applicable

[ FlexSim 17.2.2 ]

my model is a bit big and I'm trying to incorporate a smaller sample into it but I cant figure out why the list is not pulling the item.

I believe the issue happens because on the load activity I was previously using token.MyBin as shows below :

9114-tuqxb.png

now I'm using another list and trying to combine it with token.Pulled[token.index] as shows below:

9115-avehp.png

Below is the part of my model were the item doesn't get pulled

9113-hw6sj.png

0 Likes
Accepted solutions (1)
2 Views
7 Replies
Replies (7)
Message 2 of 8

Jacob_Gillespie
Autodesk
Autodesk
Accepted solution

@Ale, You are pushing tokens to the list. That means that token.Pulled[] contains tokens and not a Tote object like your MyBin label does.

Maybe you want to use the following?

token.Pulled[token.index].MyBin
Message 3 of 8

alejandra_n2
Not applicable

@Jacob Gillespie thanks for the reply. I used the query that you suggested but still not working.

0 Likes
Message 4 of 8

Jacob_Gillespie
Autodesk
Autodesk

@Ale You are also missing a connector from Assign Labels to Load Batch Bin.

9145-missingconnector.png

Message 5 of 8

alejandra_n2
Not applicable

@Jacob Gillespie thank you!. Ill fix some other stuff on the model and if it still doesn't work illask later.

0 Likes
Message 6 of 8

Jacob_Gillespie
Autodesk
Autodesk

@Ale If nothing is pulled then you have to skip the Load and Unload activities.

9152-checkitemspulled.png

See the attached model.

apu2-final-6-edit.fsm

Message 7 of 8

alejandra_n2
Not applicable

@Jacob Gillespie when I implement the changes that you suggested it works but its doing exactly the same thing before I made the changes. What I want to do is that the operator grabs as many boxes available of a certain type from a queue and its not doing that, it just grabs one tote at a time.

0 Likes
Message 8 of 8

Jacob_Gillespie
Autodesk
Autodesk

@Ale Here is the current state of your connectors coming from Decide.

9190-fix2.png

The problem is that your Decide activity sends tokens to 1 if token.index < token.numofitmes.

To fix this you need to change the connectors to match the output of the decide, or change the decide so that it outputs to the correct connectors.