2023-07-19 16:25:03 +02:00
|
|
|
#ifndef MISSION_CONTROLLER_ACS_FUSEDROTATIONESTIMATION_H_
|
|
|
|
#define MISSION_CONTROLLER_ACS_FUSEDROTATIONESTIMATION_H_
|
|
|
|
|
2023-07-20 11:09:34 +02:00
|
|
|
#include <fsfw/datapool/PoolReadGuard.h>
|
2023-07-19 16:25:03 +02:00
|
|
|
#include <fsfw/globalfunctions/math/VectorOperations.h>
|
|
|
|
#include <mission/controller/acs/AcsParameters.h>
|
2023-07-20 11:09:34 +02:00
|
|
|
#include <mission/controller/controllerdefinitions/AcsCtrlDefinitions.h>
|
2023-07-19 16:25:03 +02:00
|
|
|
|
|
|
|
class FusedRotationEstimation {
|
|
|
|
public:
|
|
|
|
FusedRotationEstimation(AcsParameters *acsParameters_);
|
|
|
|
|
2023-07-20 11:09:34 +02:00
|
|
|
void estimateFusedRotationRateSafe(acsctrl::SusDataProcessed *susDataProcessed,
|
|
|
|
acsctrl::MgmDataProcessed *mgmDataProcessed,
|
|
|
|
acsctrl::GyrDataProcessed *gyrDataProcessed,
|
|
|
|
acsctrl::FusedRotRateData *fusedRotRateData);
|
2023-07-19 16:25:03 +02:00
|
|
|
|
|
|
|
protected:
|
|
|
|
private:
|
2023-07-20 11:36:44 +02:00
|
|
|
static constexpr double ZERO_VEC[3] = {0, 0, 0};
|
2023-07-20 11:09:34 +02:00
|
|
|
|
2023-07-19 16:25:03 +02:00
|
|
|
AcsParameters *acsParameters;
|
|
|
|
double rotRateOldB[3] = {0, 0, 0};
|
2023-07-20 11:09:34 +02:00
|
|
|
|
|
|
|
void estimateFusedRotationRateEclipse(acsctrl::GyrDataProcessed *gyrDataProcessed,
|
|
|
|
acsctrl::FusedRotRateData *fusedRotRateData);
|
2023-07-19 16:25:03 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif /* MISSION_CONTROLLER_ACS_FUSEDROTATIONESTIMATION_H_ */
|