Modeling a petrol station: Run the model and analyze the results
In the previous exercise, you created a generator, car_generator()
, to simulate the behavior of the cars arriving at a gas station, and another, gas_station_pumps_control()
, to manage the gas station fuel storage.
Now, using these generators, we are ready to create a SimPy model, add resources and processes, and run simulations.
This exercise is part of the course
Discrete Event Simulation in Python
Hands-on interactive exercise
Have a go at this exercise by completing this sample code.
env = simpy.Environment()
# Create the gas station resource
gas_station_pumps = simpy.____(env, capacity=____)
# Create the gas tank container
gas_station_tank = simpy.____(env, GAS_STATION_TANK_SIZE, init=GAS_STATION_TANK_SIZE)
# Add processes to the SimPy environment
env.____(gas_station_pumps_control(env, gas_station_tank))
env.____(car_generator(env, gas_station_pumps, gas_station_tank))
env.run(until=SIM_TIME)