Thanks for your helpful videos.I have a problem with a project I can't solve is there an e-mail address I can reach you?(project designed with anylogic)
@nuriyeakpnar64024 жыл бұрын
There are 7 stations in my project. Passengers arrive at 7 stations. With the pick up ,I collect passengers at the first and second stations. When I arrive at the third station, I want to drop off 10% of the passengers I pick up at the first station and drop off 20% of the passengers I pick up at the second station.How can I do that?
@johanjoubert45854 жыл бұрын
You may want to look at the example models covering the Pedestrian library in AnyLogic. If you want to use AnyLogic's process modelling library, then you can likely get it done using collections. Decouple the agents (passengers) and the vehicles (train/bus/etc). Passengers queue (in a Queue block) after arrival, and when the vehicle arrives it transfers all agents into itself (keep record of them in a collection, like an ArrayList). You use the Exit block to remove the agents from their first portion of model logic, and re-insert them using the Enter block where their logic continues.