16template<
class real_type>
21 return do_compute_jacobian();
25 return do_compute_metric();
28 std::vector<thrust::host_vector<real_type> >
map()
const{
29 return do_compute_map();
48 virtual std::vector<thrust::host_vector<real_type> > do_compute_map()
const{
49 std::vector<thrust::host_vector<real_type> >
map(2);
61template<
class real_type>
66 return do_compute_jacobian();
70 return do_compute_metric();
73 std::vector<thrust::host_vector<real_type> >
map()
const{
74 return do_compute_map();
93 virtual std::vector<thrust::host_vector<real_type> > do_compute_map()
const{
94 std::vector<thrust::host_vector<real_type> >
map(3);
106template<
class real_type>
111 RealCartesianGridX2d( real_type
x0, real_type
x1, real_type
y0, real_type
y1, real_type
fx, real_type
fy,
unsigned n,
unsigned Nx,
unsigned Ny,
bc bcx =
PER,
bc bcy =
PER):
dg::
aRealGeometryX2d<real_type>(
x0,
x1,
y0,
y1,
fx,
fy,
n,
Nx,
Ny,
bcx,
bcy){}
116 RealCartesianGridX2d(
const dg::GridX2d& g):
dg::
aRealGeometryX2d<real_type>(g.
x0(),g.
x1(),g.
y0(),g.
y1(),g.
fx(),g.
fy(),g.
n(),g.
Nx(),g.
Ny(),g.
bcx(),g.
bcy()){}
125template<
class real_type>
130 RealCartesianGridX3d( real_type
x0, real_type
x1, real_type
y0, real_type
y1, real_type
z0, real_type
z1, real_type
fx, real_type
fy,
unsigned n,
unsigned Nx,
unsigned Ny,
unsigned Nz,
bc bcx =
PER,
bc bcy =
PER,
bc bcz =
PER):
dg::
aRealGeometryX3d<real_type>(
x0,
x1,
y0,
y1,
z0,
z1,
fx,
fy,
n,
Nx,
Ny,
Nz,
bcx,
bcy,
bcz){}
135 RealCartesianGridX3d(
const dg::GridX3d& g):
dg::
aRealGeometryX3d<real_type>(g.
x0(), g.
x1(), g.
y0(), g.
y1(), g.
z0(), g.
z1(),g.
fx(),g.
fy(),g.
n(),g.
Nx(),g.
Ny(),g.
Nz(),g.
bcx(),g.
bcy(),g.
bcz()){}
base X-point topology classes
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
This is the namespace for all functions and classes defined and used by the discontinuous Galerkin li...
two-dimensional GridX with RealCartesian metric
Definition base_geometryX.h:108
RealCartesianGridX2d(const dg::GridX2d &g)
Construct from existing topology.
Definition base_geometryX.h:116
virtual RealCartesianGridX2d * clone() const override final
Geometries are cloneable.
Definition base_geometryX.h:117
RealCartesianGridX2d(real_type x0, real_type x1, real_type y0, real_type y1, real_type fx, real_type fy, unsigned n, unsigned Nx, unsigned Ny, bc bcx=PER, bc bcy=PER)
Construct a 2D X-point grid.
Definition base_geometryX.h:111
three-dimensional GridX with RealCartesian metric
Definition base_geometryX.h:127
RealCartesianGridX3d(const dg::GridX3d &g)
Implicit type conversion from GridX3d.
Definition base_geometryX.h:135
virtual RealCartesianGridX3d * clone() const override final
Geometries are cloneable.
Definition base_geometryX.h:136
RealCartesianGridX3d(real_type x0, real_type x1, real_type y0, real_type y1, real_type z0, real_type z1, real_type fx, real_type fy, unsigned n, unsigned Nx, unsigned Ny, unsigned Nz, bc bcx=PER, bc bcy=PER, bc bcz=PER)
Construct a 3D X-point grid.
Definition base_geometryX.h:130
The simplest implementation of aRealTopologyX2d.
Definition gridX.h:514
The simplest implementation of aRealTopologyX3d.
Definition gridX.h:806
Class for 2x2 and 3x3 matrices sharing elements.
Definition tensor.h:51
This is the abstract interface class for a two-dimensional RealGeometryX.
Definition base_geometryX.h:18
aRealGeometryX2d & operator=(const aRealGeometryX2d &src)=default
SparseTensor< thrust::host_vector< real_type > > jacobian() const
The Jacobian of the coordinate transformation from physical to computational space.
Definition base_geometryX.h:20
std::vector< thrust::host_vector< real_type > > map() const
The coordinate map from computational to physical space.
Definition base_geometryX.h:28
SparseTensor< thrust::host_vector< real_type > > metric() const
The (inverse) metric tensor of the coordinate system.
Definition base_geometryX.h:24
virtual aRealGeometryX2d * clone() const =0
Geometries are cloneable.
aRealGeometryX2d(const aRealGeometryX2d &src)=default
virtual ~aRealGeometryX2d()=default
allow deletion through base class pointer
This is the abstract interface class for a three-dimensional RealGeometryX.
Definition base_geometryX.h:63
aRealGeometryX3d & operator=(const aRealGeometryX3d &src)=default
virtual ~aRealGeometryX3d()=default
allow deletion through base class pointer
SparseTensor< thrust::host_vector< real_type > > jacobian() const
The Jacobian of the coordinate transformation from physical to computational space.
Definition base_geometryX.h:65
SparseTensor< thrust::host_vector< real_type > > metric() const
The (inverse) metric tensor of the coordinate system.
Definition base_geometryX.h:69
aRealGeometryX3d(const aRealGeometryX3d &src)=default
virtual aRealGeometryX3d * clone() const =0
Geometries are cloneable.
std::vector< thrust::host_vector< real_type > > map() const
The coordinate map from computational to physical space.
Definition base_geometryX.h:73
A 2D grid class with X-point topology.
Definition gridX.h:257
aRealTopologyX2d()=default
real_type y0() const
left boundary in y
Definition gridX.h:286
bc bcy() const
boundary conditions in y
Definition gridX.h:382
real_type y1() const
Right boundary in y.
Definition gridX.h:292
unsigned Nx() const
number of cells in x
Definition gridX.h:340
real_type x1() const
Right boundary in x.
Definition gridX.h:280
real_type x0() const
Left boundary in x.
Definition gridX.h:274
real_type fx() const
partition factor in x
Definition gridX.h:322
bc bcx() const
boundary conditions in x
Definition gridX.h:376
unsigned Ny() const
number of cells in y
Definition gridX.h:358
real_type fy() const
partition factor in y
Definition gridX.h:328
unsigned n() const
number of polynomial coefficients in x and y
Definition gridX.h:334
A 3D grid class with X-point topology.
Definition gridX.h:541
bc bcx() const
boundary conditions in x
Definition gridX.h:693
unsigned n() const
number of polynomial coefficients in x and y
Definition gridX.h:645
real_type y1() const
right boundary in y
Definition gridX.h:576
real_type z1() const
right boundary in z
Definition gridX.h:589
real_type fx() const
partition factor in x
Definition gridX.h:633
unsigned Nz() const
number of points in z
Definition gridX.h:687
unsigned Ny() const
number of cells in y
Definition gridX.h:669
unsigned Nx() const
number of points in x
Definition gridX.h:651
bc bcy() const
boundary conditions in y
Definition gridX.h:699
real_type z0() const
left boundary in z
Definition gridX.h:583
real_type y0() const
left boundary in y
Definition gridX.h:570
real_type x0() const
left boundary in x
Definition gridX.h:557
aRealTopologyX3d()=default
real_type x1() const
right boundary in x
Definition gridX.h:563
real_type fy() const
partition factor in y
Definition gridX.h:639
bc bcz() const
boundary conditions in z
Definition gridX.h:705