simpy

Simulating factory manufacture with simpy by requesting multiple resources at the same time, but running for different time

Simulating factory manufacture with simpy by requesting multiple resources at the same time, but running for different time Question: I was trying to simulate a factory manufacturing different products with different machines with simpy. For each product, we will need to allocate different machines for production. For example, the first product will ask for machines …

Total answers: 2

Simpy: Callcenter simulation – inactive call timeout

Simpy: Callcenter simulation – inactive call timeout Question: currently I am working on a more or less complex callcenter simulation. I am quite new to Simpy and have a problem with timing out calls if no agent could answer them. In my simulation I generate calls in 4 different queues. Each of them should have …

Total answers: 1

How to terminate simulation in SimPy 4

How to terminate simulation in SimPy 4 Question: Is there a way to terminate the simpy simulation by using a command like env.exit()? I don’t understand how to place an event into env.run(until=event). I want to terminate the simulation when there are no objects left in my certain Simpy Stores. How can I do that? …

Total answers: 2