#!/usr/bin/env python1# -*- coding: utf-8 -*-2# Eclipse SUMO, Simulation of Urban MObility; see https://eclipse.dev/sumo3# Copyright (C) 2008-2025 German Aerospace Center (DLR) and others.4# This program and the accompanying materials are made available under the5# terms of the Eclipse Public License 2.0 which is available at6# https://www.eclipse.org/legal/epl-2.0/7# This Source Code may also be made available under the following Secondary8# Licenses when the conditions for such availability set forth in the Eclipse9# Public License 2.0 are satisfied: GNU General Public License, version 210# or later which is available at11# https://www.gnu.org/licenses/old-licenses/gpl-2.0-standalone.html12# SPDX-License-Identifier: EPL-2.0 OR GPL-2.0-or-later1314# @file accelerations.py15# @author Jakob Erdmann16# @date 2012-11-201718from __future__ import absolute_import19from __future__ import print_function20import os21import sys22sys.path.append(os.path.join(os.path.dirname(sys.argv[0]), '..'))23from sumolib.output import parse_fast # noqa24from sumolib.miscutils import Statistics # noqa252627def accelStats(netstate):28lastSpeed = {}29stats = Statistics("Accelerations", histogram=True, printMin=True, scale=0.2)30for vehicle in parse_fast(netstate, 'vehicle', ['id', 'speed']):31speed = float(vehicle.speed)32prevSpeed = lastSpeed.get(vehicle.id, speed)33stats.add(speed - prevSpeed, (vehicle.id, vehicle.speed))34lastSpeed[vehicle.id] = speed35print(stats)363738if __name__ == "__main__":39if len(sys.argv) != 2:40sys.exit("call %s <netstate-dump>" % sys.argv[0])41accelStats(sys.argv[1])424344