2022-09-20 13:36:17 +02:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Detumble.cpp
|
|
|
|
*
|
|
|
|
* Created on: 17 Aug 2022
|
|
|
|
* Author: Robin Marquardt
|
|
|
|
*/
|
|
|
|
|
2022-09-27 11:06:11 +02:00
|
|
|
#include "Detumble.h"
|
2022-12-01 15:56:55 +01:00
|
|
|
|
2022-09-20 15:06:05 +02:00
|
|
|
#include <fsfw/globalfunctions/constants.h>
|
|
|
|
#include <fsfw/globalfunctions/math/MatrixOperations.h>
|
|
|
|
#include <fsfw/globalfunctions/math/QuaternionOperations.h>
|
|
|
|
#include <fsfw/globalfunctions/math/VectorOperations.h>
|
|
|
|
#include <fsfw/globalfunctions/sign.h>
|
2022-12-01 15:56:55 +01:00
|
|
|
#include <math.h>
|
2022-09-20 13:36:17 +02:00
|
|
|
|
2022-12-01 15:56:55 +01:00
|
|
|
#include "../util/MathOperations.h"
|
2022-09-20 13:36:17 +02:00
|
|
|
|
2022-12-01 15:56:55 +01:00
|
|
|
Detumble::Detumble(AcsParameters *acsParameters_) { loadAcsParameters(acsParameters_); }
|
2022-09-20 13:36:17 +02:00
|
|
|
|
2022-12-01 15:56:55 +01:00
|
|
|
Detumble::~Detumble() {}
|
2022-09-20 13:36:17 +02:00
|
|
|
|
2022-12-01 15:56:55 +01:00
|
|
|
void Detumble::loadAcsParameters(AcsParameters *acsParameters_) {
|
2022-12-14 10:13:28 +01:00
|
|
|
detumbleParameter = &(acsParameters_->detumbleParameter);
|
2022-12-01 15:56:55 +01:00
|
|
|
magnetorquesParameter = &(acsParameters_->magnetorquesParameter);
|
2022-09-20 13:36:17 +02:00
|
|
|
}
|
|
|
|
|
2022-12-14 10:13:28 +01:00
|
|
|
ReturnValue_t Detumble::bDotLaw(const double *magRate, const bool magRateValid,
|
|
|
|
const double *magField, const bool magFieldValid, double *magMom) {
|
|
|
|
if (!magRateValid || !magFieldValid) {
|
|
|
|
return DETUMBLE_NO_SENSORDATA;
|
|
|
|
}
|
|
|
|
double gain = detumbleParameter->gainD;
|
|
|
|
double factor = -gain / pow(VectorOperations<double>::norm(magField, 3), 2);
|
|
|
|
VectorOperations<double>::mulScalar(magRate, factor, magMom, 3);
|
|
|
|
return returnvalue::OK;
|
2022-09-20 13:36:17 +02:00
|
|
|
}
|
|
|
|
|
2022-11-03 10:43:27 +01:00
|
|
|
ReturnValue_t Detumble::bangbangLaw(const double *magRate, const bool magRateValid,
|
|
|
|
double *magMom) {
|
|
|
|
if (!magRateValid) {
|
|
|
|
return DETUMBLE_NO_SENSORDATA;
|
|
|
|
}
|
2022-09-20 13:36:17 +02:00
|
|
|
|
2022-11-03 10:43:27 +01:00
|
|
|
double dipolMax = magnetorquesParameter->DipolMax;
|
|
|
|
for (int i = 0; i < 3; i++) {
|
|
|
|
magMom[i] = -dipolMax * sign(magRate[i]);
|
|
|
|
}
|
2022-09-20 13:36:17 +02:00
|
|
|
|
2023-02-01 15:37:10 +01:00
|
|
|
return returnvalue::OK;
|
2022-09-20 13:36:17 +02:00
|
|
|
}
|
2022-10-21 16:46:09 +02:00
|
|
|
|
|
|
|
ReturnValue_t Detumble::bDotLawGyro(const double *satRate, const bool *satRateValid,
|
2023-02-01 15:37:10 +01:00
|
|
|
const double *magField, const bool *magFieldValid,
|
|
|
|
double *magMom) {
|
|
|
|
if (!satRateValid || !magFieldValid) {
|
|
|
|
return DETUMBLE_NO_SENSORDATA;
|
|
|
|
}
|
|
|
|
double gain = detumbleParameter->gainD;
|
|
|
|
double factor = -gain / pow(VectorOperations<double>::norm(magField, 3), 2);
|
|
|
|
VectorOperations<double>::mulScalar(satRate, factor, magMom, 3);
|
|
|
|
return returnvalue::OK;
|
2022-10-21 16:46:09 +02:00
|
|
|
}
|