Skip to content

Commit eb476ae

Browse files
authored
Update SU2_CFD/src/output/CFlowOutput.cpp
1 parent 9b8cdc4 commit eb476ae

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

SU2_CFD/src/output/CFlowOutput.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -850,10 +850,10 @@ void CFlowOutput::WriteForcesBreakdown(const CConfig* config, const CSolver* flo
850850
const bool viscous = config->GetViscous();
851851
const bool dynamic_grid = config->GetDynamic_Grid();
852852
const bool gravity = config->GetGravityForce();
853-
const bool turbulent = config->GetKind_Solver() == RANS;
853+
const auto Kind_Turb_Model = config->GetKind_Turb_Model();
854+
const bool turbulent = Kind_Turb_Model != NONE;
854855
const bool fixed_cl = config->GetFixed_CL_Mode();
855856
const auto Kind_Solver = config->GetKind_Solver();
856-
const auto Kind_Turb_Model = config->GetKind_Turb_Model();
857857
const auto Ref_NonDim = config->GetRef_NonDim();
858858
const auto nMonitoring = config->GetnMarker_Monitoring();
859859

0 commit comments

Comments
 (0)