33 * \brief Headers of the main subroutines for creating the geometrical structure for the FEM solver.
44 * The subroutines and functions are in the <i>fem_geometry_structure.cpp</i> file.
55 * \author E. van der Weide
6- * \version 7.0.5 "Blackbird"
6+ * \version 7.0.6 "Blackbird"
77 *
88 * SU2 Project Website: https://su2code.github.io
99 *
@@ -41,7 +41,7 @@ using namespace std;
4141/* !
4242 * \class CLong3T
4343 * \brief Help class used to store three longs as one entity.
44- * \version 7.0.5 "Blackbird"
44+ * \version 7.0.6 "Blackbird"
4545 */
4646struct CLong3T {
4747 long long0 = 0 ; /* !< \brief First long to store in this class. */
@@ -59,7 +59,7 @@ struct CLong3T {
5959 * \class CReorderElements
6060 * \brief Class, used to reorder the owned elements after the partitioning.
6161 * \author E. van der Weide
62- * \version 7.0.5 "Blackbird"
62+ * \version 7.0.6 "Blackbird"
6363 */
6464class CReorderElements {
6565private:
@@ -131,7 +131,7 @@ class CReorderElements {
131131 * \brief Functor, used for a different sorting of the faces than the < operator
132132 * of CFaceOfElement.
133133 * \author E. van der Weide
134- * \version 7.0.5 "Blackbird"
134+ * \version 7.0.6 "Blackbird"
135135 */
136136class CVolumeElementFEM ; // Forward declaration to avoid problems.
137137class CSortFaces {
@@ -172,7 +172,7 @@ class CSortFaces {
172172 * \brief Functor, used for a different sorting of the faces than the < operator
173173 * of CSurfaceElementFEM.
174174 * \author E. van der Weide
175- * \version 7.0.5 "Blackbird"
175+ * \version 7.0.6 "Blackbird"
176176 */
177177struct CSurfaceElementFEM ; // Forward declaration to avoid problems.
178178struct CSortBoundaryFaces {
@@ -189,7 +189,7 @@ struct CSortBoundaryFaces {
189189 * \class CVolumeElementFEM
190190 * \brief Class to store a volume element for the FEM solver.
191191 * \author E. van der Weide
192- * \version 7.0.5 "Blackbird"
192+ * \version 7.0.6 "Blackbird"
193193 */
194194class CVolumeElementFEM {
195195public:
@@ -283,7 +283,7 @@ class CVolumeElementFEM {
283283 * \class CPointFEM
284284 * \brief Class to a point for the FEM solver.
285285 * \author E. van der Weide
286- * \version 7.0.5 "Blackbird"
286+ * \version 7.0.6 "Blackbird"
287287 */
288288struct CPointFEM {
289289 unsigned long globalID; /* !< \brief The global ID of this point in the grid. */
@@ -308,7 +308,7 @@ struct CPointFEM {
308308 * \class CInternalFaceElementFEM
309309 * \brief Class to store an internal face for the FEM solver.
310310 * \author E. van der Weide
311- * \version 7.0.5 "Blackbird"
311+ * \version 7.0.6 "Blackbird"
312312 */
313313struct CInternalFaceElementFEM {
314314 unsigned short VTK_Type; /* !< \brief Element type using the VTK convention. */
@@ -353,7 +353,7 @@ struct CInternalFaceElementFEM {
353353 * \class CSurfaceElementFEM
354354 * \brief Class to store a surface element for the FEM solver.
355355 * \author E. van der Weide
356- * \version 7.0.5 "Blackbird"
356+ * \version 7.0.6 "Blackbird"
357357 */
358358struct CSurfaceElementFEM {
359359 unsigned short VTK_Type; /* !< \brief Element type using the VTK convention. */
@@ -415,7 +415,7 @@ struct CSurfaceElementFEM {
415415 * \class CBoundaryFEM
416416 * \brief Class to store a boundary for the FEM solver.
417417 * \author E. van der Weide
418- * \version 7.0.5 "Blackbird"
418+ * \version 7.0.6 "Blackbird"
419419 */
420420struct CBoundaryFEM {
421421 string markerTag; /* !< \brief Marker tag of this boundary. */
@@ -438,7 +438,7 @@ struct CBoundaryFEM {
438438 * \class CMeshFEM
439439 * \brief Base class for the FEM solver.
440440 * \author E. van der Weide
441- * \version 7.0.5 "Blackbird"
441+ * \version 7.0.6 "Blackbird"
442442 */
443443class CMeshFEM : public CGeometry {
444444protected:
@@ -712,7 +712,7 @@ class CMeshFEM: public CGeometry {
712712 * \class CMeshFEM_DG
713713 * \brief Class which contains all the variables for the DG FEM solver.
714714 * \author E. van der Weide
715- * \version 7.0.5 "Blackbird"
715+ * \version 7.0.6 "Blackbird"
716716 */
717717class CMeshFEM_DG : public CMeshFEM {
718718protected:
0 commit comments