Merge pull request 'Fix Error Quaternion' (#883) from error-quat-fix into main
All checks were successful
EIVE/eive-obsw/pipeline/head This commit looks good
All checks were successful
EIVE/eive-obsw/pipeline/head This commit looks good
Reviewed-on: #883 Reviewed-by: Robin Müller <muellerr@irs.uni-stuttgart.de>
This commit is contained in:
commit
584a16a67c
@ -27,6 +27,10 @@ will consitute of a breaking change warranting a new major release:
|
|||||||
|
|
||||||
- PUS timeservice relative timeshift.
|
- PUS timeservice relative timeshift.
|
||||||
|
|
||||||
|
## Fixed
|
||||||
|
|
||||||
|
- Fixed wrong order in quaternion multiplication for computation of the error quaternion.
|
||||||
|
|
||||||
# [v7.7.4] 2024-03-21
|
# [v7.7.4] 2024-03-21
|
||||||
|
|
||||||
## Changed
|
## Changed
|
||||||
|
@ -303,9 +303,9 @@ void Guidance::comparePtg(double currentQuat[4], double currentSatRotRate[3], do
|
|||||||
// First calculate error quaternion between current and target orientation without reference
|
// First calculate error quaternion between current and target orientation without reference
|
||||||
// quaternion
|
// quaternion
|
||||||
double errorQuatWoRef[4] = {0, 0, 0, 0};
|
double errorQuatWoRef[4] = {0, 0, 0, 0};
|
||||||
QuaternionOperations::multiply(currentQuat, targetQuat, errorQuatWoRef);
|
QuaternionOperations::multiply(targetQuat, currentQuat, errorQuatWoRef);
|
||||||
// Then add rotation from reference quaternion
|
// Then add rotation from reference quaternion
|
||||||
QuaternionOperations::multiply(refQuat, errorQuatWoRef, errorQuat);
|
QuaternionOperations::multiply(errorQuatWoRef, refQuat, errorQuat);
|
||||||
// Keep scalar part of quaternion positive
|
// Keep scalar part of quaternion positive
|
||||||
if (errorQuat[3] < 0) {
|
if (errorQuat[3] < 0) {
|
||||||
VectorOperations<double>::mulScalar(errorQuat, -1, errorQuat, 4);
|
VectorOperations<double>::mulScalar(errorQuat, -1, errorQuat, 4);
|
||||||
|
Loading…
Reference in New Issue
Block a user