Discontinuous Galerkin Library
#include "dg/algorithm.h"
Loading...
Searching...
No Matches
base_geometry.h
Go to the documentation of this file.
1#pragma once
2
3#include "grid.h"
4#include "tensor.h"
5
6namespace dg
7{
8
11
13template<class real_type>
14struct aRealGeometry2d : public aRealTopology<real_type,2>
15{
28 return do_compute_jacobian();
29 }
43 return do_compute_metric();
44 }
56 std::vector<thrust::host_vector<real_type> > map()const{
57 return do_compute_map();
58 }
60 virtual aRealGeometry2d* clone()const=0;
62 virtual ~aRealGeometry2d() = default;
63 protected:
65 using aRealTopology<real_type,2>::aRealTopology;
67 aRealGeometry2d( const aRealGeometry2d& src) = default;
69 aRealGeometry2d& operator=( const aRealGeometry2d& src) = default;
70 private:
71 virtual SparseTensor<thrust::host_vector<real_type> > do_compute_metric()const {
73 }
74 virtual SparseTensor<thrust::host_vector<real_type> > do_compute_jacobian()const {
76 }
77 virtual std::vector<thrust::host_vector<real_type> > do_compute_map()const{
78 std::vector<thrust::host_vector<real_type> > map(2);
79 map[0] = dg::evaluate(dg::cooX2d, *this);
80 map[1] = dg::evaluate(dg::cooY2d, *this);
81 return map;
82 }
83
84
85};
86
88template<class real_type>
89struct aRealGeometry3d : public aRealTopology<real_type,3>
90{
105 return do_compute_jacobian();
106 }
122 return do_compute_metric();
123 }
136 std::vector<thrust::host_vector<real_type> > map()const{
137 return do_compute_map();
138 }
140 virtual aRealGeometry3d* clone()const=0;
142 virtual ~aRealGeometry3d() = default;
143 protected:
145 using aRealTopology<real_type,3>::aRealTopology;
147 aRealGeometry3d( const aRealGeometry3d& src) = default;
150 private:
151 virtual SparseTensor<thrust::host_vector<real_type> > do_compute_metric()const {
153 }
154 virtual SparseTensor<thrust::host_vector<real_type> > do_compute_jacobian()const {
156 }
157 virtual std::vector<thrust::host_vector<real_type> > do_compute_map()const{
158 std::vector<thrust::host_vector<real_type> > map(3);
159 map[0] = dg::evaluate(dg::cooX3d, *this);
160 map[1] = dg::evaluate(dg::cooY3d, *this);
161 map[2] = dg::evaluate(dg::cooZ3d, *this);
162 return map;
163 }
164};
165
180template<class real_type>
181struct aRealProductGeometry3d : public aRealGeometry3d<real_type>
182{
194 return do_perp_grid();
195 }
197 virtual ~aRealProductGeometry3d() = default;
199 virtual aRealProductGeometry3d* clone()const=0;
200 protected:
201 using aRealGeometry3d<real_type>::aRealGeometry3d;
206 private:
207 virtual aRealGeometry2d<real_type>* do_perp_grid()const=0;
208};
209
215template<class real_type>
217{
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}){}
223
236 dg::aRealGeometry2d<real_type>(std::array{g.gx(), g.gy()}){}
238 virtual RealCartesianGrid2d<real_type>* clone()const override final{
239 return new RealCartesianGrid2d<real_type>(*this);
240 }
241 private:
242 virtual void do_set(std::array<unsigned,2> new_n, std::array<unsigned,2> new_N) override final{
244 }
245 virtual void do_set_pq( std::array<real_type,2> new_x0, std::array<real_type,2> new_x1) override final{
247 }
248 virtual void do_set( std::array<dg::bc,2> new_bcs) override final{
250 }
251};
252
256template<class real_type>
258{
263 RealCartesianGrid3d( real_type x0, real_type x1, real_type y0, real_type y1, real_type z0, real_type z1,
264 unsigned n, unsigned Nx, unsigned Ny, unsigned Nz,
265 bc bcx = PER, bc bcy = PER, bc bcz = PER):
266 dg::aRealProductGeometry3d<real_type>({x0,y0,z0},{x1,y1,z1},{n,n,1},{Nx,Ny,Nz},{bcx,bcy,bcz})
267 {}
268
282 dg::aRealProductGeometry3d<real_type>(std::array{g.gx(), g.gy(), g.gz()}){}
284 virtual RealCartesianGrid3d* clone()const override final{
285 return new RealCartesianGrid3d(*this);
286 }
287 private:
288 virtual RealCartesianGrid2d<real_type>* do_perp_grid() const override final{
289 return new RealCartesianGrid2d<real_type>(this->gx(), this->gy());
290 }
291 virtual void do_set(std::array<unsigned,3> new_n, std::array<unsigned,3> new_N) override final{
293 }
294 virtual void do_set_pq( std::array<real_type,3> new_x0, std::array<real_type,3> new_x1) override final{
296 }
297 virtual void do_set( std::array<dg::bc,3> new_bcs) override final{
299 }
300};
301
306template<class real_type>
308{
314 RealCylindricalGrid3d( real_type x0, real_type x1,
315 real_type y0, real_type y1, real_type z0, real_type z1,
316 unsigned n, unsigned Nx, unsigned Ny, unsigned Nz,
317 bc bcx = PER, bc bcy = PER, bc bcz = PER):
318 dg::aRealProductGeometry3d<real_type>({x0,y0,z0},{x1,y1,z1},{n,n,1},{Nx,Ny,Nz},{bcx,bcy,bcz})
319 {}
329 virtual RealCylindricalGrid3d* clone()const override final{
330 return new RealCylindricalGrid3d(*this);
331 }
332 private:
333 virtual RealCartesianGrid2d<real_type>* do_perp_grid() const override final{
334 return new RealCartesianGrid2d<real_type>(this->gx(), this->gy());
335 }
336 virtual SparseTensor<thrust::host_vector<real_type> > do_compute_metric()const override final{
337 SparseTensor<thrust::host_vector<real_type> > metric(*this);
338 thrust::host_vector<real_type> R = dg::evaluate(dg::cooX3d, *this);
339 for( unsigned i = 0; i<this->size(); i++)
340 R[i] = 1./R[i]/R[i];
341 metric.idx(2,2)=2;
342 metric.values().push_back( R);
343 return metric;
344 }
345 virtual void do_set(std::array<unsigned,3> new_n, std::array<unsigned,3> new_N) override final{
347 }
348 virtual void do_set_pq( std::array<real_type,3> new_x0, std::array<real_type,3> new_x1) override final{
350 }
351 virtual void do_set( std::array<dg::bc,3> new_bcs) override final{
353 }
354};
355
357
358//TODO With C++17 class type inference we could rethink these?
367#ifndef MPI_VERSION
368namespace x{
369using aGeometry2d = aGeometry2d ;
370using aGeometry3d = aGeometry3d ;
375}//namespace x
376#endif //MPI_VERSION
377
379
380} //namespace dg
base 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
@ x
x direction
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
three-dimensional Grid with Cylindrical metric
Definition base_geometry.h:308
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