forked from PX4/PX4-Autopilot
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added pitot tube icing detection (PX4#23206)
* lib: add FilteredDerivative class * AirspeedValidator: add first principle check - filters throttle, pitch and airspeed rate, and triggers if the airspeed rate is negative even though the vehicle is pitching down and giving high throttle. Check has to fail for duration defined by ASPD_FP_T_WINDOW to trigger an airspeed failure. * AirspeedValidator: define constants for first principle check * FilteredDerivative: set initialised to false if sample interval is invalid * airspeed_selector: improved comment * increase IAS derivative filter time constant from 4 to 5 * use legacy parameter handling for FW_PSP_OFF * handle FW_THR_MAX as well * ROMFS/airframes: exclude some airframes for v6x and v4pro to save flash on them --------- Signed-off-by: Silvan Fuhrer <[email protected]> Signed-off-by: RomanBapst <[email protected]> Co-authored-by: Silvan Fuhrer <[email protected]>
- Loading branch information
1 parent
45758bf
commit e37a6c7
Showing
11 changed files
with
278 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,6 +8,7 @@ | |
# @maintainer Oleg Kalachev <[email protected]> | ||
# | ||
# @board px4_fmu-v2 exclude | ||
# @board px4_fmu-v4pro exclude | ||
# @board bitcraze_crazyflie exclude | ||
# | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,114 @@ | ||
/**************************************************************************** | ||
* | ||
* Copyright (c) 2024 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 FilteredDerivative.hpp | ||
* | ||
* @brief Derivative function passed through a first order "alpha" IIR digital filter | ||
* | ||
* @author Silvan Fuhrer <[email protected]> | ||
*/ | ||
|
||
#pragma once | ||
|
||
// #include <float.h> | ||
// #include <mathlib/math/Functions.hpp> | ||
#include <mathlib/math/filter/AlphaFilter.hpp> | ||
|
||
using namespace math; | ||
|
||
template <typename T> | ||
class FilteredDerivative | ||
{ | ||
public: | ||
FilteredDerivative() = default; | ||
~FilteredDerivative() = default; | ||
|
||
/** | ||
* Set filter parameters for time abstraction | ||
* | ||
* Both parameters have to be provided in the same units. | ||
* | ||
* @param sample_interval interval between two samples | ||
* @param time_constant filter time constant determining convergence | ||
*/ | ||
void setParameters(float sample_interval, float time_constant) | ||
{ | ||
_alpha_filter.setParameters(sample_interval, time_constant); | ||
_sample_interval = sample_interval; | ||
} | ||
|
||
/** | ||
* Set filter state to an initial value | ||
* | ||
* @param sample new initial value | ||
*/ | ||
void reset(const T &sample) | ||
{ | ||
_alpha_filter.reset(sample); | ||
_initialized = false; | ||
} | ||
|
||
/** | ||
* Add a new raw value to the filter | ||
* | ||
* @return retrieve the filtered result | ||
*/ | ||
const T &update(const T &sample) | ||
{ | ||
if (_initialized) { | ||
if (_sample_interval > FLT_EPSILON) { | ||
_alpha_filter.update((sample - _previous_sample) / _sample_interval); | ||
|
||
} else { | ||
_initialized = false; | ||
} | ||
|
||
} else { | ||
// don't update in the first iteration | ||
_initialized = true; | ||
} | ||
|
||
_previous_sample = sample; | ||
return _alpha_filter.getState(); | ||
} | ||
|
||
const T &getState() const { return _alpha_filter.getState(); } | ||
|
||
|
||
private: | ||
AlphaFilter<T> _alpha_filter; | ||
float _sample_interval{0.f}; | ||
T _previous_sample{0.f}; | ||
bool _initialized{false}; | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.