Skip to content

Commit 59f3561

Browse files
authored
Merge pull request #2453 from ShiheJia/Fix_SST_MuT
Update CTurbSSTSolver.cpp to fix bug on calculating MuT
2 parents 3b5493d + 1199125 commit 59f3561

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
@@ -230,7 +230,7 @@ void CTurbSSTSolver::Postprocessing(CGeometry *geometry, CSolver **solver_contai
230230
const su2double dist = geometry->nodes->GetWall_Distance(iPoint);
231231

232232
const su2double VorticityMag = max(GeometryToolbox::Norm(3, flowNodes->GetVorticity(iPoint)), 1e-12);
233-
const su2double StrainMag = max(nodes->GetStrainMag(iPoint), 1e-12);
233+
const su2double StrainMag = max(flowNodes->GetStrainMag(iPoint), 1e-12);
234234
nodes->SetBlendingFunc(iPoint, mu, dist, rho, config->GetKind_Trans_Model());
235235

236236
const su2double F2 = nodes->GetF2blending(iPoint);

0 commit comments

Comments
 (0)