Skip to content

Commit

Permalink
Updating names
Browse files Browse the repository at this point in the history
  • Loading branch information
Francisco Palacios committed Jun 13, 2014
1 parent 9492fbd commit 1befbb9
Show file tree
Hide file tree
Showing 302 changed files with 2,323 additions and 8,160 deletions.
4 changes: 2 additions & 2 deletions Common/include/config_structure.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* \brief All the information about the definition of the physical problem.
* The subroutines and functions are in the <i>config_structure.cpp</i> file.
* \author Aerospace Design Laboratory (Stanford University) <http://su2.stanford.edu>.
* \version 3.1.0 "eagle"
* \version 3.2.0 "eagle"
*
* SU2, Copyright (C) 2012-2014 Aerospace Design Laboratory (ADL).
*
Expand Down Expand Up @@ -52,7 +52,7 @@ using namespace std;
* \brief Main class for defining the problem; basically this class reads the configuration file, and
* stores all the information.
* \author F. Palacios.
* \version 3.1.0 "eagle"
* \version 3.2.0 "eagle"
*/
class CConfig {
private:
Expand Down
2 changes: 1 addition & 1 deletion Common/include/config_structure.inl
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
* \file config_structure.inl
* \brief In-Line subroutines of the <i>config_structure.hpp</i> file.
* \author Aerospace Design Laboratory (Stanford University) <http://su2.stanford.edu>.
* \version 3.1.0 "eagle"
* \version 3.2.0 "eagle"
*
* SU2, Copyright (C) 2012-2014 Aerospace Design Laboratory (ADL).
*
Expand Down
12 changes: 6 additions & 6 deletions Common/include/dual_grid_structure.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* \brief Headers of the main subroutines for doing the complete dual grid structure.
* The subroutines and functions are in the <i>dual_grid_structure.cpp</i> file.
* \author Aerospace Design Laboratory (Stanford University) <http://su2.stanford.edu>.
* \version 3.1.0 "eagle"
* \version 3.2.0 "eagle"
*
* SU2, Copyright (C) 2012-2014 Aerospace Design Laboratory (ADL).
*
Expand Down Expand Up @@ -37,7 +37,7 @@ using namespace std;
* \brief Class for controlling the dual volume definition. The dual volume is compose by
* three main elements: points, edges, and vertices.
* \author F. Palacios.
* \version 3.1.0 "eagle"
* \version 3.2.0 "eagle"
*/
class CDualGrid{
protected:
Expand Down Expand Up @@ -122,7 +122,7 @@ class CDualGrid{
* \class CPoint
* \brief Class for point definition (including control volume definition).
* \author F. Palacios.
* \version 3.1.0 "eagle"
* \version 3.2.0 "eagle"
*/
class CPoint : public CDualGrid {
private:
Expand Down Expand Up @@ -154,7 +154,7 @@ class CPoint : public CDualGrid {
unsigned short color; /*!< \brief Color of the point in the partitioning strategy. */
double Wall_Distance; /*!< \brief Distance to the nearest wall. */
double SharpEdge_Distance; /*!< \brief Distance to a sharp edge. */
double Curvature; /*!< \brief Value of the surface curvature (SU2_GDC). */
double Curvature; /*!< \brief Value of the surface curvature (SU2_GEO). */
unsigned long GlobalIndex; /*!< \brief Global index in the parallel simulation. */
unsigned short nNeighbor; /*!< \brief Color of the point in the partitioning strategy. */

Expand Down Expand Up @@ -682,7 +682,7 @@ class CPoint : public CDualGrid {
* \class CEdge
* \brief Class for defining an edge.
* \author F. Palacios.
* \version 3.1.0 "eagle"
* \version 3.2.0 "eagle"
*/
class CEdge : public CDualGrid {
private:
Expand Down Expand Up @@ -819,7 +819,7 @@ class CEdge : public CDualGrid {
* \class CVertex
* \brief Class for vertex definition (equivalent to edges, but for the boundaries).
* \author F. Palacios.
* \version 3.1.0 "eagle"
* \version 3.2.0 "eagle"
*/
class CVertex : public CDualGrid {
private:
Expand Down
2 changes: 1 addition & 1 deletion Common/include/dual_grid_structure.inl
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
* \file dual_grid_structure.inl
* \brief In-Line subroutines of the <i>dual_grid_structure.hpp</i> file.
* \author Aerospace Design Laboratory (Stanford University) <http://su2.stanford.edu>.
* \version 3.1.0 "eagle"
* \version 3.2.0 "eagle"
*
* SU2, Copyright (C) 2012-2014 Aerospace Design Laboratory (ADL).
*
Expand Down
16 changes: 8 additions & 8 deletions Common/include/geometry_structure.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* \brief Headers of the main subroutines for creating the geometrical structure.
* The subroutines and functions are in the <i>geometry_structure.cpp</i> file.
* \author Aerospace Design Laboratory (Stanford University) <http://su2.stanford.edu>.
* \version 3.1.0 "eagle"
* \version 3.2.0 "eagle"
*
* SU2, Copyright (C) 2012-2014 Aerospace Design Laboratory (ADL).
*
Expand Down Expand Up @@ -59,7 +59,7 @@ using namespace std;
* \brief Parent class for defining the geometry of the problem (complete geometry,
* multigrid agglomerated geometry, only boundary geometry, etc..)
* \author F. Palacios.
* \version 3.1.0 "eagle"
* \version 3.2.0 "eagle"
*/
class CGeometry {
protected:
Expand Down Expand Up @@ -830,7 +830,7 @@ class CGeometry {
* \brief Class for reading a defining the primal grid which is read from the
* grid file in .su2 format.
* \author F. Palacios.
* \version 3.1.0 "eagle"
* \version 3.2.0 "eagle"
*/
class CPhysicalGeometry : public CGeometry {

Expand Down Expand Up @@ -1246,7 +1246,7 @@ class CPhysicalGeometry : public CGeometry {
* \brief Class for defining the multigrid geometry, the main delicated part is the
* agglomeration stage, which is done in the declaration.
* \author F. Palacios.
* \version 3.1.0 "eagle"
* \version 3.2.0 "eagle"
*/
class CMultiGridGeometry : public CGeometry {

Expand Down Expand Up @@ -1416,7 +1416,7 @@ class CMultiGridGeometry : public CGeometry {
* \brief Class for only defining the boundary of the geometry, this class is only
* used in case we are not interested in the volumetric grid.
* \author F. Palacios.
* \version 3.1.0 "eagle"
* \version 3.2.0 "eagle"
*/
class CBoundaryGeometry : public CGeometry {

Expand Down Expand Up @@ -1521,7 +1521,7 @@ class CBoundaryGeometry : public CGeometry {
* \class CDomainGeometry
* \brief Class for defining an especial kind of grid used in the partioning stage.
* \author F. Palacios.
* \version 3.1.0 "eagle"
* \version 3.2.0 "eagle"
*/
class CDomainGeometry : public CGeometry {
long *Global_to_Local_Point; /*!< \brief Global-local indexation for the points. */
Expand Down Expand Up @@ -1593,7 +1593,7 @@ class CDomainGeometry : public CGeometry {
* \class CPeriodicGeometry
* \brief Class for defining a periodic boundary condition.
* \author T. Economon, F. Palacios.
* \version 3.1.0 "eagle"
* \version 3.2.0 "eagle"
*/
class CPeriodicGeometry : public CGeometry {
CPrimalGrid*** newBoundPer; /*!< \brief Boundary vector for new periodic elements (primal grid information). */
Expand Down Expand Up @@ -1639,7 +1639,7 @@ class CPeriodicGeometry : public CGeometry {
* \struct CMultiGridQueue
* \brief Class for a multigrid queue system
* \author F. Palacios.
* \version 3.1.0 "eagle"
* \version 3.2.0 "eagle"
* \date Aug 12, 2012
*/
class CMultiGridQueue {
Expand Down
2 changes: 1 addition & 1 deletion Common/include/geometry_structure.inl
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
* \file geometry_structure.inl
* \brief In-Line subroutines of the <i>geometry_structure.hpp</i> file.
* \author Aerospace Design Laboratory (Stanford University) <http://su2.stanford.edu>.
* \version 3.1.0 "eagle"
* \version 3.2.0 "eagle"
*
* SU2, Copyright (C) 2012-2014 Aerospace Design Laboratory (ADL).
*
Expand Down
2 changes: 1 addition & 1 deletion Common/include/grid_adaptation_structure.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
* technique definition). The subroutines and functions are in
* the <i>grid_movement_structure.cpp</i> file.
* \author Aerospace Design Laboratory (Stanford University) <http://su2.stanford.edu>.
* \version 3.1.0 "eagle"
* \version 3.2.0 "eagle"
*
* SU2, Copyright (C) 2012-2014 Aerospace Design Laboratory (ADL).
*
Expand Down
2 changes: 1 addition & 1 deletion Common/include/grid_adaptation_structure.inl
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
* \file grid_adaptation_structure.inl
* \brief In-Line subroutines of the <i>grid_adaptation_structure.hpp</i> file.
* \author Aerospace Design Laboratory (Stanford University) <http://su2.stanford.edu>.
* \version 3.1.0 "eagle"
* \version 3.2.0 "eagle"
*
* SU2, Copyright (C) 2012-2014 Aerospace Design Laboratory (ADL).
*
Expand Down
10 changes: 5 additions & 5 deletions Common/include/grid_movement_structure.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
* technique definition). The subroutines and functions are in
* the <i>grid_movement_structure.cpp</i> file.
* \author Aerospace Design Laboratory (Stanford University) <http://su2.stanford.edu>.
* \version 3.1.0 "eagle"
* \version 3.2.0 "eagle"
*
* SU2, Copyright (C) 2012-2014 Aerospace Design Laboratory (ADL).
*
Expand Down Expand Up @@ -44,7 +44,7 @@ using namespace std;
* \brief Class for moving the surface and volumetric
* numerical grid (2D and 3D problems).
* \author F. Palacios.
* \version 3.1.0 "eagle"
* \version 3.2.0 "eagle"
*/
class CGridMovement {
public:
Expand Down Expand Up @@ -73,7 +73,7 @@ class CGridMovement {
* \class CFreeFormDefBox
* \brief Class for defining the free form FFDBox structure.
* \author F. Palacios & A. Galdran.
* \version 3.1.0 "eagle"
* \version 3.2.0 "eagle"
*/
class CFreeFormDefBox : public CGridMovement {
public:
Expand Down Expand Up @@ -646,7 +646,7 @@ class CFreeFormDefBox : public CGridMovement {
* \class CVolumetricMovement
* \brief Class for moving the volumetric numerical grid.
* \author F. Palacios, A. Bueno, T. Economon, S. Padron.
* \version 3.1.0 "eagle"
* \version 3.2.0 "eagle"
*/
class CVolumetricMovement : public CGridMovement {
protected:
Expand Down Expand Up @@ -908,7 +908,7 @@ class CVolumetricMovement : public CGridMovement {
* \class CSurfaceMovement
* \brief Class for moving the surface numerical grid.
* \author F. Palacios, T. Economon.
* \version 3.1.0 "eagle"
* \version 3.2.0 "eagle"
*/
class CSurfaceMovement : public CGridMovement {
protected:
Expand Down
2 changes: 1 addition & 1 deletion Common/include/grid_movement_structure.inl
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
* \file grid_movement_structure.inl
* \brief In-Line subroutines of the <i>grid_movement_structure.hpp</i> file.
* \author Aerospace Design Laboratory (Stanford University) <http://su2.stanford.edu>.
* \version 3.1.0 "eagle"
* \version 3.2.0 "eagle"
*
* SU2, Copyright (C) 2012-2014 Aerospace Design Laboratory (ADL).
*
Expand Down
4 changes: 2 additions & 2 deletions Common/include/linear_solvers_structure.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* \brief Headers for the classes related to linear solvers (CG, FGMRES, etc)
* The subroutines and functions are in the <i>linear_solvers_structure.cpp</i> file.
* \author Aerospace Design Laboratory (Stanford University) <http://su2.stanford.edu>.
* \version 3.1.0 "eagle"
* \version 3.2.0 "eagle"
*
* SU2, Copyright (C) 2012-2014 Aerospace Design Laboratory (ADL).
*
Expand Down Expand Up @@ -43,7 +43,7 @@ using namespace std;
* \class CSysSolve
* \brief Class for solving linear systems using classical and Krylov-subspace iterative methods
* \author J. Hicken.
* \version 3.1.0 "eagle"
* \version 3.2.0 "eagle"
*
* The individual solvers could be stand-alone subroutines, but by
* creating CSysSolve objects we can more easily assign different
Expand Down
2 changes: 1 addition & 1 deletion Common/include/linear_solvers_structure.inl
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
* \file linear_solvers_structure.inl
* \brief inline subroutines of the <i>linear_solvers_structure.hpp</i> file.
* \author Aerospace Design Laboratory (Stanford University) <http://su2.stanford.edu>.
* \version 3.1.0 "eagle"
* \version 3.2.0 "eagle"
*
* SU2, Copyright (C) 2012-2014 Aerospace Design Laboratory (ADL).
*
Expand Down
4 changes: 2 additions & 2 deletions Common/include/matrix_structure.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* \brief Headers of the main subroutines for creating the sparse matrices-by-blocks.
* The subroutines and functions are in the <i>matrix_structure.cpp</i> file.
* \author Aerospace Design Laboratory (Stanford University) <http://su2.stanford.edu>.
* \version 3.1.0 "eagle"
* \version 3.2.0 "eagle"
*
* SU2, Copyright (C) 2012-2014 Aerospace Design Laboratory (ADL).
*
Expand Down Expand Up @@ -38,7 +38,7 @@ using namespace std;
* \brief Main class for defining sparse matrices-by-blocks
with compressed row format.
* \author A. Bueno, F. Palacios.
* \version 3.1.0 "eagle"
* \version 3.2.0 "eagle"
*/
class CSysMatrix {
private:
Expand Down
2 changes: 1 addition & 1 deletion Common/include/matrix_structure.inl
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
* \file matrix_structure.inl
* \brief In-Line subroutines of the <i>matrix_structure.hpp</i> file.
* \author Aerospace Design Laboratory (Stanford University) <http://su2.stanford.edu>.
* \version 3.1.0 "eagle"
* \version 3.2.0 "eagle"
*
* SU2, Copyright (C) 2012-2014 Aerospace Design Laboratory (ADL).
*
Expand Down
16 changes: 7 additions & 9 deletions Common/include/option_structure.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
* \file option_structure.hpp
* \brief Defines classes for referencing options for easy input in CConfig
* \author Aerospace Design Laboratory (Stanford University) <http://su2.stanford.edu>.
* \version 3.1.0 "eagle"
* \version 3.2.0 "eagle"
*
* Many of the classes in this file are templated, and therefore must
* be declared and defined here; to keep all elements together, there
Expand Down Expand Up @@ -106,14 +106,12 @@ inline string StringToUpperCase(const string & str) {
*/
enum SU2_COMPONENT {
SU2_CFD = 1, /*!< \brief Running the SU2_CFD software. */
SU2_MDC = 2, /*!< \brief Running the SU2_MDC software. */
SU2_GPC = 3, /*!< \brief Running the SU2_GPC software. */
SU2_DDC = 4, /*!< \brief Running the SU2_DDC software. */
SU2_MAC = 5, /*!< \brief Running the SU2_MAC software. */
SU2_GDC = 6, /*!< \brief Running the SU2_GDC software. */
SU2_PBC = 7, /*!< \brief Running the SU2_PBC software. */
SU2_SMC = 8, /*!< \brief Running the SU2_SMC software. */
SU2_SOL = 9, /*!< \brief Running the SU2_SOL software. */
SU2_DEF = 2, /*!< \brief Running the SU2_DEF software. */
SU2_DOT = 3, /*!< \brief Running the SU2_DOT software. */
SU2_PRT = 4, /*!< \brief Running the SU2_PRT software. */
SU2_MSH = 5, /*!< \brief Running the SU2_MSH software. */
SU2_GEO = 6, /*!< \brief Running the SU2_GEO software. */
SU2_SOL = 7, /*!< \brief Running the SU2_SOL software. */
};

const unsigned int MAX_PARAMETERS = 10; /*!< \brief Maximum number of parameters for a design variable definition. */
Expand Down
Loading

0 comments on commit 1befbb9

Please sign in to comment.