Skip to content

Commit 2b6d97a

Browse files
authored
Merge pull request #2417 from su2code/fix_TranslVel
Fix Non-dimensionalization to translation velocity
2 parents 77a5b14 + 140dec2 commit 2b6d97a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

SU2_CFD/src/solvers/CMeshSolver.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1450,7 +1450,7 @@ void CMeshSolver::Surface_Translating(CGeometry *geometry, CConfig *config, unsi
14501450
}
14511451

14521452
for (iDim = 0; iDim < 3; iDim++) {
1453-
xDot[iDim] = config->GetMarkerTranslationRate(jMarker, iDim);
1453+
xDot[iDim] = config->GetMarkerTranslationRate(jMarker, iDim)/config->GetVelocity_Ref();
14541454
Center[iDim] = config->GetMarkerMotion_Origin(jMarker, iDim);
14551455
}
14561456

0 commit comments

Comments
 (0)