21template<
class real_type,
size_t Nd>
25 unsigned right_size = 1, left_size = 1;
26 for(
unsigned u=0; u<coord; u++)
27 right_size*= g.
shape(u);
28 for(
unsigned u=coord+1; u<Nd; u++)
29 left_size *= g.
shape(u);
48template<
class real_type,
size_t Nd>
53 throw Error(
Message(
_ping_)<<
"coord>=Nd not allowed! You typed: "<<coord<<
" while Nd is "<<Nd);
55 g.
n(coord), g.
N(coord), g.
h(coord),
bc, dir);
56 detail::update_left_right( coord, dd, g);
69template<
class real_type,
size_t Nd>
74 throw Error(
Message(
_ping_)<<
"coord>=Nd not allowed! You typed: "<<coord<<
" while Nd is "<<Nd);
76 g.
n(coord), g.
N(coord), g.
h(coord),
bc);
77 detail::update_left_right( coord, dd, g);
class intended for the use in throw statements
Definition exceptions.h:83
small class holding a stringstream
Definition exceptions.h:29
#define _ping_
Definition exceptions.h:12
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
This is the namespace for all functions and classes defined and used by the discontinuous Galerkin li...
Ell Sparse Block Matrix format.
Definition sparseblockmat.h:46
void set_left_size(int new_left_size)
Set left_size = new_left_size;
Definition sparseblockmat.h:157
void set_right_size(int new_right_size)
Set right_size = new_right_size; set_default_range();
Definition sparseblockmat.h:152
An abstract base class for Nd-dimensional dG grids.
Definition grid.h:95
real_type h(unsigned u=0) const
Get grid constant for axis u.
Definition grid.h:256
unsigned n(unsigned u=0) const
Get number of polynomial coefficients for axis u.
Definition grid.h:262
unsigned N(unsigned u=0) const
Get number of cells for axis u.
Definition grid.h:265
unsigned shape(unsigned u=0) const
the total number of points of an axis
Definition grid.h:114