Skip to content

Commit 740f19e

Browse files
committed
Revert unnecessary changes
1 parent e93f5c4 commit 740f19e

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

SU2_CFD/src/solvers/CHeatSolver.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -460,7 +460,7 @@ void CHeatSolver::Viscous_Residual(CGeometry *geometry, CSolver **solver_contain
460460
su2double laminar_viscosity, Prandtl_Lam, Prandtl_Turb, eddy_viscosity_i, eddy_viscosity_j,
461461
thermal_diffusivity_i, thermal_diffusivity_j, Temp_i, Temp_j;
462462

463-
const bool turb = ((config->GetKind_Solver() == INC_RANS) || (config->GetKind_Solver() == DISC_ADJ_INC_RANS));
463+
const bool turb = ((config->GetKind_Solver() == MAIN_SOLVER::INC_RANS) || (config->GetKind_Solver() == MAIN_SOLVER::DISC_ADJ_INC_RANS));
464464

465465
eddy_viscosity_i = 0.0;
466466
eddy_viscosity_j = 0.0;
@@ -1040,7 +1040,7 @@ void CHeatSolver::SetTime_Step(CGeometry *geometry, CSolver **solver_container,
10401040
su2double Global_Delta_Time = 0.0, Global_Delta_UnstTimeND = 0.0, Local_Delta_Time = 0.0, Local_Delta_Time_Inv, Local_Delta_Time_Visc, CFL_Reduction, K_v = 0.25;
10411041
const su2double* Normal;
10421042

1043-
const bool turb = ((config->GetKind_Solver() == INC_RANS) || (config->GetKind_Solver() == DISC_ADJ_INC_RANS));
1043+
const bool turb = ((config->GetKind_Solver() == MAIN_SOLVER::INC_RANS) || (config->GetKind_Solver() == MAIN_SOLVER::DISC_ADJ_INC_RANS));
10441044
const bool dual_time = ((config->GetTime_Marching() == TIME_MARCHING::DT_STEPPING_1ST) ||
10451045
(config->GetTime_Marching() == TIME_MARCHING::DT_STEPPING_2ND));
10461046
const bool implicit = (config->GetKind_TimeIntScheme_Flow() == EULER_IMPLICIT);

0 commit comments

Comments
 (0)