3
3
* \brief Headers of the main subroutines for creating the geometrical structure for the FEM solver.
4
4
* The subroutines and functions are in the <i>fem_geometry_structure.cpp</i> file.
5
5
* \author E. van der Weide
6
- * \version 7.5.1 "Blackbird "
6
+ * \version 8.0.0 "Harrier "
7
7
*
8
8
* SU2 Project Website: https://su2code.github.io
9
9
*
@@ -41,7 +41,7 @@ using namespace std;
41
41
/* !
42
42
* \class CLong3T
43
43
* \brief Help class used to store three longs as one entity.
44
- * \version 7.5.1 "Blackbird "
44
+ * \version 8.0.0 "Harrier "
45
45
*/
46
46
struct CLong3T {
47
47
long long0 = 0 ; /* !< \brief First long to store in this class. */
@@ -63,7 +63,7 @@ struct CLong3T {
63
63
* \class CReorderElements
64
64
* \brief Class, used to reorder the owned elements after the partitioning.
65
65
* \author E. van der Weide
66
- * \version 7.5.1 "Blackbird "
66
+ * \version 8.0.0 "Harrier "
67
67
*/
68
68
class CReorderElements {
69
69
private:
@@ -131,7 +131,7 @@ class CReorderElements {
131
131
* \brief Functor, used for a different sorting of the faces than the < operator
132
132
* of CFaceOfElement.
133
133
* \author E. van der Weide
134
- * \version 7.5.1 "Blackbird "
134
+ * \version 8.0.0 "Harrier "
135
135
*/
136
136
class CVolumeElementFEM ; // Forward declaration to avoid problems.
137
137
class CSortFaces {
@@ -169,7 +169,7 @@ class CSortFaces {
169
169
* \brief Functor, used for a different sorting of the faces than the < operator
170
170
* of CSurfaceElementFEM.
171
171
* \author E. van der Weide
172
- * \version 7.5.1 "Blackbird "
172
+ * \version 8.0.0 "Harrier "
173
173
*/
174
174
struct CSurfaceElementFEM ; // Forward declaration to avoid problems.
175
175
struct CSortBoundaryFaces {
@@ -185,7 +185,7 @@ struct CSortBoundaryFaces {
185
185
* \class CVolumeElementFEM
186
186
* \brief Class to store a volume element for the FEM solver.
187
187
* \author E. van der Weide
188
- * \version 7.5.1 "Blackbird "
188
+ * \version 8.0.0 "Harrier "
189
189
*/
190
190
class CVolumeElementFEM {
191
191
public:
@@ -276,7 +276,7 @@ class CVolumeElementFEM {
276
276
* \class CPointFEM
277
277
* \brief Class to a point for the FEM solver.
278
278
* \author E. van der Weide
279
- * \version 7.5.1 "Blackbird "
279
+ * \version 8.0.0 "Harrier "
280
280
*/
281
281
struct CPointFEM {
282
282
unsigned long globalID; /* !< \brief The global ID of this point in the grid. */
@@ -300,7 +300,7 @@ struct CPointFEM {
300
300
* \class CInternalFaceElementFEM
301
301
* \brief Class to store an internal face for the FEM solver.
302
302
* \author E. van der Weide
303
- * \version 7.5.1 "Blackbird "
303
+ * \version 8.0.0 "Harrier "
304
304
*/
305
305
struct CInternalFaceElementFEM {
306
306
unsigned short VTK_Type; /* !< \brief Element type using the VTK convention. */
@@ -344,7 +344,7 @@ struct CInternalFaceElementFEM {
344
344
* \class CSurfaceElementFEM
345
345
* \brief Class to store a surface element for the FEM solver.
346
346
* \author E. van der Weide
347
- * \version 7.5.1 "Blackbird "
347
+ * \version 8.0.0 "Harrier "
348
348
*/
349
349
struct CSurfaceElementFEM {
350
350
unsigned short VTK_Type; /* !< \brief Element type using the VTK convention. */
@@ -405,7 +405,7 @@ struct CSurfaceElementFEM {
405
405
* \class CBoundaryFEM
406
406
* \brief Class to store a boundary for the FEM solver.
407
407
* \author E. van der Weide
408
- * \version 7.5.1 "Blackbird "
408
+ * \version 8.0.0 "Harrier "
409
409
*/
410
410
struct CBoundaryFEM {
411
411
string markerTag; /* !< \brief Marker tag of this boundary. */
@@ -428,7 +428,7 @@ struct CBoundaryFEM {
428
428
* \class CMeshFEM
429
429
* \brief Base class for the FEM solver.
430
430
* \author E. van der Weide
431
- * \version 7.5.1 "Blackbird "
431
+ * \version 8.0.0 "Harrier "
432
432
*/
433
433
class CMeshFEM : public CGeometry {
434
434
protected:
@@ -693,7 +693,7 @@ class CMeshFEM : public CGeometry {
693
693
* \class CMeshFEM_DG
694
694
* \brief Class which contains all the variables for the DG FEM solver.
695
695
* \author E. van der Weide
696
- * \version 7.5.1 "Blackbird "
696
+ * \version 8.0.0 "Harrier "
697
697
*/
698
698
class CMeshFEM_DG : public CMeshFEM {
699
699
protected:
0 commit comments