SUMO - Simulation of Urban MObility
PHEMConstants.h
Go to the documentation of this file.
1 /****************************************************************************/
8 // Holds constants and data version info for PHEM Light
9 /****************************************************************************/
10 // SUMO, Simulation of Urban MObility; see http://sumo.dlr.de/
11 // Copyright (C) 2013-2017 DLR (http://www.dlr.de/) and contributors
12 /****************************************************************************/
13 //
14 // This file is part of SUMO.
15 // SUMO is free software: you can redistribute it and/or modify
16 // it under the terms of the GNU General Public License as published by
17 // the Free Software Foundation, either version 3 of the License, or
18 // (at your option) any later version.
19 //
20 /****************************************************************************/
21 
22 #ifndef PHEMConstants_h
23 #define PHEMConstants_h
24 
25 const double GRAVITY_CONST = 9.81;
26 const double AIR_DENSITY_CONST = 1.182;
27 const double SECONDS_PER_HOUR = 3600;
28 const double NORMALIZING_SPEED = 19.444;
29 const double NORMALIZING_ACCELARATION = 0.45;
30 const double DENSITY_DIESEL = 1;
31 const double DENSITY_GASOLINE = 1;
32 const double SPEED_DCEL_MIN = 10 / 3.6;
33 const double M_PI2 = 3.14159265358979323846;
34 const double ZERO_SPEED_ACCURACY = 0.1;
35 const double SPEED_ROTATIONAL_INCREMENT = 10 / 3.6;
36 const double POWER_FC_INCREMENT = 0.1;
37 const double POWER_POLLUTANT_INCREMENT = 0.3;
38 const double NNORM_INCREMENT = 0.05;
39 
40 const std::string PHEM_DATA_VERSION = "V5";
41 
42 #endif
const double SPEED_ROTATIONAL_INCREMENT
Definition: PHEMConstants.h:35
const double POWER_FC_INCREMENT
Definition: PHEMConstants.h:36
const double NORMALIZING_SPEED
Definition: PHEMConstants.h:28
const double ZERO_SPEED_ACCURACY
Definition: PHEMConstants.h:34
const double NORMALIZING_ACCELARATION
Definition: PHEMConstants.h:29
const double M_PI2
Definition: PHEMConstants.h:33
const double GRAVITY_CONST
Definition: PHEMConstants.h:25
const double NNORM_INCREMENT
Definition: PHEMConstants.h:38
const double POWER_POLLUTANT_INCREMENT
Definition: PHEMConstants.h:37
const double DENSITY_GASOLINE
Definition: PHEMConstants.h:31
const double DENSITY_DIESEL
Definition: PHEMConstants.h:30
const double SECONDS_PER_HOUR
Definition: PHEMConstants.h:27
const std::string PHEM_DATA_VERSION
Definition: PHEMConstants.h:40
const double AIR_DENSITY_CONST
Definition: PHEMConstants.h:26
const double SPEED_DCEL_MIN
Definition: PHEMConstants.h:32