Browse Source
At each new valid range measurement, the time derivative of the distance to the ground is computed and compared with the estimated velocity. The average of a normalized innovation squared statistic check is used to detect a bias in the derivative of distance measurement, indicating that the distance measurements are kinematically inconsistent with the filter.v1.13.0-BW
6 changed files with 136 additions and 0 deletions
@ -0,0 +1,64 @@ |
|||||||
|
/****************************************************************************
|
||||||
|
* |
||||||
|
* Copyright (c) 2022 PX4. 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 range_finder_consistency_check.cpp |
||||||
|
*/ |
||||||
|
|
||||||
|
#include "range_finder_consistency_check.hpp" |
||||||
|
|
||||||
|
void RangeFinderConsistencyCheck::update(float dist_bottom, float dist_bottom_var, float vz, float vz_var, float time_s) |
||||||
|
{ |
||||||
|
const float dt = time_s - _time_last_update_s; |
||||||
|
|
||||||
|
if ((_time_last_update_s < FLT_EPSILON) |
||||||
|
|| (dt < 0.001f) || (dt > 0.5f)) { |
||||||
|
_time_last_update_s = time_s; |
||||||
|
_dist_bottom_prev = dist_bottom; |
||||||
|
return; |
||||||
|
} |
||||||
|
|
||||||
|
const float vel_bottom = (dist_bottom - _dist_bottom_prev) / dt; |
||||||
|
const float innov = -vel_bottom - vz; // vel_bottom is +up while vz is +down
|
||||||
|
const float vel_bottom_var = 2.f * dist_bottom_var / (dt * dt); |
||||||
|
const float innov_var = vel_bottom_var + vz_var; |
||||||
|
const float normalized_innov_sq = (innov * innov) / innov_var; |
||||||
|
_vel_bottom_test_ratio = normalized_innov_sq / (_vel_bottom_gate * _vel_bottom_gate); |
||||||
|
|
||||||
|
_vel_bottom_signed_test_ratio_lpf.setParameters(dt, _vel_bottom_signed_test_ratio_tau); |
||||||
|
const float signed_test_ratio = matrix::sign(innov) * normalized_innov_sq / (_vel_bottom_signed_gate * _vel_bottom_signed_gate); |
||||||
|
_vel_bottom_signed_test_ratio_lpf.update(signed_test_ratio); |
||||||
|
|
||||||
|
_time_last_update_s = time_s; |
||||||
|
_dist_bottom_prev = dist_bottom; |
||||||
|
} |
@ -0,0 +1,66 @@ |
|||||||
|
/****************************************************************************
|
||||||
|
* |
||||||
|
* Copyright (c) 2022 PX4. 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 range_finder_consistency_check.hpp |
||||||
|
* @brief Compute statistical tests of the range finder data |
||||||
|
* using the estimated velocity as a reference in order to detect sensor faults |
||||||
|
*/ |
||||||
|
|
||||||
|
#pragma once |
||||||
|
|
||||||
|
#include <mathlib/math/filter/AlphaFilter.hpp> |
||||||
|
|
||||||
|
class RangeFinderConsistencyCheck final |
||||||
|
{ |
||||||
|
public: |
||||||
|
RangeFinderConsistencyCheck() = default; |
||||||
|
~RangeFinderConsistencyCheck() = default; |
||||||
|
|
||||||
|
void update(float dist_bottom, float dist_bottom_var, float vz, float vz_var, float time_s); |
||||||
|
|
||||||
|
float getTestRatio() const { return _vel_bottom_test_ratio; } |
||||||
|
float getSignedTestRatioLpf() const { return _vel_bottom_signed_test_ratio_lpf.getState(); } |
||||||
|
bool isKinematicallyConsistent() const { return _vel_bottom_signed_test_ratio_lpf.getState() < 1.f; } |
||||||
|
|
||||||
|
private: |
||||||
|
float _time_last_update_s{}; |
||||||
|
float _dist_bottom_prev{}; |
||||||
|
|
||||||
|
float _vel_bottom_test_ratio{}; |
||||||
|
AlphaFilter<float> _vel_bottom_signed_test_ratio_lpf{}; // average signed test ratio used to detect a bias in the data
|
||||||
|
|
||||||
|
static constexpr float _vel_bottom_signed_test_ratio_tau = 2.f; |
||||||
|
static constexpr float _vel_bottom_gate = 3.f; |
||||||
|
static constexpr float _vel_bottom_signed_gate = 0.1f; |
||||||
|
}; |
Loading…
Reference in new issue