@@ -1223,6 +1223,9 @@ void CConfig::SetConfig_Options() {
12231223 addDoubleOption (" PRANDTL_LAM" , Prandtl_Lam, 0.72 );
12241224 /* !\brief PRANDTL_TURB \n DESCRIPTION: Turbulent Prandtl number (0.9 (air), only for compressible flows) \n DEFAULT 0.90 \ingroup Config*/
12251225 addDoubleOption (" PRANDTL_TURB" , Prandtl_Turb, 0.90 );
1226+
1227+ /* --- Options related to wall models. ---*/
1228+
12261229 /* !\brief WALLMODEL_KAPPA \n DESCRIPTION: von Karman constant used for the wall model \n DEFAULT 0.41 \ingroup Config*/
12271230 addDoubleOption (" WALLMODEL_KAPPA" , wallModel_Kappa, 0.41 );
12281231 /* !\brief WALLMODEL_MAXITER \n DESCRIPTION: Max iterations used for the wall model \n DEFAULT 200 \ingroup Config*/
@@ -1231,8 +1234,9 @@ void CConfig::SetConfig_Options() {
12311234 addDoubleOption (" WALLMODEL_RELFAC" , wallModel_RelFac, 0.5 );
12321235 /* !\brief WALLMODEL_MINYPLUS \n DESCRIPTION: lower limit for Y+ used for the wall model \n DEFAULT 5.0 \ingroup Config*/
12331236 addDoubleOption (" WALLMODEL_MINYPLUS" , wallModel_MinYplus, 5.0 );
1234- /* !\brief WALLMODEL_B \n DESCRIPTION: constant B used for the wall model \n DEFAULT 5.0 \ingroup Config*/
1237+ /* !\brief WALLMODEL_B \n DESCRIPTION: constant B used for the wall model \n DEFAULT 5.5 \ingroup Config*/
12351238 addDoubleOption (" WALLMODEL_B" , wallModel_B, 5.5 );
1239+
12361240 /* !\brief BULK_MODULUS \n DESCRIPTION: Value of the Bulk Modulus \n DEFAULT 1.42E5 \ingroup Config*/
12371241 addDoubleOption (" BULK_MODULUS" , Bulk_Modulus, 1.42E5 );
12381242 /* DESCRIPTION: Epsilon^2 multipier in Beta calculation for incompressible preconditioner. */
@@ -3291,11 +3295,16 @@ void CConfig::SetPostprocessing(SU2_COMPONENT val_software, unsigned short val_i
32913295 if (Kind_WallFunctions[iMarker] != WALL_FUNCTIONS::NONE)
32923296 Wall_Functions = true ;
32933297
3294- if ((Kind_WallFunctions[iMarker] == WALL_FUNCTIONS::ADAPTIVE_FUNCTION) || (Kind_WallFunctions[iMarker] == WALL_FUNCTIONS::SCALABLE_FUNCTION)
3295- || (Kind_WallFunctions[iMarker] == WALL_FUNCTIONS::NONEQUILIBRIUM_MODEL))
3296-
3298+ if ((Kind_WallFunctions[iMarker] == WALL_FUNCTIONS::ADAPTIVE_FUNCTION) ||
3299+ (Kind_WallFunctions[iMarker] == WALL_FUNCTIONS::SCALABLE_FUNCTION) ||
3300+ (Kind_WallFunctions[iMarker] == WALL_FUNCTIONS::NONEQUILIBRIUM_MODEL))
32973301 SU2_MPI::Error (string (" For RANS problems, use NONE, STANDARD_WALL_FUNCTION or EQUILIBRIUM_WALL_MODEL.\n " ), CURRENT_FUNCTION);
32983302
3303+ if (Kind_WallFunctions[iMarker] == WALL_FUNCTIONS::STANDARD_FUNCTION) {
3304+ // / TODO TK:: Add warnings, errors, incompatibilities here.
3305+
3306+ }
3307+
32993308 }
33003309 }
33013310
0 commit comments