git commit -m "first commit"

This commit is contained in:
2026-05-28 10:29:58 +07:00
commit 167c52aeb6
2048 changed files with 740251 additions and 0 deletions

View File

@@ -0,0 +1,47 @@
DWAPlanner:
# Robot Configuration Parameters
max_vel_x: 0.46
min_vel_x: 0.00
max_vel_y: 0.0
min_vel_y: 0.0
# The velocity when robot is moving in a straight line
max_vel_trans: 0.26
min_vel_trans: 0.13
max_vel_theta: 1.82
min_vel_theta: 0.9
acc_lim_x: 2.5
acc_lim_y: 0.0
acc_lim_theta: 3.2
# Goal Tolerance Parameters
xy_goal_tolerance: 0.05
yaw_goal_tolerance: 0.17
latch_xy_goal_tolerance: false
# Forward Simulation Parameters
sim_time: 2.0
vx_samples: 20
vy_samples: 0
vth_samples: 40
controller_frequency: 10.0
# Trajectory Scoring Parameters
path_distance_bias: 32.0
goal_distance_bias: 20.0
occdist_scale: 0.02
forward_point_distance: 0.325
stop_time_buffer: 0.2
scaling_speed: 0.25
max_scaling_factor: 0.2
# Oscillation Prevention Parameters
oscillation_reset_dist: 0.05
# Debugging
publish_traj_pc : true
publish_cost_grid_pc: true

View File

@@ -0,0 +1,23 @@
EvolutionaryPlanner:
# offset of transform from world(x,y) to grid map(x,y)
convert_offset: 0.0
# error tolerance
default_tolerance: 0.0
# whether outline the map or not
outline_map: true
# obstacle inflation factor
obstacle_factor: 0.5
## Ant Colony Optimization(ACO) planner
# number of ants
n_ants: 50
# pheromone weight coefficient
alpha: 1.0
# heuristic factor weight coefficient
beta: 8.0
# evaporation coefficient
rho: 0.1
# pheromone gain
Q: 1.0
# maximum iterations
max_iter: 30

View File

@@ -0,0 +1,11 @@
GraphPlanner:
# offset of transform from world(x,y) to grid map(x,y)
convert_offset: 0.0
# error tolerance
default_tolerance: 0.0
# whether outline the map or not
outline_map: true
# obstacle inflation factor
obstacle_factor: 0.5
# whether publish expand zone or not
expand_zone: true

View File

@@ -0,0 +1,29 @@
PIDPlanner:
# next point distance/turning angle
p_window: 0.2
o_window: 1.0
# goal reached tolerance
p_precision: 0.2
o_precision: 0.5
# linear velocity
max_v: 0.5
min_v: 0.0
max_v_inc: 0.5
# angular velocity
max_w: 1.57
min_w: 0.0
max_w_inc: 1.57
# pid controller params
k_v_p: 1.00
k_v_i: 0.10
k_v_d: 0.10
k_w_p: 1.00
k_w_i: 0.10
k_w_d: 0.10
k_theta: 0.3

View File

@@ -0,0 +1,17 @@
SamplePlanner:
# random sample points
sample_points: 2000 #1000 for informed RRT*, 3000 for others
# max distance between sample points
sample_max_d: 10.0
# optimization radius
optimization_r: 20.0
# offset of transform from world(x,y) to grid map(x,y)
convert_offset: 0.0
# error tolerance
default_tolerance: 0.0
# whether outline the map or not
outline_map: true
# obstacle inflation factor
obstacle_factor: 0.5
# whether publish expand zone or not
expand_zone: true