英文:
Issue with moveTo block
问题
我在图像3中制作了一个ASRS系统。
一个AGV从前一个工序中取出代理并将其放在传送带入口处,如图像3所示。 图像1中的逻辑在一段时间后运行良好,但之后会出现图像2中显示的错误。
我不确定为什么会发生这种情况,有人可以帮忙吗?
英文:
I have made an ASRS system show in image 3
An AGV that picks the agent from previous process and drops of at the entrance of conveyor showed in the image 3. The logic in image 1 works well for sometime but after that there pops up an error shown in image 2.
I am not sure why this is happening, can anyone please help me with this?
答案1
得分: 0
这可能是AnyLogic提供的最好的错误消息之一(大多数都相当晦涩)。
它相当清楚地描述了问题是什么(下游有阻塞)以及如何解决它(去除下游的阻塞或使用Pull)。
所以没有太多要说的了。确保在MoveTo和ASRSenter
之间有一个队列,你就万事大吉。或者确保在下一个代理到达之前清空你的输送入口区域。
英文:
This is probably one of the best error messages that AnyLogic provides (most are quite cryptic).
It describes quite well what the problem is (there is a blockage downstream) and how to solve it (remove the downstream blockage or use Pull).
So not much more to say. Ensure that there is a queue between the MoveTo and ASRSenter
and you are golden. Or ensure to empty your conveyor entry area before the next agent arrives
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论