Skip to content

Commit

Permalink
Merge pull request #2417 from su2code/fix_TranslVel
Browse files Browse the repository at this point in the history
Fix Non-dimensionalization to translation velocity
  • Loading branch information
rois1995 authored Jan 13, 2025
2 parents 77a5b14 + 140dec2 commit 2b6d97a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion SU2_CFD/src/solvers/CMeshSolver.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1450,7 +1450,7 @@ void CMeshSolver::Surface_Translating(CGeometry *geometry, CConfig *config, unsi
}

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

Expand Down

0 comments on commit 2b6d97a

Please sign in to comment.