Skip to content

Commit

Permalink
- Removed not used config variables
Browse files Browse the repository at this point in the history
  • Loading branch information
rois1995 committed Aug 30, 2024
1 parent 9d82d51 commit c10b006
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 7 deletions.
4 changes: 0 additions & 4 deletions Common/include/CConfig.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -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. */
Expand Down Expand Up @@ -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; }

Expand Down
3 changes: 0 additions & 3 deletions Common/src/CConfig.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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);

Expand Down Expand Up @@ -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;
}
Expand Down

0 comments on commit c10b006

Please sign in to comment.