-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathinit_data.h
45 lines (40 loc) · 1.01 KB
/
init_data.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
//------------------------------------------------------------------------------
//
//
//
//
//
//------------------------------------------------------------------------------
/*!
* \file
* \brief
* \copyright
* \author
* \date
*/
#ifndef INIT_DATA_H
#define INIT_DATA_H
#include <QString>
#include "solver-config.h"
/*!
* \struct
* \brief
*/
//------------------------------------------------------------------------------
//
//------------------------------------------------------------------------------
struct init_data_t
{
QString route_dir_name = "experimental-polygon";
QString train_config = "vl60pk-1543";
QString trajectory_name = "route1_0001_1";
int direction = 1;
double init_coord = 780.0;
double init_velocity = 0.0;
double coeff_to_wheel_rail_friction = 1.0;
int integration_time_interval = 15;
int control_time_interval = 15;
bool debug_print = false;
solver_config_t solver_config = solver_config_t();
};
#endif // INIT_DATA_H