@@ -639,9 +639,9 @@ class CConfig {
639639 su2double Relaxation_Factor_Adjoint; /* !< \brief Relaxation coefficient for variable updates of adjoint solvers. */
640640 su2double Relaxation_Factor_CHT; /* !< \brief Relaxation coefficient for the update of conjugate heat variables. */
641641 su2double EntropyFix_Coeff; /* !< \brief Entropy fix coefficient. */
642- su2double SST_UnderRelaxation_Factor; /* !< \brief UnderRelaxation Factor for SST Turbulent Variables*/
643- su2double SA_UnderRelaxation_Factor; /* !< \brief UnderRelaxation Factor for SST Turbulent Variables*/
644- su2double Flow_UnderRelaxation_Factor; /* !< \brief UnderRelaxation Factor for SST Turbulent Variables*/
642+ su2double Max_Update_SST; /* !< \brief Cap for the Under-Relaxation Factor for SST Turbulent Variables*/
643+ su2double Max_Update_SA; /* !< \brief Cap for the Under-Relaxation Factor for SA Turbulent Variables*/
644+ su2double Max_Update_Flow; /* !< \brief Cap for the Under-Relaxation Factor for Flow Density and Energy Variables*/
645645 unsigned short nLocationStations, /* !< \brief Number of section cuts to make when outputting mesh and cp . */
646646 nWingStations; /* !< \brief Number of section cuts to make when calculating internal volume. */
647647 su2double Kappa_1st_AdjFlow, /* !< \brief Lax 1st order dissipation coefficient for adjoint flow equations (coarse multigrid levels). */
@@ -4232,19 +4232,19 @@ class CConfig {
42324232 * \brief Get the under-relaxation for flow variables density and energy.
42334233 * \return under-relaxation for flow variables.
42344234 */
4235- su2double GetUnderRelax_Flow (void ) const { return Flow_UnderRelaxation_Factor ; }
4235+ su2double GetUnderRelax_Flow (void ) const { return Max_Update_Flow ; }
42364236
42374237 /* !
42384238 * \brief Get the under-relaxation for SA variable, nu_tilde.
42394239 * \return under-relaxation for SA variables.
42404240 */
4241- su2double GetUnderRelax_SA (void ) const { return SA_UnderRelaxation_Factor ; }
4241+ su2double GetUnderRelax_SA (void ) const { return Max_Update_SA ; }
42424242
42434243 /* !
42444244 * \brief Get the under-relaxation for SST turbulence variables k and omega.
42454245 * \return under-relaxation for SST variables.
42464246 */
4247- su2double GetUnderRelax_SST (void ) const { return SST_UnderRelaxation_Factor ; }
4247+ su2double GetUnderRelax_SST (void ) const { return Max_Update_SST ; }
42484248
42494249 /* !
42504250 * \brief Get the number of samples used in quasi-Newton methods.
0 commit comments