Skip to content

Commit 437f5b0

Browse files
authored
Merge pull request #1001 from su2code/move_fem_files
Move FEM files
2 parents 661d5fa + 9c1aec0 commit 437f5b0

29 files changed

Lines changed: 334 additions & 1046 deletions
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
*
99
* SU2 Project Website: https://su2code.github.io
1010
*
11-
* The SU2 Project is maintained by the SU2 Foundation
11+
* The SU2 Project is maintained by the SU2 Foundation
1212
* (http://su2foundation.org)
1313
*
1414
* Copyright 2012-2020, SU2 Contributors (cf. AUTHORS.md)
@@ -29,13 +29,13 @@
2929

3030
#pragma once
3131

32-
#include "./mpi_structure.hpp"
32+
#include "../mpi_structure.hpp"
3333

3434
#ifdef HAVE_CGNS
3535
#include "cgnslib.h"
3636
#endif
3737

38-
#include "geometry/primal_grid/CPrimalGridFEM.hpp"
38+
#include "../geometry/primal_grid/CPrimalGridFEM.hpp"
3939

4040
/* Forward declaration of CBoundaryFace to avoid problems. */
4141
class CBoundaryFace;

Common/include/fem_gauss_jacobi_quadrature.hpp renamed to Common/include/fem/fem_gauss_jacobi_quadrature.hpp

Lines changed: 5 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
*
1111
* SU2 Project Website: https://su2code.github.io
1212
*
13-
* The SU2 Project is maintained by the SU2 Foundation
13+
* The SU2 Project is maintained by the SU2 Foundation
1414
* (http://su2foundation.org)
1515
*
1616
* Copyright 2012-2020, SU2 Contributors (cf. AUTHORS.md)
@@ -63,16 +63,16 @@ Subject: Gauss-Jacobi Quadrature Code
6363
Dear John,
6464
6565
I am the lead developer for the open-source SU2 suite, which is primarily for
66-
computational fluid dynamics, but also for solving other PDE systems
66+
computational fluid dynamics, but also for solving other PDE systems
6767
(http://su2.stanford.edu, https://github.com/su2code/SU2). Over the past few months,
6868
we have been working on a new high-order discontinuous Galerkin fluid solver within
6969
the codebase, led by Prof. Edwin van der Weide at the University of Twente (cc’d).
7070
7171
We found your attached code to be very helpful in resolving some issues with integration
7272
for our pyramid elements, and we would really like to reuse the implementation if possible.
73-
First, we would like to check if this is ok with you personally, and ask how we can
73+
First, we would like to check if this is ok with you personally, and ask how we can
7474
properly attribute your work in the code? Second, we are curious just what version of the
75-
GNU LGPL license you are using to make sure that we don’t have any licensing issues.
75+
GNU LGPL license you are using to make sure that we don’t have any licensing issues.
7676
For SU2, we are using GNU LGPL v2.1.
7777
7878
Thanks for the time and take care,
@@ -86,7 +86,7 @@ Tom
8686
#include <cstdlib>
8787
#include <vector>
8888

89-
#include "CConfig.hpp"
89+
#include "../CConfig.hpp"
9090

9191
using namespace std;
9292

@@ -99,17 +99,6 @@ using namespace std;
9999
*/
100100
class CGaussJacobiQuadrature {
101101
public:
102-
103-
/*!
104-
* \brief Constructor of the class, nothing to be done.
105-
*/
106-
CGaussJacobiQuadrature();
107-
108-
/*!
109-
* \brief Destructor of the class, nothing to be done.
110-
*/
111-
~CGaussJacobiQuadrature();
112-
113102
/*!
114103
* \brief Function, which serves as the API to compute the integration points
115104
and weights.
@@ -186,5 +175,3 @@ class CGaussJacobiQuadrature {
186175
void sgqf(int nt, const passivedouble aj[], passivedouble bj[], passivedouble zemu, passivedouble t[],
187176
passivedouble wts[]);
188177
};
189-
190-
#include "fem_gauss_jacobi_quadrature.inl"

0 commit comments

Comments
 (0)