I'm using Flow to create a traffic simulation and I should manage the speed of the vehicles using TraCi in a SUMO network designed by me. Unfortunately I cannot understand how to recall in my code the primitives of TraCi made available by FLOW. I found a similar method in flow.core.kernel.vehicle.base
but it doesn't work.
Before setting the speed I tried to read it with code below.
veh_id = "human" # name of the vehicle
speed = env.k.vehicle.get_speed(veh_id)