5 changed files with 128 additions and 134 deletions
@ -1,97 +0,0 @@
@@ -1,97 +0,0 @@
|
||||
/****************************************************************************
|
||||
* |
||||
* Copyright (c) 2015-2020 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. |
||||
* |
||||
****************************************************************************/ |
||||
|
||||
#include "Integrator.hpp" |
||||
|
||||
#include <drivers/drv_hrt.h> |
||||
|
||||
using matrix::Vector3f; |
||||
|
||||
bool Integrator::put(const hrt_abstime ×tamp, const Vector3f &val) |
||||
{ |
||||
if ((_last_integration_time == 0) || (timestamp <= _last_integration_time)) { |
||||
/* this is the first item in the integrator */ |
||||
_last_integration_time = timestamp; |
||||
_last_reset_time = timestamp; |
||||
_last_val = val; |
||||
|
||||
return false; |
||||
} |
||||
|
||||
// Use trapezoidal integration to calculate the delta integral
|
||||
const float dt = static_cast<float>(timestamp - _last_integration_time) * 1e-6f; |
||||
const matrix::Vector3f delta_alpha = (val + _last_val) * dt * 0.5f; |
||||
_last_val = val; |
||||
_last_integration_time = timestamp; |
||||
_integrated_samples++; |
||||
|
||||
// Calculate coning corrections if required
|
||||
if (_coning_comp_on) { |
||||
// Coning compensation derived by Paul Riseborough and Jonathan Challinger,
|
||||
// following:
|
||||
// Tian et al (2010) Three-loop Integration of GPS and Strapdown INS with Coning and Sculling Compensation
|
||||
// Sourced: http://www.sage.unsw.edu.au/snap/publications/tian_etal2010b.pdf
|
||||
// Simulated: https://github.com/priseborough/InertialNav/blob/master/models/imu_error_modelling.m
|
||||
_beta += ((_last_alpha + _last_delta_alpha * (1.f / 6.f)) % delta_alpha) * 0.5f; |
||||
_last_delta_alpha = delta_alpha; |
||||
_last_alpha = _alpha; |
||||
} |
||||
|
||||
// accumulate delta integrals
|
||||
_alpha += delta_alpha; |
||||
|
||||
return true; |
||||
} |
||||
|
||||
bool Integrator::reset(Vector3f &integral, uint32_t &integral_dt) |
||||
{ |
||||
if (integral_ready()) { |
||||
integral = Vector3f{_alpha}; |
||||
_alpha.zero(); |
||||
|
||||
integral_dt = (_last_integration_time - _last_reset_time); |
||||
_last_reset_time = _last_integration_time; |
||||
_integrated_samples = 0; |
||||
|
||||
// apply coning corrections if required
|
||||
if (_coning_comp_on) { |
||||
integral += _beta; |
||||
_beta.zero(); |
||||
_last_alpha.zero(); |
||||
} |
||||
|
||||
return true; |
||||
} |
||||
|
||||
return false; |
||||
} |
Loading…
Reference in new issue