question

Nikhil Rane avatar image
0 Likes"
Nikhil Rane asked Joerg Vogel commented

Exception Caught in Transporter::beginTask(treenode task) object: /Transporter1

I am Facing error in which my transporter get stuck in. shows below error

1641278577754.png

Paint In Warehouse Model 3-Jan.fsm

FlexSim 21.2.3
tree node error
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
1 Like"
Felix Möhlmann answered Joerg Vogel commented

There are two different errors occuring in your model. The first one happens in the event triggered sources of your process flow. You try to set the name of the token to the "item" label. But when the field is evaluated that label doesn't exist yet. This might be a bug in the evaluation order. I don't see why the name of the token would need to set to the item though, so you can simply leave the field blank.

The transport stops because no slot is found for the item in the rack. This is based on the "Slot Assignment Strategy" of the rack, which by default requires there to be physical space for the item in the rack. Because you deactivated the "Pull" option on some racks, the queue sends items there as long as the set maximum content (1000000000) is not reached. This then conflicts with the space requirement after some time.

Either decrease the maximum content to be equal to the amount of items that actually fit in the rack or reactivate the pull strategy with the "Pull Items Successfully Assigned to Slots" pull requirement.

1641281854065.png


1641281854065.png (5.3 KiB)
· 4
5 |100000

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

Nikhil Rane avatar image Nikhil Rane commented ·

Thanks, by changing the pull strategy the error resolved


for 1st error i tried to set label to item because i want token to take label of 3d object if left field black the label values comes as NULL

will you help me sort it out.


1641283008203.png

0 Likes 0 ·
1641283008203.png (70.0 KiB)
Felix Möhlmann avatar image Felix Möhlmann Nikhil Rane commented ·

Assigning the item reference to the label is fine and correct. The issue is that in some of the sources you try to set the name of the token to the label value.

1641284305688.png

This leads to an error because the label doesn't exit yet when the name is given to the token.

1 Like 1 ·
1641284305688.png (16.1 KiB)
Joerg Vogel avatar image Joerg Vogel Felix Möhlmann commented ·
Edit field Token Name is evaluating a String or String label.

token.item is a Variant and not a string. Maybe you can say token.item.name to christian the token as “box”.

1 Like 1 ·
Show more comments

Write an Answer

Hint: Notify or tag a user in this post by typing @username.

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