Skip to content

Commit e5a916c

Browse files
author
rois1995
committed
- Fix bug in SST-EDDES
1 parent d172607 commit e5a916c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

SU2_CFD/src/solvers/CTurbSSTSolver.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1297,7 +1297,7 @@ void CTurbSSTSolver::SetDES_LengthScale(CSolver **solver, CGeometry *geometry, C
12971297
// Add to VTM(iPoint) to perform the average
12981298
vortexTiltingMeasure += nodes->GetVortex_Tilting(jPoint);
12991299
}
1300-
deltaOmega /= (1/sqrt(3));
1300+
deltaOmega /= sqrt(3);
13011301
vortexTiltingMeasure /= (nNeigh+1);
13021302

13031303
const su2double f_kh = max(f_min,

0 commit comments

Comments
 (0)