13template<
class real_type>
28 return do_compute_jacobian();
43 return do_compute_metric();
56 std::vector<thrust::host_vector<real_type> >
map()
const{
57 return do_compute_map();
77 virtual std::vector<thrust::host_vector<real_type> > do_compute_map()
const{
78 std::vector<thrust::host_vector<real_type> >
map(2);
88template<
class real_type>
105 return do_compute_jacobian();
122 return do_compute_metric();
136 std::vector<thrust::host_vector<real_type> >
map()
const{
137 return do_compute_map();
157 virtual std::vector<thrust::host_vector<real_type> > do_compute_map()
const{
158 std::vector<thrust::host_vector<real_type> >
map(3);
180template<
class real_type>
194 return do_perp_grid();
215template<
class real_type>
222 RealCartesianGrid2d( real_type
x0, real_type
x1, real_type
y0, real_type
y1,
unsigned n,
unsigned Nx,
unsigned Ny,
bc bcx =
PER,
bc bcy =
PER):
dg::
aRealGeometry2d<real_type>({
x0,
y0},{
x1,
y1},{
n,
n},{
Nx,
Ny},{
bcx,
bcy}){}
242 virtual void do_set(std::array<unsigned,2> new_n, std::array<unsigned,2> new_N)
override final{
245 virtual void do_set_pq( std::array<real_type,2> new_x0, std::array<real_type,2> new_x1)
override final{
248 virtual void do_set( std::array<dg::bc,2> new_bcs)
override final{
256template<
class real_type>
264 unsigned n,
unsigned Nx,
unsigned Ny,
unsigned Nz,
266 dg::
aRealProductGeometry3d<real_type>({
x0,
y0,
z0},{
x1,
y1,
z1},{
n,
n,1},{
Nx,
Ny,
Nz},{
bcx,
bcy,
bcz})
291 virtual void do_set(std::array<unsigned,3> new_n, std::array<unsigned,3> new_N)
override final{
294 virtual void do_set_pq( std::array<real_type,3> new_x0, std::array<real_type,3> new_x1)
override final{
297 virtual void do_set( std::array<dg::bc,3> new_bcs)
override final{
306template<
class real_type>
315 real_type
y0, real_type
y1, real_type
z0, real_type
z1,
316 unsigned n,
unsigned Nx,
unsigned Ny,
unsigned Nz,
318 dg::
aRealProductGeometry3d<real_type>({
x0,
y0,
z0},{
x1,
y1,
z1},{
n,
n,1},{
Nx,
Ny,
Nz},{
bcx,
bcy,
bcz})
336 virtual SparseTensor<thrust::host_vector<real_type> > do_compute_metric()const override final{
337 SparseTensor<thrust::host_vector<real_type> >
metric(*
this);
339 for(
unsigned i = 0; i<this->
size(); i++)
342 metric.values().push_back( R);
345 virtual void do_set(std::array<unsigned,3> new_n, std::array<unsigned,3> new_N)
override final{
348 virtual void do_set_pq( std::array<real_type,3> new_x0, std::array<real_type,3> new_x1)
override final{
351 virtual void do_set( std::array<dg::bc,3> new_bcs)
override final{
DG_DEVICE double cooY3d(double x, double y, double z)
Definition functions.h:69
DG_DEVICE double cooX3d(double x, double y, double z)
Definition functions.h:64
DG_DEVICE double cooZ3d(double x, double y, double z)
Definition functions.h:71
DG_DEVICE double cooY2d(double x, double y)
Definition functions.h:67
DG_DEVICE double cooX2d(double x, double y)
Definition functions.h:62
bc
Switch between boundary conditions.
Definition enums.h:15
@ PER
periodic boundaries
Definition enums.h:16
auto evaluate(Functor &&f, const Topology &g)
Evaluate a function on grid coordinates
Definition evaluation.h:74
CartesianMPIGrid3d CartesianGrid3d
Definition mpi_base_geometry.h:312
aMPIGeometry3d aGeometry3d
Definition mpi_base_geometry.h:309
aProductMPIGeometry3d aProductGeometry3d
Definition mpi_base_geometry.h:310
aMPIGeometry2d aGeometry2d
Definition mpi_base_geometry.h:308
CylindricalMPIGrid3d CylindricalGrid3d
Definition mpi_base_geometry.h:313
CartesianMPIGrid2d CartesianGrid2d
Definition mpi_base_geometry.h:311
This is the namespace for all functions and classes defined and used by the discontinuous Galerkin li...
Two-dimensional Grid with Cartesian metric.
Definition base_geometry.h:217
RealCartesianGrid2d()=default
construct an empty grid this leaves the access functions undefined
RealCartesianGrid2d(RealGrid1d< real_type > gx, RealGrid1d< real_type > gy)
Construct from given 1d grids.
Definition base_geometry.h:229
RealCartesianGrid2d(real_type x0, real_type x1, real_type y0, real_type y1, unsigned n, unsigned Nx, unsigned Ny, bc bcx=PER, bc bcy=PER)
Construct with equal polynomial coefficients.
Definition base_geometry.h:222
virtual RealCartesianGrid2d< real_type > * clone() const override final
Enable ClonePtr.
Definition base_geometry.h:238
RealCartesianGrid2d(const dg::RealGrid2d< real_type > &g)
Construct from existing 2d topology.
Definition base_geometry.h:235
Three-dimensional Grid with Cartesian metric.
Definition base_geometry.h:258
RealCartesianGrid3d(RealGrid1d< real_type > gx, RealGrid1d< real_type > gy, RealGrid1d< real_type > gz)
Construct from given 1d grids.
Definition base_geometry.h:275
RealCartesianGrid3d(const dg::RealGrid3d< real_type > &g)
Implicit type conversion from Grid3d.
Definition base_geometry.h:281
virtual RealCartesianGrid3d * clone() const override final
Enable ClonePtr.
Definition base_geometry.h:284
RealCartesianGrid3d(real_type x0, real_type x1, real_type y0, real_type y1, real_type z0, real_type z1, unsigned n, unsigned Nx, unsigned Ny, unsigned Nz, bc bcx=PER, bc bcy=PER, bc bcz=PER)
Construct with equal polynomial coefficients.
Definition base_geometry.h:263
RealCartesianGrid3d()=default
three-dimensional Grid with Cylindrical metric
Definition base_geometry.h:308
RealCylindricalGrid3d()=default
virtual RealCylindricalGrid3d * clone() const override final
Enable ClonePtr.
Definition base_geometry.h:329
RealCylindricalGrid3d(real_type x0, real_type x1, real_type y0, real_type y1, real_type z0, real_type z1, unsigned n, unsigned Nx, unsigned Ny, unsigned Nz, bc bcx=PER, bc bcy=PER, bc bcz=PER)
Construct with equal polynomial coefficients.
Definition base_geometry.h:314
RealCylindricalGrid3d(RealGrid1d< real_type > gx, RealGrid1d< real_type > gy, RealGrid1d< real_type > gz)
Construct from given 1d grids.
Definition base_geometry.h:326
The simplest implementation of aRealTopology.
Definition grid.h:710
Class for 2x2 and 3x3 matrices sharing elements.
Definition tensor.h:51
This is the abstract interface class for a two-dimensional Geometry.
Definition base_geometry.h:15
SparseTensor< thrust::host_vector< real_type > > jacobian() const
The Jacobian of the coordinate transformation from physical to computational space.
Definition base_geometry.h:27
std::vector< thrust::host_vector< real_type > > map() const
The coordinate map from computational to physical space.
Definition base_geometry.h:56
aRealGeometry2d & operator=(const aRealGeometry2d &src)=default
virtual aRealGeometry2d * clone() const =0
Geometries are cloneable.
virtual ~aRealGeometry2d()=default
allow deletion through base class pointer
aRealGeometry2d(const aRealGeometry2d &src)=default
SparseTensor< thrust::host_vector< real_type > > metric() const
The (inverse) metric tensor of the coordinate system.
Definition base_geometry.h:42
This is the abstract interface class for a three-dimensional Geometry.
Definition base_geometry.h:90
SparseTensor< thrust::host_vector< real_type > > jacobian() const
The Jacobian of the coordinate transformation from physical to computational space.
Definition base_geometry.h:104
aRealGeometry3d(const aRealGeometry3d &src)=default
aRealGeometry3d & operator=(const aRealGeometry3d &src)=default
SparseTensor< thrust::host_vector< real_type > > metric() const
The (inverse) metric tensor of the coordinate system.
Definition base_geometry.h:121
virtual aRealGeometry3d * clone() const =0
Geometries are cloneable.
virtual ~aRealGeometry3d()=default
allow deletion through base class pointer
std::vector< thrust::host_vector< real_type > > map() const
The coordinate map from computational to physical space.
Definition base_geometry.h:136
A 3d product space Geometry .
Definition base_geometry.h:182
aRealProductGeometry3d & operator=(const aRealProductGeometry3d &src)=default
aRealGeometry2d< real_type > * perp_grid() const
The grid made up by the first two dimensions.
Definition base_geometry.h:193
virtual aRealProductGeometry3d * clone() const =0
Geometries are cloneable.
aRealProductGeometry3d(const aRealProductGeometry3d &src)=default
virtual ~aRealProductGeometry3d()=default
allow deletion through base class pointer
An abstract base class for Nd-dimensional dG grids.
Definition grid.h:95
dg::bc bcz() const
Definition grid.h:350
RealGrid< real_type, 1 > gy() const
Definition grid.h:360
real_type x0() const
Definition grid.h:285
RealGrid< real_type, 1 > gx() const
Definition grid.h:354
real_type z1() const
Definition grid.h:300
unsigned size() const
Definition grid.h:532
dg::bc bcy() const
Definition grid.h:347
real_type z0() const
Definition grid.h:297
unsigned n(unsigned u=0) const
Definition grid.h:262
unsigned Nx() const
Definition grid.h:334
virtual void do_set_pq(std::array< real_type, Nd > new_p, std::array< real_type, Nd > new_q)=0
Reset the boundaries of the grid.
real_type y0() const
Definition grid.h:291
virtual void do_set(std::array< unsigned, Nd > new_n, std::array< unsigned, Nd > new_N)=0
Set the number of polynomials and cells.
RealGrid< real_type, 1 > gz() const
Definition grid.h:366
real_type y1() const
Definition grid.h:294
real_type x1() const
Definition grid.h:288
dg::bc bcx() const
Definition grid.h:344
unsigned Ny() const
Definition grid.h:337
unsigned Nz() const
Definition grid.h:340