From 3908bfd0c66a48c0081110d1f447c13e113acbfa Mon Sep 17 00:00:00 2001 From: Ruben Sanchez Date: Tue, 3 Mar 2020 15:27:15 +0100 Subject: [PATCH] Fix bug for incompressible FSI cases. --- SU2_CFD/src/interfaces/fsi/CFlowTractionInterface.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/SU2_CFD/src/interfaces/fsi/CFlowTractionInterface.cpp b/SU2_CFD/src/interfaces/fsi/CFlowTractionInterface.cpp index 6275bbf4579c..13081ca04f26 100644 --- a/SU2_CFD/src/interfaces/fsi/CFlowTractionInterface.cpp +++ b/SU2_CFD/src/interfaces/fsi/CFlowTractionInterface.cpp @@ -121,6 +121,8 @@ void CFlowTractionInterface::GetDonor_Variable(CSolver *flow_solution, CGeometry bool incompressible = (flow_config->GetKind_Regime() == INCOMPRESSIBLE); bool viscous_flow = ((flow_config->GetKind_Solver() == NAVIER_STOKES) || (flow_config->GetKind_Solver() == RANS) || + (flow_config->GetKind_Solver() == INC_NAVIER_STOKES) || + (flow_config->GetKind_Solver() == INC_RANS) || (flow_config->GetKind_Solver() == DISC_ADJ_NAVIER_STOKES) || (flow_config->GetKind_Solver() == DISC_ADJ_RANS) || (flow_config->GetKind_Solver() == DISC_ADJ_INC_NAVIER_STOKES) ||