Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
43 changes: 43 additions & 0 deletions configuration/packages/configuring-mppic.rst
Original file line number Diff line number Diff line change
Expand Up @@ -930,6 +930,44 @@ This critic penalizes unnecessary 'twisting' with holonomic vehicles. It adds a
Description
Power order to apply to term.

Velocity Deadband Critic
------------------------

This critic penalizes velocities that fall below the deadband threshold, helping to mitigate hardware limitations on certain platforms.

:cost_weight:

=============== ===========================
Type Default
--------------- ---------------------------
double 35.0
=============== ===========================

Description
Weight to apply to critic term.

:cost_power:

=============== ===========================
Type Default
--------------- ---------------------------
int 1
=============== ===========================

Description
Power order to apply to term.

:deadband_velocities:

=============== ===========================
Type Default
--------------- ---------------------------
array of double [0.05, 0.05, 0.05]
=============== ===========================

Description
The array of deadband velocities [vx, vz, wz]. A zero array indicates that the critic will take no action.

Example
*******
.. code-block:: yaml
Expand Down Expand Up @@ -1026,6 +1064,11 @@ Example
threshold_to_consider: 0.5
max_angle_to_furthest: 1.0
mode: 0
# VelocityDeadbandCritic:
# enabled: true
# cost_power: 1
# cost_weight: 35.0
# deadband_velocities: [0.05, 0.05, 0.05]
# TwirlingCritic:
# enabled: true
# twirling_cost_power: 1
Expand Down