Discontinuous Galerkin Library
#include "dg/algorithm.h"
Loading...
Searching...
No Matches
mpi_base_geometry.h
Go to the documentation of this file.
1#pragma once
2
3#include "mpi_grid.h"
4#include "base_geometry.h"
5#include "tensor.h"
6
7namespace dg
8{
9
12
16template<class real_type>
17struct aRealMPIGeometry2d : public aRealMPITopology2d<real_type>
18{
21 return do_compute_jacobian();
22 }
25 return do_compute_metric();
26 }
28 std::vector<MPI_Vector<thrust::host_vector<real_type>> > map()const{
29 return do_compute_map();
30 }
32 virtual aRealMPIGeometry2d* clone()const=0;
36 virtual ~aRealMPIGeometry2d() = default;
37 protected:
40 aRealMPIGeometry2d( const aRealMPIGeometry2d& src) = default;
43 private:
44 virtual SparseTensor<MPI_Vector<thrust::host_vector<real_type>> > do_compute_metric()const {
46 }
47 virtual SparseTensor<MPI_Vector<thrust::host_vector<real_type>> > do_compute_jacobian()const {
49 }
50 virtual std::vector<MPI_Vector<thrust::host_vector<real_type>> > do_compute_map()const{
51 std::vector<MPI_Vector<thrust::host_vector<real_type>>> map(2);
52 map[0] = dg::evaluate(dg::cooX2d, *this);
53 map[1] = dg::evaluate(dg::cooY2d, *this);
54 return map;
55 }
56};
57
61template<class real_type>
62struct aRealMPIGeometry3d : public aRealMPITopology3d<real_type>
63{
66 return do_compute_jacobian();
67 }
70 return do_compute_metric();
71 }
73 std::vector<MPI_Vector<thrust::host_vector<real_type>> > map()const{
74 return do_compute_map();
75 }
77 virtual aRealMPIGeometry3d* clone()const=0;
81 virtual ~aRealMPIGeometry3d() = default;
82 protected:
85 aRealMPIGeometry3d( const aRealMPIGeometry3d& src) = default;
88 private:
89 virtual SparseTensor<MPI_Vector<thrust::host_vector<real_type>> > do_compute_metric()const {
91 }
92 virtual SparseTensor<MPI_Vector<thrust::host_vector<real_type>> > do_compute_jacobian()const {
94 }
95 virtual std::vector<MPI_Vector<thrust::host_vector<real_type>> > do_compute_map()const{
96 std::vector<MPI_Vector<thrust::host_vector<real_type>>> map(3);
97 map[0] = dg::evaluate(dg::cooX3d, *this);
98 map[1] = dg::evaluate(dg::cooY3d, *this);
99 map[2] = dg::evaluate(dg::cooZ3d, *this);
100 return map;
101 }
102};
103
105template<class real_type>
107{
119 return do_perp_grid();
120 }
122 virtual ~aRealProductMPIGeometry3d() = default;
125 protected:
131 private:
132 virtual aRealMPIGeometry2d<real_type>* do_perp_grid()const=0;
133};
134
138template<class real_type>
140{
144 RealCartesianMPIGrid2d( real_type x0, real_type x1, real_type y0, real_type y1,
145 unsigned n, unsigned Nx, unsigned Ny, MPI_Comm comm):
146 aRealMPIGeometry2d<real_type>( {x0,y0},{x1,y1}, {n,n}, {Nx,Ny}, {dg::PER, dg::PER},
148 {}
149
153 RealCartesianMPIGrid2d( real_type x0, real_type x1, real_type y0, real_type y1,
154 unsigned n, unsigned Nx, unsigned Ny, bc bcx, bc bcy, MPI_Comm comm):
155 aRealMPIGeometry2d<real_type>( {x0,y0},{x1,y1}, {n,n}, {Nx,Ny}, {bcx, bcy},
157 {}
165 aRealMPIGeometry2d<real_type>( std::array{g.gx(), g.gy()})
166 {}
167 virtual RealCartesianMPIGrid2d* clone()const override final{return new RealCartesianMPIGrid2d(*this);}
168 virtual RealCartesianGrid2d<real_type>* global_geometry()const override final{
170 this->global().gx(), this->global().gy());
171 }
172 private:
173 virtual void do_set(std::array<unsigned,2> new_n, std::array<unsigned,2> new_N) override final{
175 }
176 virtual void do_set_pq( std::array<real_type,2> new_x0, std::array<real_type,2> new_x1) override final{
178 }
179 virtual void do_set( std::array<dg::bc,2> new_bcs) override final{
181 }
182
183};
184
188template<class real_type>
190{
195 RealCartesianMPIGrid3d( real_type x0, real_type x1, real_type y0, real_type y1, real_type z0, real_type z1,
196 unsigned n, unsigned Nx, unsigned Ny, unsigned Nz, MPI_Comm comm):
197 aRealProductMPIGeometry3d<real_type>(
198 {x0,y0,z0},{x1,y1,z1}, {n,n,1}, {Nx,Ny,Nz}, {dg::PER, dg::PER,dg::PER},
200
204 RealCartesianMPIGrid3d( real_type x0, real_type x1, real_type y0, real_type y1, real_type z0, real_type z1,
205 unsigned n, unsigned Nx, unsigned Ny, unsigned Nz, bc bcx, bc bcy, bc bcz, MPI_Comm comm):
206 aRealProductMPIGeometry3d<real_type>(
207 {x0,y0,z0},{x1,y1,z1}, {n,n,1}, {Nx,Ny,Nz}, {bcx, bcy, bcz},
209
213 aRealProductMPIGeometry3d<real_type>( std::array{g.gx(), g.gy(), g.gz()}){}
214 virtual RealCartesianMPIGrid3d* clone()const override final{
215 return new RealCartesianMPIGrid3d(*this);
216 }
222 virtual RealCartesianGrid3d<real_type>* global_geometry()const override final{
224 this->global().gx(), this->global().gy(), this->global().gz());
225 }
226
227 private:
228 virtual RealCartesianMPIGrid2d<real_type>* do_perp_grid()const override final{
229 return new RealCartesianMPIGrid2d<real_type>( this->gx(), this->gy());
230 }
231 virtual void do_set(std::array<unsigned,3> new_n, std::array<unsigned,3> new_N)override final{
233 }
234 virtual void do_set_pq( std::array<real_type,3> new_x0, std::array<real_type,3> new_x1) override final{
236 }
237 virtual void do_set( std::array<dg::bc,3> new_bcs) override final{
239 }
240};
241
245template<class real_type>
247{
254 RealCylindricalMPIGrid3d( 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, bc bcy, bc bcz, MPI_Comm comm):
261 RealCylindricalMPIGrid3d( 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, bc bcy, MPI_Comm comm):
263
266
267 virtual RealCylindricalMPIGrid3d<real_type>* clone()const override final{
268 return new RealCylindricalMPIGrid3d(*this);
269 }
270 virtual RealCylindricalGrid3d<real_type>* global_geometry()const override final{
272 this->global().gx(), this->global().gy(), this->global().gz());
273 }
274 private:
275 virtual RealCartesianMPIGrid2d<real_type>* do_perp_grid()const override final{
276 return new RealCartesianMPIGrid2d<real_type>( this->gx(), this->gy());
277 }
278 virtual SparseTensor<MPI_Vector<thrust::host_vector<real_type>> > do_compute_metric()const override final{
279 SparseTensor<MPI_Vector<thrust::host_vector<real_type>>> metric(*this);
280 MPI_Vector<thrust::host_vector<real_type>> R = dg::evaluate(dg::cooX3d, *this);
281 for( unsigned i = 0; i<this->local().size(); i++)
282 R.data()[i] = 1./R.data()[i]/R.data()[i];
283 metric.idx(2,2)=2;
284 metric.values().push_back(R);
285 return metric;
286 }
287 virtual void do_set(std::array<unsigned,3> new_n, std::array<unsigned,3> new_N) override final{
289 }
290 virtual void do_set_pq( std::array<real_type,3> new_x0, std::array<real_type,3> new_x1) override final{
292 }
293 virtual void do_set( std::array<dg::bc,3> new_bcs) override final{
295 }
296};
297
307namespace x{
314}//namespace x
316
317}//namespace dg
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
dg::aRealMPITopology< T, 3 > aRealMPITopology3d
Definition mpi_grid.h:892
dg::aRealMPITopology< T, 2 > aRealMPITopology2d
Definition mpi_grid.h:890
dg::aRealMPIGeometry3d< double > aMPIGeometry3d
Definition mpi_base_geometry.h:302
dg::aRealProductMPIGeometry3d< double > aProductMPIGeometry3d
Definition mpi_base_geometry.h:303
dg::RealCartesianMPIGrid3d< double > CartesianMPIGrid3d
Definition mpi_base_geometry.h:305
dg::RealCartesianMPIGrid2d< double > CartesianMPIGrid2d
Definition mpi_base_geometry.h:304
dg::RealCylindricalMPIGrid3d< double > CylindricalMPIGrid3d
Definition mpi_base_geometry.h:306
dg::aRealMPIGeometry2d< double > aMPIGeometry2d
Definition mpi_base_geometry.h:301
std::array< MPI_Comm, Nd > mpi_cart_split_as(MPI_Comm comm)
Same as mpi_cart_split but differen return type.
Definition mpi_kron.h:272
MPI Grid objects.
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
Three-dimensional Grid with Cartesian metric.
Definition base_geometry.h:258
The mpi version of RealCartesianGrid2d.
Definition mpi_base_geometry.h:140
virtual RealCartesianMPIGrid2d * clone() const override final
Geometries are cloneable.
Definition mpi_base_geometry.h:167
RealCartesianMPIGrid2d(real_type x0, real_type x1, real_type y0, real_type y1, unsigned n, unsigned Nx, unsigned Ny, bc bcx, bc bcy, MPI_Comm comm)
Construct with equal polynomial coefficients.
Definition mpi_base_geometry.h:153
RealCartesianMPIGrid2d(real_type x0, real_type x1, real_type y0, real_type y1, unsigned n, unsigned Nx, unsigned Ny, MPI_Comm comm)
Construct with equal polynomial coefficients.
Definition mpi_base_geometry.h:144
virtual RealCartesianGrid2d< real_type > * global_geometry() const override final
Construct the global non-MPI geometry.
Definition mpi_base_geometry.h:168
RealCartesianMPIGrid2d(RealMPIGrid1d< real_type > gx, RealMPIGrid1d< real_type > gy)
Construct from given 1d grids.
Definition mpi_base_geometry.h:159
RealCartesianMPIGrid2d(const dg::RealMPIGrid2d< real_type > &g)
Implicit type conversion from MPIGrid2d.
Definition mpi_base_geometry.h:164
The mpi version of RealCartesianGrid3d.
Definition mpi_base_geometry.h:190
RealCartesianMPIGrid3d(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, MPI_Comm comm)
Construct with equal polynomial coefficients.
Definition mpi_base_geometry.h:195
virtual RealCartesianMPIGrid3d * clone() const override final
Geometries are cloneable.
Definition mpi_base_geometry.h:214
RealCartesianMPIGrid3d(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, bc bcy, bc bcz, MPI_Comm comm)
Construct with equal polynomial coefficients.
Definition mpi_base_geometry.h:204
virtual RealCartesianGrid3d< real_type > * global_geometry() const override final
Construct the global non-MPI geometry.
Definition mpi_base_geometry.h:222
RealCartesianMPIGrid3d(RealMPIGrid1d< real_type > gx, RealMPIGrid1d< real_type > gy, RealMPIGrid1d< real_type > gz)
Construct from given 1d grids.
Definition mpi_base_geometry.h:218
RealCartesianMPIGrid3d(const dg::RealMPIGrid3d< real_type > &g)
Implicit type conversion from RealMPIGrid3d.
Definition mpi_base_geometry.h:212
three-dimensional Grid with Cylindrical metric
Definition base_geometry.h:308
the mpi version of RealCylindricalGrid3d
Definition mpi_base_geometry.h:247
virtual RealCylindricalGrid3d< real_type > * global_geometry() const override final
Construct the global non-MPI geometry.
Definition mpi_base_geometry.h:270
RealCylindricalMPIGrid3d(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, bc bcy, bc bcz, MPI_Comm comm)
Construct with equal polynomial coefficients.
Definition mpi_base_geometry.h:254
virtual RealCylindricalMPIGrid3d< real_type > * clone() const override final
Geometries are cloneable.
Definition mpi_base_geometry.h:267
RealCylindricalMPIGrid3d(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, bc bcy, MPI_Comm comm)
Construct with equal polynomial coefficients.
Definition mpi_base_geometry.h:261
RealCylindricalMPIGrid3d(RealMPIGrid1d< real_type > gx, RealMPIGrid1d< real_type > gy, RealMPIGrid1d< real_type > gz)
Construct from given 1d grids.
Definition mpi_base_geometry.h:265
The simplest implementation of aRealMPITopology3d.
Definition mpi_grid.h:783
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
This is the abstract interface class for a three-dimensional Geometry.
Definition base_geometry.h:90
This is the abstract interface class for a two-dimensional Geometry.
Definition mpi_base_geometry.h:18
virtual aRealMPIGeometry2d * clone() const =0
Geometries are cloneable.
SparseTensor< MPI_Vector< thrust::host_vector< real_type > > > jacobian() const
The Jacobian of the coordinate transformation from physical to computational space.
Definition mpi_base_geometry.h:20
aRealMPIGeometry2d & operator=(const aRealMPIGeometry2d &src)=default
aRealMPIGeometry2d(const aRealMPIGeometry2d &src)=default
SparseTensor< MPI_Vector< thrust::host_vector< real_type > > > metric() const
The (inverse) metric tensor of the coordinate system.
Definition mpi_base_geometry.h:24
std::vector< MPI_Vector< thrust::host_vector< real_type > > > map() const
The coordinate map from computational to physical space.
Definition mpi_base_geometry.h:28
virtual ~aRealMPIGeometry2d()=default
allow deletion through base class pointer
virtual aRealGeometry2d< real_type > * global_geometry() const =0
Construct the global non-MPI geometry.
This is the abstract interface class for a three-dimensional MPIGeometry.
Definition mpi_base_geometry.h:63
aRealMPIGeometry3d(const aRealMPIGeometry3d &src)=default
aRealMPIGeometry3d & operator=(const aRealMPIGeometry3d &src)=default
SparseTensor< MPI_Vector< thrust::host_vector< real_type > > > jacobian() const
The Jacobian of the coordinate transformation from physical to computational space.
Definition mpi_base_geometry.h:65
virtual aRealMPIGeometry3d * clone() const =0
Geometries are cloneable.
virtual aRealGeometry3d< real_type > * global_geometry() const =0
Construct the global non-MPI geometry.
SparseTensor< MPI_Vector< thrust::host_vector< real_type > > > metric() const
The (inverse) metric tensor of the coordinate system.
Definition mpi_base_geometry.h:69
virtual ~aRealMPIGeometry3d()=default
allow deletion through base class pointer
std::vector< MPI_Vector< thrust::host_vector< real_type > > > map() const
The coordinate map from computational to physical space.
Definition mpi_base_geometry.h:73
An abstract base class for MPI distributed Nd-dimensional dG grids.
Definition mpi_grid.h:91
RealMPIGrid< real_type, 1 > gz() const
Equivalent to grid(2)
Definition mpi_grid.h:364
unsigned Ny() const
Equivalent to N(1)
Definition mpi_grid.h:335
dg::bc bcx() const
Equivalent to bc(0)
Definition mpi_grid.h:342
dg::bc bcy() const
Equivalent to bc(1)
Definition mpi_grid.h:345
real_type z1() const
Equivalent to q(2)
Definition mpi_grid.h:298
unsigned n(unsigned u=0) const
Get number of polynomial coefficients for axis u.
Definition mpi_grid.h:228
dg::bc bcz() const
Equivalent to bc(2)
Definition mpi_grid.h:348
std::enable_if_t< Md==1, MPI_Comm > comm() const
Equivalent to comm(0)
Definition mpi_grid.h:242
unsigned Nx() const
Equivalent to N(0)
Definition mpi_grid.h:332
real_type y0() const
Equivalent to p(2)
Definition mpi_grid.h:289
const RealGrid< real_type, Nd > & global() const
The global grid as a shared memory grid.
Definition mpi_grid.h:279
virtual void do_set(std::array< unsigned, Nd > new_n, std::array< unsigned, Nd > new_N)=0
Set the number of polynomials and cells.
real_type y1() const
Equivalent to q(0)
Definition mpi_grid.h:292
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.
RealMPIGrid< real_type, 1 > gy() const
Equivalent to grid(1)
Definition mpi_grid.h:358
real_type z0() const
Equivalent to q(1)
Definition mpi_grid.h:295
RealMPIGrid< real_type, 1 > gx() const
Equivalent to grid(0)
Definition mpi_grid.h:352
real_type x0() const
Equivalent to p(0)
Definition mpi_grid.h:283
unsigned Nz() const
Equivalent to N(2)
Definition mpi_grid.h:338
const RealGrid< real_type, Nd > & local() const
The local grid as a shared memory grid.
Definition mpi_grid.h:274
real_type x1() const
Equivalent to p(1)
Definition mpi_grid.h:286
A 3d product space Geometry .
Definition mpi_base_geometry.h:107
aRealProductMPIGeometry3d & operator=(const aRealProductMPIGeometry3d &src)=default
virtual ~aRealProductMPIGeometry3d()=default
allow deletion through base class pointer
virtual aRealProductMPIGeometry3d * clone() const =0
Geometries are cloneable.
aRealProductMPIGeometry3d(const aRealProductMPIGeometry3d &src)=default
aRealMPIGeometry2d< real_type > * perp_grid() const
The grid made up by the first two dimensions.
Definition mpi_base_geometry.h:118