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.2.1 "Blackbird"
6
+ * \version 7.3.0 "Blackbird"
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.2.1 "Blackbird"
44
+ * \version 7.3.0 "Blackbird"
45
45
*/
46
46
struct CLong3T {
47
47
long long0 = 0 ; /* !< \brief First long to store in this class. */
@@ -59,7 +59,7 @@ struct CLong3T {
59
59
* \class CReorderElements
60
60
* \brief Class, used to reorder the owned elements after the partitioning.
61
61
* \author E. van der Weide
62
- * \version 7.2.1 "Blackbird"
62
+ * \version 7.3.0 "Blackbird"
63
63
*/
64
64
class CReorderElements {
65
65
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.2.1 "Blackbird"
134
+ * \version 7.3.0 "Blackbird"
135
135
*/
136
136
class CVolumeElementFEM ; // Forward declaration to avoid problems.
137
137
class CSortFaces {
@@ -172,7 +172,7 @@ class CSortFaces {
172
172
* \brief Functor, used for a different sorting of the faces than the < operator
173
173
* of CSurfaceElementFEM.
174
174
* \author E. van der Weide
175
- * \version 7.2.1 "Blackbird"
175
+ * \version 7.3.0 "Blackbird"
176
176
*/
177
177
struct CSurfaceElementFEM ; // Forward declaration to avoid problems.
178
178
struct CSortBoundaryFaces {
@@ -189,7 +189,7 @@ struct CSortBoundaryFaces {
189
189
* \class CVolumeElementFEM
190
190
* \brief Class to store a volume element for the FEM solver.
191
191
* \author E. van der Weide
192
- * \version 7.2.1 "Blackbird"
192
+ * \version 7.3.0 "Blackbird"
193
193
*/
194
194
class CVolumeElementFEM {
195
195
public:
@@ -283,7 +283,7 @@ class CVolumeElementFEM {
283
283
* \class CPointFEM
284
284
* \brief Class to a point for the FEM solver.
285
285
* \author E. van der Weide
286
- * \version 7.2.1 "Blackbird"
286
+ * \version 7.3.0 "Blackbird"
287
287
*/
288
288
struct CPointFEM {
289
289
unsigned long globalID; /* !< \brief The global ID of this point in the grid. */
@@ -308,7 +308,7 @@ struct CPointFEM {
308
308
* \class CInternalFaceElementFEM
309
309
* \brief Class to store an internal face for the FEM solver.
310
310
* \author E. van der Weide
311
- * \version 7.2.1 "Blackbird"
311
+ * \version 7.3.0 "Blackbird"
312
312
*/
313
313
struct CInternalFaceElementFEM {
314
314
unsigned short VTK_Type; /* !< \brief Element type using the VTK convention. */
@@ -353,7 +353,7 @@ struct CInternalFaceElementFEM {
353
353
* \class CSurfaceElementFEM
354
354
* \brief Class to store a surface element for the FEM solver.
355
355
* \author E. van der Weide
356
- * \version 7.2.1 "Blackbird"
356
+ * \version 7.3.0 "Blackbird"
357
357
*/
358
358
struct CSurfaceElementFEM {
359
359
unsigned short VTK_Type; /* !< \brief Element type using the VTK convention. */
@@ -415,7 +415,7 @@ struct CSurfaceElementFEM {
415
415
* \class CBoundaryFEM
416
416
* \brief Class to store a boundary for the FEM solver.
417
417
* \author E. van der Weide
418
- * \version 7.2.1 "Blackbird"
418
+ * \version 7.3.0 "Blackbird"
419
419
*/
420
420
struct CBoundaryFEM {
421
421
string markerTag; /* !< \brief Marker tag of this boundary. */
@@ -438,7 +438,7 @@ struct CBoundaryFEM {
438
438
* \class CMeshFEM
439
439
* \brief Base class for the FEM solver.
440
440
* \author E. van der Weide
441
- * \version 7.2.1 "Blackbird"
441
+ * \version 7.3.0 "Blackbird"
442
442
*/
443
443
class CMeshFEM : public CGeometry {
444
444
protected:
@@ -712,7 +712,7 @@ class CMeshFEM: public CGeometry {
712
712
* \class CMeshFEM_DG
713
713
* \brief Class which contains all the variables for the DG FEM solver.
714
714
* \author E. van der Weide
715
- * \version 7.2.1 "Blackbird"
715
+ * \version 7.3.0 "Blackbird"
716
716
*/
717
717
class CMeshFEM_DG : public CMeshFEM {
718
718
protected:
0 commit comments