Skip to content

Commit 6b86173

Browse files
committed
release v2.0
1 parent dc5f45c commit 6b86173

110 files changed

Lines changed: 5434 additions & 5835 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.
Lines changed: 122 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,122 @@
1+
dwa:
2+
time_step: 0.1
3+
max_iteration: 1700
4+
lookahead_time: 1.5
5+
min_lookahead_dist: 1.0
6+
max_lookahead_dist: 2.5
7+
min_v_inc: -1.0
8+
max_v_inc: 1.0
9+
min_v: 0.0
10+
max_v: 0.5
11+
min_w_inc: -3.141592653589793
12+
max_w_inc: 3.141592653589793
13+
min_w: -1.5707963267948966
14+
max_w: 1.5707963267948966
15+
goal_dist_tol: 0.5
16+
rotate_tol: 0.5
17+
heading_weight: 0.2
18+
obstacle_weight: 0.1
19+
velocity_weight: 0.05
20+
predict_time: 1.5
21+
obstacle_inflation_radius: 1.0
22+
v_resolution: 0.05
23+
w_resolution: 0.05
24+
25+
apf:
26+
time_step: 0.1
27+
max_iteration: 1700
28+
lookahead_time: 1.5
29+
min_lookahead_dist: 1.0
30+
max_lookahead_dist: 2.5
31+
min_v_inc: -1.0
32+
max_v_inc: 1.0
33+
min_v: 0.0
34+
max_v: 0.5
35+
min_w_inc: -3.141592653589793
36+
max_w_inc: 3.141592653589793
37+
min_w: -1.5707963267948966
38+
max_w: 1.5707963267948966
39+
goal_dist_tol: 0.5
40+
rotate_tol: 0.5
41+
zeta: 1.0
42+
eta: 1.5
43+
d_0: 1.5
44+
45+
rpp:
46+
time_step: 0.1
47+
max_iteration: 1700
48+
lookahead_time: 1.5
49+
min_lookahead_dist: 1.0
50+
max_lookahead_dist: 2.5
51+
min_v_inc: -1.0
52+
max_v_inc: 1.0
53+
min_v: 0.0
54+
max_v: 0.5
55+
min_w_inc: -3.141592653589793
56+
max_w_inc: 3.141592653589793
57+
min_w: -1.5707963267948966
58+
max_w: 1.5707963267948966
59+
goal_dist_tol: 0.5
60+
rotate_tol: 0.5
61+
regulated_radius_min: 0.9
62+
scaling_dist: 0.6
63+
scaling_gain: 1.0
64+
65+
pid:
66+
time_step: 0.1
67+
max_iteration: 1700
68+
lookahead_time: 1.5
69+
min_lookahead_dist: 1.0
70+
max_lookahead_dist: 2.5
71+
min_v_inc: -1.0
72+
max_v_inc: 1.0
73+
min_v: 0.0
74+
max_v: 0.5
75+
min_w_inc: -3.141592653589793
76+
max_w_inc: 3.141592653589793
77+
min_w: -1.5707963267948966
78+
max_w: 1.5707963267948966
79+
goal_dist_tol: 0.5
80+
rotate_tol: 0.5
81+
82+
lqr:
83+
time_step: 0.1
84+
max_iteration: 1700
85+
lookahead_time: 1.5
86+
min_lookahead_dist: 1.0
87+
max_lookahead_dist: 2.5
88+
min_v_inc: -1.0
89+
max_v_inc: 1.0
90+
min_v: 0.0
91+
max_v: 0.5
92+
min_w_inc: -3.141592653589793
93+
max_w_inc: 3.141592653589793
94+
min_w: -1.5707963267948966
95+
max_w: 1.5707963267948966
96+
goal_dist_tol: 0.5
97+
rotate_tol: 0.5
98+
Q_diag: [1, 1, 1]
99+
R_diag: [1, 1]
100+
lqr_iterations: 100
101+
lqr_solve_eps: 1.e-1
102+
103+
mpc:
104+
time_step: 0.1
105+
max_iteration: 1700
106+
lookahead_time: 1.5
107+
min_lookahead_dist: 1.0
108+
max_lookahead_dist: 2.5
109+
min_v_inc: -1.0
110+
max_v_inc: 1.0
111+
min_v: 0.0
112+
max_v: 0.5
113+
min_w_inc: -3.141592653589793
114+
max_w_inc: 3.141592653589793
115+
min_w: -0.78
116+
max_w: 1.5707963267948966
117+
goal_dist_tol: 0.5
118+
rotate_tol: 0.5
119+
p: 12
120+
m: 8
121+
Q_diag: [0.8, 0.8, 0.5]
122+
R_diag: [2, 2]

config/maps/warehouse.png

6.41 KB
Loading
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
pso:
2+
heuristic_type: euclidean
3+
# number of particles
4+
n_particles: 300
5+
# number of position points contained in each particle
6+
point_num: 5
7+
# inertial weight
8+
w_inertial: 1.0
9+
# cognitive weight
10+
w_cognitive: 1.0
11+
# social weight
12+
w_social: 1.0
13+
# The maximum velocity of particle motion
14+
max_speed: 6
15+
# maximum iterations
16+
max_iter: 200
17+
# Set the generation mode for the initial position points of the particle swarm (0 for circle and 1 for random)
18+
init_mode: 1
19+
# show process
20+
verbose: true
Lines changed: 72 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,72 @@
1+
a_star:
2+
heuristic_type: euclidean
3+
4+
dijkstra:
5+
heuristic_type: euclidean
6+
7+
gbfs:
8+
heuristic_type: euclidean
9+
10+
bi_a_star:
11+
heuristic_type: euclidean
12+
13+
theta_star:
14+
heuristic_type: euclidean
15+
16+
lazy_theta_star:
17+
heuristic_type: euclidean
18+
19+
s_theta_star:
20+
heuristic_type: euclidean
21+
22+
jps:
23+
heuristic_type: euclidean
24+
25+
voronoi:
26+
heuristic_type: euclidean
27+
# number of edges from one sampled point
28+
n_knn: 4
29+
# maximum edge length
30+
max_edge_len: 10.0
31+
# inflation range
32+
inflation_r: 1.0
33+
34+
d_star:
35+
heuristic_type: euclidean
36+
37+
lpa_star:
38+
heuristic_type: euclidean
39+
40+
d_star_lite:
41+
heuristic_type: euclidean
42+
43+
rrt:
44+
# Maximum expansion distance one step
45+
max_dist: 0.5
46+
# Maximum number of sample points
47+
sample_num: 10000
48+
# heuristic sample ratio for goal
49+
goal_sample_rate: 0.05
50+
# inflation bias
51+
delta: 0.5
52+
53+
rrt_connect:
54+
max_dist: 0.5
55+
sample_num: 10000
56+
goal_sample_rate: 0.05
57+
delta: 0.5
58+
59+
rrt_star:
60+
max_dist: 0.5
61+
sample_num: 10000
62+
goal_sample_rate: 0.05
63+
delta: 0.5
64+
# optimization radius
65+
r: 10
66+
67+
informed_rrt:
68+
max_dist: 0.5
69+
sample_num: 2000
70+
goal_sample_rate: 0.05
71+
delta: 0.5
72+
r: 12

0 commit comments

Comments
 (0)