From 5f08ca5408b8a4b2b005e40a4778abd7238b399b 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 2c59df41..c2ac8be4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -59,6 +59,10 @@ will consitute of a breaking change warranting a new major release: - `PusLiveDemux` packet demultiplexing bugfix where the demultiplexing did not work when there was only one destination available. +## 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; };