|
SU2
|
Headers of the main subroutines for solving partial differential equations. The subroutines and functions are in the solver_structure.cpp, solution_direct.cpp, solution_adjoint.cpp, and solution_linearized.cpp files. More...
#include "../../Common/include/mpi_structure.hpp"#include <cmath>#include <string>#include <fstream>#include <sstream>#include <algorithm>#include <iostream>#include <stdlib.h>#include <stdio.h>#include "fluid_model.hpp"#include "numerics_structure.hpp"#include "variable_structure.hpp"#include "../../Common/include/gauss_structure.hpp"#include "../../Common/include/element_structure.hpp"#include "../../Common/include/geometry_structure.hpp"#include "../../Common/include/config_structure.hpp"#include "../../Common/include/matrix_structure.hpp"#include "../../Common/include/vector_structure.hpp"#include "../../Common/include/linear_solvers_structure.hpp"#include "../../Common/include/grid_movement_structure.hpp"#include "solver_structure.inl"Go to the source code of this file.
Classes | |
| class | CSolver |
| Main class for defining the PDE solution, it requires a child class for each particular solver (Euler, Navier-Stokes, etc.) More... | |
| class | CBaselineSolver |
| Main class for defining a baseline solution from a restart file (for output). More... | |
| class | CEulerSolver |
| Main class for defining the Euler's flow solver. More... | |
| class | CIncEulerSolver |
| Main class for defining the incompressible Euler flow solver. More... | |
| class | CNSSolver |
| Main class for defining the Navier-Stokes flow solver. More... | |
| class | CIncNSSolver |
| Main class for defining the incompressible Navier-Stokes flow solver. More... | |
| class | CTurbSolver |
| Main class for defining the turbulence model solver. More... | |
| class | CTurbSASolver |
| Main class for defining the turbulence model solver. More... | |
| class | CTurbSSTSolver |
| Main class for defining the turbulence model solver. More... | |
| class | CTransLMSolver |
| Main class for defining the turbulence model solver. More... | |
| class | CAdjEulerSolver |
| Main class for defining the Euler's adjoint flow solver. More... | |
| class | CAdjIncEulerSolver |
| Main class for defining the incompressible Euler adjoint flow solver. More... | |
| class | CAdjNSSolver |
| Main class for defining the Navier-Stokes' adjoint flow solver. More... | |
| class | CAdjIncNSSolver |
| Main class for defining the incompressible Navier-Stokes adjoint flow solver. More... | |
| class | CAdjTurbSolver |
| Main class for defining the adjoint turbulence model solver. More... | |
| class | CPoissonSolver |
| Main class for defining the poisson potential solver. More... | |
| class | CWaveSolver |
| Main class for defining the wave solver. More... | |
| class | CHeatSolver |
| Main class for defining the heat solver. More... | |
| class | CFEM_ElasticitySolver |
| Main class for defining a FEM solver for elastic structural problems. More... | |
| class | CTemplateSolver |
| Main class for defining the template model solver. More... | |
| class | CDiscAdjSolver |
| Main class for defining the discrete adjoint solver. More... | |
Headers of the main subroutines for solving partial differential equations. The subroutines and functions are in the solver_structure.cpp, solution_direct.cpp, solution_adjoint.cpp, and solution_linearized.cpp files.
SU2 Original Developers: Dr. Francisco D. Palacios. Dr. Thomas D. Economon.
SU2 Developers: Prof. Juan J. Alonso's group at Stanford University. Prof. Piero Colonna's group at Delft University of Technology. Prof. Nicolas R. Gauger's group at Kaiserslautern University of Technology. Prof. Alberto Guardone's group at Polytechnic University of Milan. Prof. Rafael Palacios' group at Imperial College London. Prof. Edwin van der Weide's group at the University of Twente. Prof. Vincent Terrapon's group at the University of Liege.
Copyright (C) 2012-2017 SU2, the open-source CFD code.
SU2 is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at your option) any later version.
SU2 is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public License along with SU2. If not, see http://www.gnu.org/licenses/.
1.8.12