Skip to content

Commit

Permalink
Merge branch 'develop' into feature_mz_adjoint_for_turbo
Browse files Browse the repository at this point in the history
  • Loading branch information
joshkellyjak authored Jan 21, 2025
2 parents 27f790f + 2b6d97a commit 1e7472d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
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
2 changes: 1 addition & 1 deletion SU2_PY/FSI_tools/FSIInterface.py
Original file line number Diff line number Diff line change
Expand Up @@ -307,7 +307,7 @@ def connect(self, FSI_config, FluidSolver, SolidSolver):
print("Fluid solver is initialized on process {}".format(myid))
self.haveFluidSolver = True
allMovingMarkersTags = FluidSolver.GetDeformableMarkerTags()
allMarkersID = FluidSolver.GetMarkerTags()
allMarkersID = FluidSolver.GetMarkerIndices()
if not allMovingMarkersTags:
raise Exception("No interface for FSI was defined.")
else:
Expand Down

0 comments on commit 1e7472d

Please sign in to comment.