Autopysta
Loading...
Searching...
No Matches
p_newell_random_acceleration.h
Go to the documentation of this file.
1
9#ifndef _P_NEWELL_RANDOM_ACCELERATION
10#define _P_NEWELL_RANDOM_ACCELERATION
11
12#include "p_newell.h"
13
21public:
22 double sigma_tilde = 0.11;
23 double beta = 0.07;
24
31
43 p_newell_random_acceleration(double u, double w, double kj, double sigma_tilde, double beta);
44};
45
46#endif
Parameter class for the random acceleration model based on Laval et al. (2014).
Definition p_newell_random_acceleration.h:20
double beta
Inverse relaxation time, affecting the temporal responsiveness of vehicles.
Definition p_newell_random_acceleration.h:23
double sigma_tilde
Standard deviation of the random acceleration term.
Definition p_newell_random_acceleration.h:22
p_newell_random_acceleration()
Default constructor for the random acceleration parameters.
p_newell_random_acceleration(double u, double w, double kj, double sigma_tilde, double beta)
Constructor with custom parameter values.
Parameter class for Newell's car-following model.
Definition p_newell.h:32
double w
Wave speed in meters per second (default: 18 km/h).
Definition p_newell.h:35
double u
Free-flow speed in meters per second (default: 90 km/h).
Definition p_newell.h:34
double kj
Jam density in vehicles per meter (default: 0.15 vehicles/meter).
Definition p_newell.h:36
Header file for the p_newell class definition.