You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
| simulated_frame_id | string | set to the child_frame_id in output tf | "base_link" |
46
-
| origin_frame_id | string | set to the frame_id in output tf | "odom" |
47
-
| initialize_source | string | If "ORIGIN", the initial pose is set at (0,0,0). If "INITIAL_POSE_TOPIC", node will wait until the `input/initialpose` topic is published. | "INITIAL_POSE_TOPIC" |
48
-
| add_measurement_noise | bool | If true, the Gaussian noise is added to the simulated results. | true |
49
-
| pos_noise_stddev | double | Standard deviation for position noise | 0.01 |
50
-
| rpy_noise_stddev | double | Standard deviation for Euler angle noise | 0.0001 |
51
-
| vel_noise_stddev | double | Standard deviation for longitudinal velocity noise | 0.0 |
52
-
| angvel_noise_stddev | double | Standard deviation for angular velocity noise | 0.0 |
53
-
| steer_noise_stddev | double | Standard deviation for steering angle noise | 0.0001 |
| simulated_frame_id | string | set to the child_frame_id in output tf | "base_link" |
46
+
| origin_frame_id | string | set to the frame_id in output tf | "odom" |
47
+
| initialize_source | string | If "ORIGIN", the initial pose is set at (0,0,0). If "INITIAL_POSE_TOPIC", node will wait until the `input/initialpose` topic is published. | "INITIAL_POSE_TOPIC" |
48
+
| add_measurement_noise | bool | If true, the Gaussian noise is added to the simulated results. | true |
49
+
| pos_noise_stddev | double | Standard deviation for position noise | 0.01 |
50
+
| rpy_noise_stddev | double | Standard deviation for Euler angle noise | 0.0001 |
51
+
| vel_noise_stddev | double | Standard deviation for longitudinal velocity noise | 0.0 |
52
+
| angvel_noise_stddev | double | Standard deviation for angular velocity noise | 0.0 |
53
+
| steer_noise_stddev | double | Standard deviation for steering angle noise | 0.0001 |
55
54
56
55
### Vehicle Model Parameters
57
56
@@ -82,6 +81,7 @@ The table below shows which models correspond to what parameters. The model name
82
81
| vel_rate_lim | double | limit of acceleration | x | x | x | o | o | o | o | 7.0 |[m/ss]|
83
82
| steer_lim | double | limit of steering angle | x | x | x | o | o | o | o | 1.0 |[rad]|
84
83
| steer_rate_lim | double | limit of steering angle change rate | x | x | x | o | o | o | o | 5.0 |[rad/s]|
84
+
| steer_bias | double | bias for steering angle | x | x | x | o | o | o | o | 0.0 |[rad]|
85
85
| debug_acc_scaling_factor | double | scaling factor for accel command | x | x | x | x | o | o | x | 1.0 |[-]|
86
86
| debug_steer_scaling_factor | double | scaling factor for steer command | x | x | x | x | o | o | x | 1.0 |[-]|
87
87
| acceleration_map_path | string | path to csv file for acceleration map which converts velocity and ideal acceleration to actual acceleration | x | x | x | x | x | x | o | - |[-]|
Copy file name to clipboardexpand all lines: simulator/simple_planning_simulator/include/simple_planning_simulator/vehicle_model/sim_model_delay_steer_acc.hpp
+4-2
Original file line number
Diff line number
Diff line change
@@ -40,14 +40,15 @@ class SimModelDelaySteerAcc : public SimModelInterface
40
40
* @param [in] steer_delay time delay for steering command [s]
41
41
* @param [in] steer_time_constant time constant for 1D model of steering dynamics
42
42
* @param [in] steer_dead_band dead band for steering angle [rad]
43
+
* @param [in] steer_bias steering bias [rad]
43
44
* @param [in] debug_acc_scaling_factor scaling factor for accel command
44
45
* @param [in] debug_steer_scaling_factor scaling factor for steering command
Copy file name to clipboardexpand all lines: simulator/simple_planning_simulator/include/simple_planning_simulator/vehicle_model/sim_model_delay_steer_acc_geared.hpp
+4-2
Original file line number
Diff line number
Diff line change
@@ -40,14 +40,15 @@ class SimModelDelaySteerAccGeared : public SimModelInterface
40
40
* @param [in] steer_delay time delay for steering command [s]
41
41
* @param [in] steer_time_constant time constant for 1D model of steering dynamics
42
42
* @param [in] steer_dead_band dead band for steering angle [rad]
43
+
* @param [in] steer_bias steering bias [rad]
43
44
* @param [in] debug_acc_scaling_factor scaling factor for accel command
44
45
* @param [in] debug_steer_scaling_factor scaling factor for steering command
Copy file name to clipboardexpand all lines: simulator/simple_planning_simulator/include/simple_planning_simulator/vehicle_model/sim_model_delay_steer_map_acc_geared.hpp
+3-1
Original file line number
Diff line number
Diff line change
@@ -92,12 +92,13 @@ class SimModelDelaySteerMapAccGeared : public SimModelInterface
92
92
* @param [in] acc_time_constant time constant for 1D model of accel dynamics
93
93
* @param [in] steer_delay time delay for steering command [s]
94
94
* @param [in] steer_time_constant time constant for 1D model of steering dynamics
95
+
* @param [in] steer_bias steering bias [rad]
95
96
* @param [in] path path to csv file for acceleration conversion map
Copy file name to clipboardexpand all lines: simulator/simple_planning_simulator/include/simple_planning_simulator/vehicle_model/sim_model_delay_steer_vel.hpp
+3-1
Original file line number
Diff line number
Diff line change
@@ -43,11 +43,12 @@ class SimModelDelaySteerVel : public SimModelInterface
43
43
* @param [in] steer_delay time delay for steering command [s]
44
44
* @param [in] steer_time_constant time constant for 1D model of steering dynamics
45
45
* @param [in] steer_dead_band dead band for steering angle [rad]
Copy file name to clipboardexpand all lines: simulator/simple_planning_simulator/src/simple_planning_simulator/vehicle_model/sim_model_delay_steer_acc.cpp
0 commit comments