From c10b0066d29040b704c85d81fa547bd85be27e74 Mon Sep 17 00:00:00 2001 From: rois1995 Date: Fri, 30 Aug 2024 17:51:46 +0200 Subject: [PATCH] - Removed not used config variables --- Common/include/CConfig.hpp | 4 ---- Common/src/CConfig.cpp | 3 --- 2 files changed, 7 deletions(-) diff --git a/Common/include/CConfig.hpp b/Common/include/CConfig.hpp index 06d7882512a..b61b634b169 100644 --- a/Common/include/CConfig.hpp +++ b/Common/include/CConfig.hpp @@ -1171,8 +1171,6 @@ class CConfig { nHistoryOutput, nVolumeOutput; /*!< \brief Number of variables printed to the history file. */ bool Multizone_Residual; /*!< \brief Determines if memory should be allocated for the multizone residual. */ SST_ParsedOptions sstParsedOptions; /*!< \brief Additional parameters for the SST turbulence model. */ - su2double lowerLimitTKE, - lowerLimitDissipation; su2double prodLimConst; su2double LDomain; SA_ParsedOptions saParsedOptions; /*!< \brief Additional parameters for the SA turbulence model. */ @@ -9875,8 +9873,6 @@ class CConfig { */ SST_ParsedOptions GetSSTParsedOptions() const { return sstParsedOptions; } - su2double GetLowerLimitTKE() const { return lowerLimitTKE; } - su2double GetLowerLimitDissipation() const { return lowerLimitDissipation; } su2double GetProdLimConst() const { return prodLimConst; } su2double GetLDomain() const { return LDomain; } diff --git a/Common/src/CConfig.cpp b/Common/src/CConfig.cpp index d14a8d758f8..49d9301ece3 100644 --- a/Common/src/CConfig.cpp +++ b/Common/src/CConfig.cpp @@ -1118,8 +1118,6 @@ void CConfig::SetConfig_Options() { /*!\brief SST_OPTIONS \n DESCRIPTION: Specify SA turbulence model options/corrections. \n Options: see \link SA_Options_Map \endlink \n DEFAULT: NONE \ingroup Config*/ addEnumListOption("SA_OPTIONS", nSA_Options, SA_Options, SA_Options_Map); - addDoubleOption("LOWER_LIMIT_TKE", lowerLimitTKE, 1e-20); - addDoubleOption("LOWER_LIMIT_DISSIPATION", lowerLimitDissipation, 1e-6); addDoubleOption("PROD_LIM_CONST", prodLimConst, 20.0); addDoubleOption("L_DOMAIN", LDomain, 1.0); @@ -6230,7 +6228,6 @@ void CConfig::SetOutput(SU2_COMPONENT val_software, unsigned short val_izone) { cout << "." << endl; if (sstParsedOptions.prodLim) cout << "Changing the value of the TKE production limiter constant to " << prodLimConst << endl; - if (sstParsedOptions.llt) cout << "Changing the value of the lower limits of TKE and Omega " << endl; break; }