question

Amit Kulkarni avatar image
0 Likes"
Amit Kulkarni asked Amit Kulkarni edited

Find Nearest Open Slot Exception

I'm modifying the logic from this post to find the nearest slot in multiple racks that use AGV network. But I end up getting following error, perhaps due to queries that I am using while finding a storage slot. Also @anthony.johnson mentioned to use Vec3.project() method to query multiple racks, which I don't know how do. Any pointers are appreciated. Sample model is attached.

  1. time: 120.000000 exception: FlexScript exception: MODEL:/Tools/ProcessFlow/ProcessFlow/Find Nearest Slot>labels/1/2
  2. time: 120.000000 exception: FlexScript exception: MODEL:/Tools/ProcessFlow/ProcessFlow/Find a Storage Slot>labels/1/2
  3. time: 120.000000 exception: FlexScript exception: MODEL:/Tools/ProcessFlow/ProcessFlow/Which Rack?>labels/1/2
  4. time: 120.000000 exception: FlexScript exception: MODEL:/Tools/ProcessFlow/ProcessFlow/Slot Placement Strategy>variables/codeNode
  5. time: 120.000000 exception: FlexScript exception: MODEL:/Tools/ProcessFlow/ProcessFlow/Find Nearest Slot>labels/1/2
  6. time: 120.000000 exception: FlexScript exception: MODEL:/Tools/ProcessFlow/ProcessFlow/Find a Storage Slot>labels/1/2
  7. time: 120.000000 exception: FlexScript exception: MODEL:/Tools/ProcessFlow/ProcessFlow/Which Rack?>labels/1/2
  8. time: 120.000000 exception: FlexScript exception: MODEL:/Tools/ProcessFlow/ProcessFlow/Slot Placement Strategy>variables/codeNode
  9.  
  10.  

NearestSlotTwinForkAGV_11.4.2020.fsm



FlexSim 20.2.3
flexsim 20.2.3sql querieswarehousing
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

Jason Lightfoot avatar image
1 Like"
Jason Lightfoot answered Amit Kulkarni edited

The project method of a location just finds the point in 3D space relative to another object - and it takes two parameters in the example the FromObject and the ToObject. By setting the ToObject to model() it's asking for the absolute location in model space and not relative to the containing object/Rack.

By subtracting one location in model space from another you get the vector between the two - and the magnitude of that is the distance between them.

· 12
5 |100000

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