Skip to content

Commit 46c24e3

Browse files
author
Francisco Palacios
committed
Release 3.2.7
1 parent bded2a6 commit 46c24e3

File tree

176 files changed

+890
-797
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

176 files changed

+890
-797
lines changed

Common/doc/docmain.hpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22
* \file docmain.hpp
33
* \brief This file contains documentation for Doxygen and does not have any significance with respect to C++.
44
* \author F. Palacios
5-
* \version 3.2.6 "eagle"
5+
* \version 3.2.7 "eagle"
66
*
7-
* Copyright (C) 2012-2014 SU2 <https://github.com/su2code>.
7+
* Copyright (C) 2012-2014 SU2 Core Developers.
88
*
99
* SU2 is free software; you can redistribute it and/or
1010
* modify it under the terms of the GNU Lesser General Public

Common/include/config_structure.hpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@
33
* \brief All the information about the definition of the physical problem.
44
* The subroutines and functions are in the <i>config_structure.cpp</i> file.
55
* \author F. Palacios, T. Economon, B. Tracey
6-
* \version 3.2.6 "eagle"
6+
* \version 3.2.7 "eagle"
77
*
8-
* Copyright (C) 2012-2014 SU2 <https://github.com/su2code>.
8+
* Copyright (C) 2012-2014 SU2 Core Developers.
99
*
1010
* SU2 is free software; you can redistribute it and/or
1111
* modify it under the terms of the GNU Lesser General Public
@@ -46,7 +46,7 @@ using namespace std;
4646
* \brief Main class for defining the problem; basically this class reads the configuration file, and
4747
* stores all the information.
4848
* \author F. Palacios.
49-
* \version 3.2.6 "eagle"
49+
* \version 3.2.7 "eagle"
5050
*/
5151
class CConfig {
5252
private:

Common/include/config_structure.inl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22
* \file config_structure.inl
33
* \brief In-Line subroutines of the <i>config_structure.hpp</i> file.
44
* \author F. Palacios, T. Economon
5-
* \version 3.2.6 "eagle"
5+
* \version 3.2.7 "eagle"
66
*
7-
* Copyright (C) 2012-2014 SU2 <https://github.com/su2code>.
7+
* Copyright (C) 2012-2014 SU2 Core Developers.
88
*
99
* SU2 is free software; you can redistribute it and/or
1010
* modify it under the terms of the GNU Lesser General Public

Common/include/dual_grid_structure.hpp

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@
33
* \brief Headers of the main subroutines for doing the complete dual grid structure.
44
* The subroutines and functions are in the <i>dual_grid_structure.cpp</i> file.
55
* \author F. Palacios
6-
* \version 3.2.6 "eagle"
6+
* \version 3.2.7 "eagle"
77
*
8-
* Copyright (C) 2012-2014 SU2 <https://github.com/su2code>.
8+
* Copyright (C) 2012-2014 SU2 Core Developers.
99
*
1010
* SU2 is free software; you can redistribute it and/or
1111
* modify it under the terms of the GNU Lesser General Public
@@ -40,7 +40,7 @@ using namespace std;
4040
* \brief Class for controlling the dual volume definition. The dual volume is compose by
4141
* three main elements: points, edges, and vertices.
4242
* \author F. Palacios.
43-
* \version 3.2.6 "eagle"
43+
* \version 3.2.7 "eagle"
4444
*/
4545
class CDualGrid{
4646
protected:
@@ -125,7 +125,7 @@ class CDualGrid{
125125
* \class CPoint
126126
* \brief Class for point definition (including control volume definition).
127127
* \author F. Palacios.
128-
* \version 3.2.6 "eagle"
128+
* \version 3.2.7 "eagle"
129129
*/
130130
class CPoint : public CDualGrid {
131131
private:
@@ -720,7 +720,7 @@ class CPoint : public CDualGrid {
720720
* \class CEdge
721721
* \brief Class for defining an edge.
722722
* \author F. Palacios.
723-
* \version 3.2.6 "eagle"
723+
* \version 3.2.7 "eagle"
724724
*/
725725
class CEdge : public CDualGrid {
726726
private:
@@ -857,7 +857,7 @@ class CEdge : public CDualGrid {
857857
* \class CVertex
858858
* \brief Class for vertex definition (equivalent to edges, but for the boundaries).
859859
* \author F. Palacios.
860-
* \version 3.2.6 "eagle"
860+
* \version 3.2.7 "eagle"
861861
*/
862862
class CVertex : public CDualGrid {
863863
private:

Common/include/dual_grid_structure.inl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22
* \file dual_grid_structure.inl
33
* \brief In-Line subroutines of the <i>dual_grid_structure.hpp</i> file.
44
* \author F. Palacios
5-
* \version 3.2.6 "eagle"
5+
* \version 3.2.7 "eagle"
66
*
7-
* Copyright (C) 2012-2014 SU2 <https://github.com/su2code>.
7+
* Copyright (C) 2012-2014 SU2 Core Developers.
88
*
99
* SU2 is free software; you can redistribute it and/or
1010
* modify it under the terms of the GNU Lesser General Public

Common/include/geometry_structure.hpp

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@
33
* \brief Headers of the main subroutines for creating the geometrical structure.
44
* The subroutines and functions are in the <i>geometry_structure.cpp</i> file.
55
* \author F. Palacios
6-
* \version 3.2.6 "eagle"
6+
* \version 3.2.7 "eagle"
77
*
8-
* Copyright (C) 2012-2014 SU2 <https://github.com/su2code>.
8+
* Copyright (C) 2012-2014 SU2 Core Developers.
99
*
1010
* SU2 is free software; you can redistribute it and/or
1111
* modify it under the terms of the GNU Lesser General Public
@@ -52,7 +52,7 @@ using namespace std;
5252
* \brief Parent class for defining the geometry of the problem (complete geometry,
5353
* multigrid agglomerated geometry, only boundary geometry, etc..)
5454
* \author F. Palacios.
55-
* \version 3.2.6 "eagle"
55+
* \version 3.2.7 "eagle"
5656
*/
5757
class CGeometry {
5858
protected:
@@ -830,7 +830,7 @@ class CGeometry {
830830
* \brief Class for reading a defining the primal grid which is read from the
831831
* grid file in .su2 format.
832832
* \author F. Palacios.
833-
* \version 3.2.6 "eagle"
833+
* \version 3.2.7 "eagle"
834834
*/
835835
class CPhysicalGeometry : public CGeometry {
836836

@@ -1341,7 +1341,7 @@ class CPhysicalGeometry : public CGeometry {
13411341
* \brief Class for defining the multigrid geometry, the main delicated part is the
13421342
* agglomeration stage, which is done in the declaration.
13431343
* \author F. Palacios.
1344-
* \version 3.2.6 "eagle"
1344+
* \version 3.2.7 "eagle"
13451345
*/
13461346
class CMultiGridGeometry : public CGeometry {
13471347

@@ -1510,7 +1510,7 @@ class CMultiGridGeometry : public CGeometry {
15101510
* \class CPeriodicGeometry
15111511
* \brief Class for defining a periodic boundary condition.
15121512
* \author T. Economon, F. Palacios.
1513-
* \version 3.2.6 "eagle"
1513+
* \version 3.2.7 "eagle"
15141514
*/
15151515
class CPeriodicGeometry : public CGeometry {
15161516
CPrimalGrid*** newBoundPer; /*!< \brief Boundary vector for new periodic elements (primal grid information). */
@@ -1556,7 +1556,7 @@ class CPeriodicGeometry : public CGeometry {
15561556
* \struct CMultiGridQueue
15571557
* \brief Class for a multigrid queue system
15581558
* \author F. Palacios.
1559-
* \version 3.2.6 "eagle"
1559+
* \version 3.2.7 "eagle"
15601560
* \date Aug 12, 2012
15611561
*/
15621562
class CMultiGridQueue {

Common/include/geometry_structure.inl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22
* \file geometry_structure.inl
33
* \brief In-Line subroutines of the <i>geometry_structure.hpp</i> file.
44
* \author F. Palacios
5-
* \version 3.2.6 "eagle"
5+
* \version 3.2.7 "eagle"
66
*
7-
* Copyright (C) 2012-2014 SU2 <https://github.com/su2code>.
7+
* Copyright (C) 2012-2014 SU2 Core Developers.
88
*
99
* SU2 is free software; you can redistribute it and/or
1010
* modify it under the terms of the GNU Lesser General Public

Common/include/grid_adaptation_structure.hpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@
55
* technique definition). The subroutines and functions are in
66
* the <i>grid_movement_structure.cpp</i> file.
77
* \author F. Palacios
8-
* \version 3.2.6 "eagle"
8+
* \version 3.2.7 "eagle"
99
*
10-
* Copyright (C) 2012-2014 SU2 <https://github.com/su2code>.
10+
* Copyright (C) 2012-2014 SU2 Core Developers.
1111
*
1212
* SU2 is free software; you can redistribute it and/or
1313
* modify it under the terms of the GNU Lesser General Public

Common/include/grid_adaptation_structure.inl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22
* \file grid_adaptation_structure.inl
33
* \brief In-Line subroutines of the <i>grid_adaptation_structure.hpp</i> file.
44
* \author F. Palacios
5-
* \version 3.2.6 "eagle"
5+
* \version 3.2.7 "eagle"
66
*
7-
* Copyright (C) 2012-2014 SU2 <https://github.com/su2code>.
7+
* Copyright (C) 2012-2014 SU2 Core Developers.
88
*
99
* SU2 is free software; you can redistribute it and/or
1010
* modify it under the terms of the GNU Lesser General Public

Common/include/grid_movement_structure.hpp

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@
55
* technique definition). The subroutines and functions are in
66
* the <i>grid_movement_structure.cpp</i> file.
77
* \author F. Palacios, T. Economon, S. Padron
8-
* \version 3.2.6 "eagle"
8+
* \version 3.2.7 "eagle"
99
*
10-
* Copyright (C) 2012-2014 SU2 <https://github.com/su2code>.
10+
* Copyright (C) 2012-2014 SU2 Core Developers.
1111
*
1212
* SU2 is free software; you can redistribute it and/or
1313
* modify it under the terms of the GNU Lesser General Public
@@ -47,7 +47,7 @@ using namespace std;
4747
* \brief Class for moving the surface and volumetric
4848
* numerical grid (2D and 3D problems).
4949
* \author F. Palacios.
50-
* \version 3.2.6 "eagle"
50+
* \version 3.2.7 "eagle"
5151
*/
5252
class CGridMovement {
5353
public:
@@ -76,7 +76,7 @@ class CGridMovement {
7676
* \class CFreeFormDefBox
7777
* \brief Class for defining the free form FFDBox structure.
7878
* \author F. Palacios & A. Galdran.
79-
* \version 3.2.6 "eagle"
79+
* \version 3.2.7 "eagle"
8080
*/
8181
class CFreeFormDefBox : public CGridMovement {
8282
public:
@@ -673,7 +673,7 @@ class CFreeFormDefBox : public CGridMovement {
673673
* \class CVolumetricMovement
674674
* \brief Class for moving the volumetric numerical grid.
675675
* \author F. Palacios, A. Bueno, T. Economon, S. Padron.
676-
* \version 3.2.6 "eagle"
676+
* \version 3.2.7 "eagle"
677677
*/
678678
class CVolumetricMovement : public CGridMovement {
679679
protected:
@@ -940,7 +940,7 @@ class CVolumetricMovement : public CGridMovement {
940940
* \class CSurfaceMovement
941941
* \brief Class for moving the surface numerical grid.
942942
* \author F. Palacios, T. Economon.
943-
* \version 3.2.6 "eagle"
943+
* \version 3.2.7 "eagle"
944944
*/
945945
class CSurfaceMovement : public CGridMovement {
946946
protected:

0 commit comments

Comments
 (0)