Discontinuous Galerkin Library
#include "dg/algorithm.h"
Loading...
Searching...
No Matches
mpi_derivatives.h
Go to the documentation of this file.
1#pragma once
2
6#include "functions.h"
7#include "derivatives.h"
8#include "mpi_grid.h"
9
10namespace dg{
11
12namespace create{
13
15namespace detail{
16
17
18// Also used by fast_interpolation
19template<class real_type, size_t Nd>
20RealGrid<real_type,Nd> local_global_grid( unsigned coord,
21 const aRealMPITopology<real_type, Nd>& g)
22{
23 // global grid in coord, local grids else
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};
29}
30
31} //namespace detail
32
36//
37
38
49template<class real_type, size_t Nd>
52{
54 detail::local_global_grid(coord, g), bc, dir),
55 g.axis(coord), g.axis(coord));
56}
57
67template<class real_type, size_t Nd>
70{
72 detail::local_global_grid(coord, g), bc),
73 g.axis(coord), g.axis(coord));
74}
75
77
78
79} //namespace create
80} //namespace dg
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
MPI Grid objects.
MPI matrix classes.
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.