Skip to content

Commit ccededa

Browse files
authored
Merge branch 'master' into patch-remove-internet-requirement
2 parents 12aee65 + 88242e3 commit ccededa

File tree

2 files changed

+4
-5
lines changed

2 files changed

+4
-5
lines changed

autonomy_core/control/control_launch/config/tracker_params_mp.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ trajectory_planner:
2828
use_3d_local: false # local planner operates in 3D (true) or 2D (false)
2929

3030
use_3d_global: false # global planner operates in 3D (true, in this case use_3d_local has to be set as true) or 2D (false)
31-
z_cost_factor: 2 # global map z cost factor, this also influences the vertical semi field of view of global planner into 45-degree / z_cost_factor (cost_along_z = z_cost_factor * cost_along_x_or_y)
31+
z_cost_factor: 1 # [TODO: have to set to 1 to work, otherwise path will go through obstacles, need to be fixed] global map z cost factor, this also influences the vertical semi field of view of global planner into 45-degree / z_cost_factor (cost_along_z = z_cost_factor * cost_along_x_or_y)
3232

3333
max_v_z: 1.5 # z-direction maximum velocity, recommended value: 1.5
3434
max_a_z: 3.0 # z-direction maximum acceleration, recommended value: 3.0
@@ -41,7 +41,7 @@ trajectory_planner:
4141
ndt: 1.0 # default 1
4242
max_num: -1 # maxmum number of expansion, -1 means no limitation
4343
heuristic_weight: 50.0 # the larger heuristic_weight, the more emphasis on min time and the less emphasis on min control effort, recommended value: 50 for 2-D, 300 for 3-D
44-
vertical_semi_fov: 0.61 # vertical semi field of view (in rad), used for 3D planning only, value should lie in (0, pi/2), if 2D planning set it as 0
44+
vertical_semi_fov: 1.57 # vertical semi field of view (in rad), used for 3D planning only, value should lie in (0, pi/2), if 2D planning set it as 0
4545

4646
stopping_policy:
4747
acc_xy_des: 6.0 # stopping policy x-y maximum acceleration

autonomy_core/map_plan/mpl/CMakeLists.txt

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,7 @@ target_link_libraries(test_map_util ${catkin_LIBRARIES} ${PROJECT_NAME})
5454
# e.g. from the catkin root directory run:
5555
# ./build/motion_primitive_library/_deps/benchmark-src/tools/compare.py benchmarks file1.json file2.json
5656

57+
5758
# include(FetchContent)
5859
# FetchContent_Declare(
5960
# benchmark
@@ -62,6 +63,4 @@ target_link_libraries(test_map_util ${catkin_LIBRARIES} ${PROJECT_NAME})
6263
# FetchContent_MakeAvailable(benchmark)
6364

6465
# add_executable(map_util_benchmarking test/benchmark_map_util.cpp)
65-
# target_link_libraries(map_util_benchmarking benchmark::benchmark ${PROJECT_NAME})
66-
67-
66+
# target_link_libraries(map_util_benchmarking benchmark::benchmark ${PROJECT_NAME})

0 commit comments

Comments
 (0)