/****************************************************************************/1// Eclipse SUMO, Simulation of Urban MObility; see https://eclipse.dev/sumo2// Copyright (C) 2013-2025 German Aerospace Center (DLR) and others.3// This program and the accompanying materials are made available under the4// terms of the Eclipse Public License 2.0 which is available at5// https://www.eclipse.org/legal/epl-2.0/6// This Source Code may also be made available under the following Secondary7// Licenses when the conditions for such availability set forth in the Eclipse8// Public License 2.0 are satisfied: GNU General Public License, version 29// or later which is available at10// https://www.gnu.org/licenses/old-licenses/gpl-2.0-standalone.html11// SPDX-License-Identifier: EPL-2.0 OR GPL-2.0-or-later12/****************************************************************************/13/// @file PHEMConstants.h14/// @author Nikolaus Furian15/// @author Daniel Krajzewicz16/// @date Thu, 13.06.201317///18// Holds constants and data version info for PHEM Light19/****************************************************************************/2021#pragma once22#include <config.h>2324const double GRAVITY_CONST = 9.81;25const double AIR_DENSITY_CONST = 1.182;26const double SECONDS_PER_HOUR = 3600;27const double NORMALIZING_SPEED = 19.444;28const double NORMALIZING_ACCELARATION = 0.45;29const double DENSITY_DIESEL = 1;30const double DENSITY_GASOLINE = 1;31const double SPEED_DCEL_MIN = 10 / 3.6;32const double M_PI2 = 3.14159265358979323846;33const double ZERO_SPEED_ACCURACY = 0.1;34const double SPEED_ROTATIONAL_INCREMENT = 10 / 3.6;35const double POWER_FC_INCREMENT = 0.1;36const double POWER_POLLUTANT_INCREMENT = 0.3;37const double NNORM_INCREMENT = 0.05;3839const std::string PHEM_DATA_VERSION = "V5";404142