Skip to content

Commit e517e4d

Browse files
committed
Fix formatting
1 parent b6c4c13 commit e517e4d

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

Common/include/CConfig.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -760,7 +760,7 @@ class CConfig {
760760
unsigned short nSST_Options; /*!< \brief Number of SST options specified. */
761761
unsigned short nSA_Options; /*!< \brief Number of SA options specified. */
762762
unsigned short nLM_Options; /*!< \brief Number of SA options specified. */
763-
unsigned short nROUGHSST_Options; /*!< \brief Number of rough-wall boundary conditions for SST turbulence model options specified. */
763+
unsigned short nROUGHSST_Options; /*!< \brief Number of rough-wall boundary conditions for SST turbulence model options specified. */
764764
WALL_FUNCTIONS *Kind_WallFunctions; /*!< \brief The kind of wall function to use for the corresponding markers. */
765765
unsigned short **IntInfo_WallFunctions; /*!< \brief Additional integer information for the wall function markers. */
766766
su2double **DoubleInfo_WallFunctions; /*!< \brief Additional double information for the wall function markers. */

Common/include/option_structure.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1148,7 +1148,7 @@ inline ROUGH_SST_ParsedOptions ParseROUGHSSTOptions(const ROUGHSST_OPTIONS *ROUG
11481148
ROUGHSSTParsedOptions.wilcox2006 = IsPresent(ROUGHSST_OPTIONS::WILCOX2006);
11491149
ROUGHSSTParsedOptions.limiter_knopp = IsPresent(ROUGHSST_OPTIONS::LIMITER_KNOPP);
11501150
ROUGHSSTParsedOptions.limiter_aupoix = IsPresent(ROUGHSST_OPTIONS::LIMITER_AUPOIX);
1151-
1151+
11521152

11531153
return ROUGHSSTParsedOptions;
11541154
}

Common/src/CConfig.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1129,7 +1129,7 @@ void CConfig::SetConfig_Options() {
11291129
addEnumListOption("SST_OPTIONS", nSST_Options, SST_Options, SST_Options_Map);
11301130
/*!\brief SST_OPTIONS \n DESCRIPTION: Specify SA turbulence model options/corrections. \n Options: see \link SA_Options_Map \endlink \n DEFAULT: NONE \ingroup Config*/
11311131
addEnumListOption("SA_OPTIONS", nSA_Options, SA_Options, SA_Options_Map);
1132-
1132+
11331133
/*!\brief ROUGHSST_OPTIONS \n DESCRIPTION: Specify type of boundary condition for rough walls for SST turbulence model. \n Options: see \link ROUGHSST_Options_Map \endlink \n DEFAULT: wilcox1998 \ingroup Config*/
11341134
addEnumListOption("ROUGHSST_OPTIONS", nROUGHSST_Options, ROUGHSST_Options, ROUGHSST_Options_Map);
11351135
/*!\brief KIND_TRANS_MODEL \n DESCRIPTION: Specify transition model OPTIONS: see \link Trans_Model_Map \endlink \n DEFAULT: NONE \ingroup Config*/
@@ -3579,7 +3579,7 @@ void CConfig::SetPostprocessing(SU2_COMPONENT val_software, unsigned short val_i
35793579
/*--- Postprocess SST_OPTIONS into structure. ---*/
35803580
if (Kind_Turb_Model == TURB_MODEL::SST) {
35813581
sstParsedOptions = ParseSSTOptions(SST_Options, nSST_Options, rank);
3582-
roughsstParsedOptions = ParseROUGHSSTOptions(ROUGHSST_Options, nROUGHSST_Options, rank);
3582+
roughsstParsedOptions = ParseROUGHSSTOptions(ROUGHSST_Options, nROUGHSST_Options, rank);
35833583
} else if (Kind_Turb_Model == TURB_MODEL::SA) {
35843584
saParsedOptions = ParseSAOptions(SA_Options, nSA_Options, rank);
35853585
}

0 commit comments

Comments
 (0)