MAV'RIC
|
00001 /******************************************************************************* 00002 * Copyright (c) 2009-2016, MAV'RIC Development Team 00003 * All rights reserved. 00004 * 00005 * Redistribution and use in source and binary forms, with or without 00006 * modification, are permitted provided that the following conditions are met: 00007 * 00008 * 1. Redistributions of source code must retain the above copyright notice, 00009 * this list of conditions and the following disclaimer. 00010 * 00011 * 2. Redistributions in binary form must reproduce the above copyright notice, 00012 * this list of conditions and the following disclaimer in the documentation 00013 * and/or other materials provided with the distribution. 00014 * 00015 * 3. Neither the name of the copyright holder nor the names of its contributors 00016 * may be used to endorse or promote products derived from this software without 00017 * specific prior written permission. 00018 * 00019 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" 00020 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 00021 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 00022 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE 00023 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR 00024 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF 00025 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS 00026 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN 00027 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) 00028 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE 00029 * POSSIBILITY OF SUCH DAMAGE. 00030 ******************************************************************************/ 00031 00032 /******************************************************************************* 00033 * \file attitude_error_estimator.hpp 00034 * 00035 * \author MAV'RIC Team 00036 * \author Julien Lecoeur 00037 * 00038 * \brief A quaternion-based attitude-error estimator, takes a reference 00039 * quaternion as input and provides angular errors for roll, pitch and yaw in 00040 * the local frame. 00041 * 00042 * \details WARNING: For optimisation purpose, the computed errors are not in 00043 * radians: 00044 * With \f$ e_{roll} , e_{pitch}, e_{yaw} \f$ the true errors in radians around 00045 * the local roll, pitch and yaw axes, 00046 * this estimator returns 00047 * \f$ 2.sin( e_{roll} / 2 ), 2.sin( e_{pitch} / 2 ), 2.sin( e_{yaw} / 2 ) \f$ 00048 * 00049 * For small angular errors, this approximation is sensible. 00050 * 00051 ******************************************************************************/ 00052 00053 00054 #ifndef ATTITUDE_ERROR_ESTIMATOR_HPP_ 00055 #define ATTITUDE_ERROR_ESTIMATOR_HPP_ 00056 00057 #include "util/coord_conventions.hpp" 00058 #include "util/quaternions.h" 00059 #include "sensing/ahrs.hpp" 00060 00064 typedef struct 00065 { 00066 quat_t quat_ref; 00067 float rpy_errors[3]; 00068 const AHRS* ahrs; 00069 } attitude_error_estimator_t; 00070 00071 00080 bool attitude_error_estimator_init(attitude_error_estimator_t* estimator, const AHRS* ahrs); 00081 00082 00089 void attitude_error_estimator_set_quat_ref(attitude_error_estimator_t* estimator, const quat_t quat_ref); 00090 00091 00098 void attitude_error_estimator_set_quat_ref_from_aero(attitude_error_estimator_t* estimator, const aero_attitude_t aero); 00099 00100 00107 void attitude_error_estimator_set_quat_ref_from_rpy(attitude_error_estimator_t* estimator, const float rpy[3]); 00108 00109 00117 bool attitude_error_estimator_update(attitude_error_estimator_t* estimator); 00118 00119 00120 #endif /* ATTITUDE_ERROR_ESTIMATOR_HPP_ */