标签: fluid anylogic
我正在尝试在Anylogic中为乳制品厂建模。 我想编程一个事实,即每批处理后都需要清洗一个水箱。 我当时在考虑使用状态图进行建模,但是据我看来,坦克,管道等似乎无法像“普通”代理人一样拥有状态图。
我想念什么吗?
答案 0 :(得分:0)
这就是我要做的:
在储罐中,有一个动作“输入时对新批次” ...您将在此放置以下代码:
valve.close(); //close the valve to clean the tank create_cleanTank(5);//assuming your cleaning time is 5 time units..
在动态事件中,您将放置以下代码:
valve.open(); //the tank is cleaned, so you can open the valve now.