Removed CSolver::Convective_Residual by maxaehle · Pull Request #1222 · su2code/SU2 · GitHub
Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion SU2_CFD/include/drivers/CDriver.hpp
16 changes: 0 additions & 16 deletions SU2_CFD/include/solvers/CSolver.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -781,22 +781,6 @@ class CSolver {
CConfig *config,
unsigned short iMesh) { }

/*!
* \brief A virtual member.
* \param[in] geometry - Geometrical definition of the problem.
* \param[in] solver_container - Container vector with all the solutions.
* \param[in] numerics - Description of the numerical method.
* \param[in] config - Definition of the particular problem.
* \param[in] iMesh - Index of the mesh in multigrid computations.
* \param[in] iRKStep - Current step of the Runge-Kutta iteration.
*/
inline virtual void Convective_Residual(CGeometry *geometry,
CSolver **solver_container,
CNumerics *numerics,
CConfig *config,
unsigned short iMesh,
unsigned short iRKStep) { }

/*!
* \brief A virtual member.
* \param[in] geometry - Geometrical definition of the problem.
Expand Down
8 changes: 1 addition & 7 deletions SU2_CFD/src/SU2_CFD.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -143,13 +143,7 @@ int main(int argc, char *argv[]) {
/*--- Turbomachinery problem. ---*/
driver = new CTurbomachineryDriver(config_file_name, nZone, MPICommunicator);

}
else {

/*--- Instantiate the class for external aerodynamics by default. ---*/
driver = new CFluidDriver(config_file_name, nZone, MPICommunicator);

}
} /*--- These are all the possible cases ---*/

delete config;
config = nullptr;
Expand Down
3 changes: 0 additions & 3 deletions SU2_CFD/src/integration/CIntegration.cpp