From 295da50bc7693a1d1011da6da410f42d96ee1df8 Mon Sep 17 00:00:00 2001 From: Robin Mueller Date: Wed, 21 Jun 2023 17:46:59 +0200 Subject: [PATCH] sus convert bugfix --- CHANGELOG.md | 4 ++++ mission/controller/acs/SusConverter.h | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e2df9f02..e26296b8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -18,6 +18,10 @@ will consitute of a breaking change warranting a new major release: # [v4.0.0] to be released +## Fixed + +- Fixed H parameter in SUS converter from 1 mm to 2.5 mm. + # [v3.3.0] 2023-06-21 Like v3.2.0 but without the custom FM changes related to VC0. diff --git a/mission/controller/acs/SusConverter.h b/mission/controller/acs/SusConverter.h index db72f498..8a6c279b 100644 --- a/mission/controller/acs/SusConverter.h +++ b/mission/controller/acs/SusConverter.h @@ -25,7 +25,7 @@ class SusConverter { static constexpr float S = 0.03; // S=[mm] gap between diodes static constexpr float D = 5; // D=[mm] edge length of the quadratic aperture - static constexpr float H = 1; // H=[mm] distance between diodes and aperture + static constexpr float H = 2.5; // H=[mm] distance between diodes and aperture AcsParameters acsParameters; };