Skip to content

Commit 1953dfc

Browse files
authored
Merge branch 'develop' into fix_multigrid_agglomeration
2 parents 711ba29 + 2b6d97a commit 1953dfc

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
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

SU2_PY/FSI_tools/FSIInterface.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -307,7 +307,7 @@ def connect(self, FSI_config, FluidSolver, SolidSolver):
307307
print("Fluid solver is initialized on process {}".format(myid))
308308
self.haveFluidSolver = True
309309
allMovingMarkersTags = FluidSolver.GetDeformableMarkerTags()
310-
allMarkersID = FluidSolver.GetMarkerTags()
310+
allMarkersID = FluidSolver.GetMarkerIndices()
311311
if not allMovingMarkersTags:
312312
raise Exception("No interface for FSI was defined.")
313313
else:

0 commit comments

Comments
 (0)