mirror of
https://gitee.com/mirrors_PX4/PX4-Autopilot.git
synced 2026-07-14 11:40:35 +08:00
2f55dff8b9
* rft: initial merging of controllers for spacecraft vehicles * feat: rate controller nominal * feat: spacecraft tooling for commander and VehicleStatus * feat: spacecraft tooling for commander and VehicleStatus * fix: format * fix: format * fix: remove iostream * fix: remove iostream * feat: spacecraft attitude control and minor refactoring of params * feat: add position controller * fix: format * fix: moved trajectories to new message, removed derivative filters * fix: format * fix: removed extra newline * fix: spacecraft allocation builds * feat: add thrusters to effectivenes, add spacecraft build to cmake, clean comments * feat: required changes for allocation * feat: thruster simulation interface * fix: update maximum and minimums * fix: format * fix: added newline at the end of spacecraft actuator effectiveness * feat: configurable board pwm freq from Kconfig * feat: mavlink compliant spacecraft definition * feat: add orbiter to define * boards: Increase TELEM2 rx buffer size for DDS over serial use-case (ARK Jetson) feat: spacecraft tooling for commander and VehicleStatus fix: format fix: remove iostream feat: mavlink compliant spacecraft definition * feat: add orbiter to define * feat: add orbiter to define * fix: change mav_type to new spacecraft orbiter enum value * fix: build issue * feat: update mavlink * feat: update mavlink to latest master with spacecraft * feat: update mavlink * feat: update mavlink to latest * feat: cleanup and synchronization with new mavlink vehicle definition * fix: get away without specifying spacecraft vehicle * fix: removed unnecessary definition * fix: format * feat: cmake variant for spacecraft * feat: proper mav_type and rc init * fix: removed dart from build system * add: thrusters to actuator type * rft: reordering actuator type * rft: initial merging of controllers for spacecraft vehicles * feat: rate controller nominal * fix: format * feat: spacecraft attitude control and minor refactoring of params * feat: add position controller * fix: format * fix: moved trajectories to new message, removed derivative filters * fix: format * fix: removed extra newline * fix: spacecraft allocation builds * feat: add thrusters to effectivenes, add spacecraft build to cmake, clean comments * feat: required changes for allocation * feat: thruster simulation interface * fix: update maximum and minimums * fix: format * fix: added newline at the end of spacecraft actuator effectiveness * feat: configurable board pwm freq from Kconfig * feat: add orbiter to define * feat: cleanup and synchronization with new mavlink vehicle definition * fix: get away without specifying spacecraft vehicle * fix: conflicts * fix: format * fix: remove duplicate entry * rft: remove Kconfig changes * rft: revert main Kconfig * rft: revert main kcoonfig on platforms * rft: remove changes to board PWm (go on another PR) * rft: revert changes to commander (main is correct) * fix: extra char on commander_helper * rft: removed extra spaces * rft: moved effectiveness to spacecraft * fix: spacecraft effectiveness * fix: extra space * feat: preliminary version, still using thrusters * rft: initial pipeline on PX4 side with rotors instead of thrusters * feat: add atmos model * feat: spacecraft with rotor pipeline tested, working * feat: update gz * rft: removed thruster interfaces * fix: format * fix: remove control allocation * fix: thruster normalization * fix: format * fix: nuttx version * fix: clang tidy error * feat: updated gz to add atmos model * fix: update gz * fix: update mavlink * fix: remove friend class from allocation lib * fix: remove actuator_outputs/motors --------- Co-authored-by: Alexander Lerach <alexander@auterion.com>
106 lines
3.8 KiB
C++
106 lines
3.8 KiB
C++
/****************************************************************************
|
|
*
|
|
* Copyright (c) 2019 PX4 Development Team. All rights reserved.
|
|
*
|
|
* Redistribution and use in source and binary forms, with or without
|
|
* modification, are permitted provided that the following conditions
|
|
* are met:
|
|
*
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
* notice, this list of conditions and the following disclaimer.
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
* notice, this list of conditions and the following disclaimer in
|
|
* the documentation and/or other materials provided with the
|
|
* distribution.
|
|
* 3. Neither the name PX4 nor the names of its contributors may be
|
|
* used to endorse or promote products derived from this software
|
|
* without specific prior written permission.
|
|
*
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
|
|
* FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
|
|
* COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
|
|
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
|
|
* BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
|
|
* OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
|
|
* AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
|
|
* ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
|
* POSSIBILITY OF SUCH DAMAGE.
|
|
*
|
|
****************************************************************************/
|
|
|
|
/**
|
|
* @file AttitudeControl.hpp
|
|
*
|
|
* A quaternion based attitude controller.
|
|
*
|
|
* @author Matthias Grob <maetugr@gmail.com>
|
|
*
|
|
* Publication documenting the implemented Quaternion Attitude Control:
|
|
* Nonlinear Quadrocopter Attitude Control (2013)
|
|
* by Dario Brescianini, Markus Hehn and Raffaello D'Andrea
|
|
* Institute for Dynamic Systems and Control (IDSC), ETH Zurich
|
|
*
|
|
* https://www.research-collection.ethz.ch/bitstream/handle/20.500.11850/154099/eth-7387-01.pdf
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <matrix/matrix/math.hpp>
|
|
#include <mathlib/math/Limits.hpp>
|
|
|
|
class ScAttitudeControl
|
|
{
|
|
public:
|
|
ScAttitudeControl() = default;
|
|
~ScAttitudeControl() = default;
|
|
|
|
/**
|
|
* Set proportional attitude control gain
|
|
* @param proportional_gain 3D vector containing gains for roll, pitch, yaw
|
|
*/
|
|
void setProportionalGain(const matrix::Vector3f &proportional_gain);
|
|
|
|
/**
|
|
* Set hard limit for output rate setpoints
|
|
* @param rate_limit [rad/s] 3D vector containing limits for roll, pitch, yaw
|
|
*/
|
|
void setRateLimit(const matrix::Vector3f &rate_limit) { _rate_limit = rate_limit; }
|
|
|
|
/**
|
|
* Set a new attitude setpoint replacing the one tracked before
|
|
* @param qd desired vehicle attitude setpoint
|
|
*/
|
|
void setAttitudeSetpoint(const matrix::Quatf &qd)
|
|
{
|
|
_attitude_setpoint_q = qd;
|
|
_attitude_setpoint_q.normalize();
|
|
}
|
|
|
|
/**
|
|
* Adjust last known attitude setpoint by a delta rotation
|
|
* Optional use to avoid glitches when attitude estimate reference e.g. heading changes.
|
|
* @param q_delta delta rotation to apply
|
|
*/
|
|
void adaptAttitudeSetpoint(const matrix::Quatf &q_delta)
|
|
{
|
|
_attitude_setpoint_q = q_delta * _attitude_setpoint_q;
|
|
_attitude_setpoint_q.normalize();
|
|
}
|
|
|
|
/**
|
|
* Run one control loop cycle calculation
|
|
* @param q estimation of the current vehicle attitude unit quaternion
|
|
* @return [rad/s] body frame 3D angular rate setpoint vector to be executed by the rate controller
|
|
*/
|
|
matrix::Vector3f update(const matrix::Quatf &q) const;
|
|
|
|
private:
|
|
matrix::Vector3f _proportional_gain;
|
|
matrix::Vector3f _rate_limit;
|
|
|
|
matrix::Quatf _attitude_setpoint_q; ///< latest known attitude setpoint e.g. from position control
|
|
};
|