question

Andre G avatar image
0 Likes"
Andre G asked Joerg Vogel commented

How to change the location of items in a rack cell to other directions?

Normally items get place in y-direction in a cell (level/bay) of rack. Is there any simple solution or command to place them in x-direction or z-direction into the cell?

I guess that can be done using Triggers/OnEntry/Visual/Set Rotation,Size, or Location and some math, but I did not find this solution.

Many thanks in advance!

FlexSim 17.1.4
flowitemrackslocationdirection
5 |100000

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

Joerg Vogel avatar image
1 Like"
Joerg Vogel answered

You are looking for the command

  1. object.setLocation( double x, double y, double z)

Wherein object is the reference of the entered item in the rack cell.

The parameters double x and y are the values of the first item of the rack cell or if it is the first item its current location. And the z parameter is the combination of the location of the previous item in the rack cell plus the size of the previous item in the same rack cell. If the item is the first in the cell the z parameter is set to its current location z value. The problem is to identify the reference to previous item in the cell, because the simple command prev is just the reference of the item which has entered the rack before the actual entering item. And that item has been placed at a different cell than the actual one.

It can become more complicated, if you choose to extract the items out of the rack NOT in strict lifo strategy, then you can get gaps in the vertical stacked column.

5 |100000

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

Jeff Nordgren avatar image
1 Like"
Jeff Nordgren answered Joerg Vogel commented
@Andre G

Attached is a sample model that will fill the rack level by level. I modified the code in the Place in Bay code area. Take a look at the model and see if it will do what you are wanting it to do. If you have any questions or problems, please let me know.

Thanks.

andre-rack-sample-jn1-v714.fsm


· 3
5 |100000

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