Source code for isaaclab_contrib.controllers.lee_acceleration_control_cfg

# Copyright (c) 2022-2026, The Isaac Lab Project Developers (https://github.com/isaac-sim/IsaacLab/blob/main/CONTRIBUTORS.md).
# All rights reserved.
#
# SPDX-License-Identifier: BSD-3-Clause


from isaaclab.utils.configclass import configclass

from .lee_acceleration_control import LeeAccController
from .lee_controller_base_cfg import LeeControllerBaseCfg


[docs] @configclass class LeeAccControllerCfg(LeeControllerBaseCfg): """Configuration for a Lee-style geometric quadrotor acceleration controller. Unless otherwise noted, vectors are ordered as (x, y, z) in the simulation world/body frames. The acceleration controller gains are sampled uniformly per environment between their corresponding ``*_min`` and ``*_max`` bounds at reset. """ class_type: type = LeeAccController """The class type for the acceleration controller."""