From d18452066b1a2eae432b50daf62a8e5509fc94f9 Mon Sep 17 00:00:00 2001 From: Lukas Neuerburg <lukas.neuerburg@ilr.rwth-aachen.de> Date: Thu, 27 Mar 2025 14:12:26 +0100 Subject: [PATCH] Apply 1 suggestion(s) to 1 file(s) Co-authored-by: gPauls-TUHH <gerrit.pauls@tuhh.de> --- aerodynamic_analysis/src/taw/tawCalculatePolarConfig.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/aerodynamic_analysis/src/taw/tawCalculatePolarConfig.h b/aerodynamic_analysis/src/taw/tawCalculatePolarConfig.h index 8f60d242..5560d238 100644 --- a/aerodynamic_analysis/src/taw/tawCalculatePolarConfig.h +++ b/aerodynamic_analysis/src/taw/tawCalculatePolarConfig.h @@ -123,9 +123,9 @@ class tawCalculatePolarConfig{ /* High lift calibration data */ struct hl_polar_calibration_values { - double CL_max; /**< maximum CL value which should be reached */ - double delta_CD; /**< Constant delta for drag calibration */ - double factor_CD; /**< Factor for drag calibration */ + double CL_max = NAN; /**< maximum CL value which should be reached */ + double delta_CD = NAN; /**< Constant delta for drag calibration */ + double factor_CD = NAN; /**< Factor for drag calibration */ }; std::unordered_map<std::string, hl_polar_calibration_values> hl_polar_calibration_data; /**< Container for storing all high lift polar calibration and correction values */ -- GitLab