@@ -176,7 +176,6 @@ enum ENUM_MAIN_SOLVER {
176176 INC_NAVIER_STOKES =5 , /* !< \brief Definition of the incompressible Navier-Stokes' solver. */
177177 INC_RANS = 6 , /* !< \brief Definition of the incompressible Reynolds-averaged Navier-Stokes' (RANS) solver. */
178178 HEAT_EQUATION = 7 , /* !< \brief Definition of the finite volume heat solver. */
179- FLUID_STRUCTURE_INTERACTION = 8 , /* !< \brief Definition of a FSI solver. */
180179 FEM_ELASTICITY = 9 , /* !< \brief Definition of a FEM solver. */
181180 ADJ_EULER = 10 , /* !< \brief Definition of the continuous adjoint Euler's solver. */
182181 ADJ_NAVIER_STOKES = 11 , /* !< \brief Definition of the continuous adjoint Navier-Stokes' solver. */
@@ -231,7 +230,6 @@ static const MapType<string, ENUM_MAIN_SOLVER> Solver_Map = {
231230 MakePair (" DISC_ADJ_FEM_RANS" , DISC_ADJ_FEM_RANS)
232231 MakePair (" DISC_ADJ_FEM_NS" , DISC_ADJ_FEM_NS)
233232 MakePair (" DISC_ADJ_FEM" , DISC_ADJ_FEM)
234- MakePair (" FLUID_STRUCTURE_INTERACTION" , FLUID_STRUCTURE_INTERACTION)
235233 MakePair (" TEMPLATE_SOLVER" , TEMPLATE_SOLVER)
236234 MakePair (" MULTIPHYSICS" , MULTIPHYSICS)
237235};
@@ -699,7 +697,6 @@ enum ENUM_SURFACEMOVEMENT {
699697 MOVING_WALL = 2 , /* !< \brief Simulation with moving wall. */
700698 AEROELASTIC = 3 , /* !< \brief Simulation with aeroelastic motion. */
701699 AEROELASTIC_RIGID_MOTION = 4 , /* !< \brief Simulation with rotation and aeroelastic motion. */
702- FLUID_STRUCTURE = 5 , /* !< \brief Fluid structure deformation. */
703700 EXTERNAL = 6 , /* !< \brief Simulation with external motion. */
704701 EXTERNAL_ROTATION = 7 , /* !< \brief Simulation with external rotation motion. */
705702};
@@ -708,7 +705,6 @@ static const MapType<string, ENUM_SURFACEMOVEMENT> SurfaceMovement_Map = {
708705 MakePair (" MOVING_WALL" , MOVING_WALL)
709706 MakePair (" AEROELASTIC_RIGID_MOTION" , AEROELASTIC_RIGID_MOTION)
710707 MakePair (" AEROELASTIC" , AEROELASTIC)
711- MakePair (" FLUID_STRUCTURE" , FLUID_STRUCTURE)
712708 MakePair (" EXTERNAL" , EXTERNAL)
713709 MakePair (" EXTERNAL_ROTATION" , EXTERNAL_ROTATION)
714710};
0 commit comments