19template<
class real_type,
size_t Nd>
20RealGrid<real_type,Nd> local_global_grid(
unsigned coord,
21 const aRealMPITopology<real_type, Nd>& g)
24 std::array<RealGrid<real_type,1>,Nd> axes;
25 for(
unsigned u=0; u<Nd; u++)
26 axes[u] = g.local().axis(u);
27 axes[coord] = g.global().axis(coord);
28 return RealGrid<real_type,Nd>{axes};
49template<
class real_type,
size_t Nd>
54 detail::local_global_grid(coord, g),
bc, dir),
67template<
class real_type,
size_t Nd>
72 detail::local_global_grid(coord, g),
bc),
Convenience functions to create 2D derivatives.
Some utility functions for the dg::evaluate routines.
EllSparseBlockMat< real_type, thrust::host_vector > jump(unsigned coord, const aRealTopology< real_type, Nd > &g, dg::bc bc)
Create a jump matrix along given coordinate.
Definition derivatives.h:70
EllSparseBlockMat< real_type, thrust::host_vector > derivative(unsigned coord, const aRealTopology< real_type, Nd > &g, dg::bc bc, direction dir=centered)
Create a derivative along given coordinate.
Definition derivatives.h:49
bc
Switch between boundary conditions.
Definition enums.h:15
direction
Direction of a discrete derivative.
Definition enums.h:97
@ centered
centered derivative (cell to the left and right and current cell)
Definition enums.h:100
auto make_mpi_sparseblockmat(const EllSparseBlockMat< real_type, thrust::host_vector > &src, const ConversionPolicyRows &g_rows, const ConversionPolicyCols &g_cols)
Split given EllSparseBlockMat into computation and communication part.
Definition mpi_matrix.h:242
This is the namespace for all functions and classes defined and used by the discontinuous Galerkin li...
Distributed memory Sparse block matrix class, asynchronous communication.
Definition mpi_matrix.h:143
An abstract base class for MPI distributed Nd-dimensional dG grids.
Definition mpi_grid.h:91
RealMPIGrid< real_type, 1 > axis(unsigned u) const
An alias for "grid".
Definition mpi_grid.h:269
Useful typedefs of commonly used types.