13template<
class Topology>
16 static_assert( Topology::ndim() > 0 );
20template<
class Topology>
23 static_assert( Topology::ndim() > 1 );
27template<
class Topology>
30 static_assert( Topology::ndim() > 2 );
35template<
class Topology>
38 static_assert( Topology::ndim() > 0 );
42template<
class Topology>
45 static_assert( Topology::ndim() > 1 );
49template<
class Topology>
52 static_assert( Topology::ndim() > 2 );
56template<
class Topology>
62template<
class Topology>
63auto jump(
unsigned coord,
const Topology& g)
65 return jump( coord, g, g.bcx());
68template<
class Topology>
71 static_assert( Topology::ndim() > 0 );
75template<
class Topology>
78 static_assert( Topology::ndim() > 1 );
82template<
class Topology>
85 static_assert( Topology::ndim() > 2 );
90template<
class Topology>
93 static_assert( Topology::ndim() > 0 );
94 return jump( 0, g, g.bcx());
97template<
class Topology>
100 static_assert( Topology::ndim() > 1 );
101 return jump( 1, g, g.bcy());
104template<
class Topology>
107 static_assert( Topology::ndim() > 2 );
108 return jump( 2, g, g.bcz());
auto dx(const Topology &g, dg::bc bc, dg::direction dir=centered)
Definition derivativesT.h:14
auto dy(const Topology &g, dg::bc bc, dg::direction dir=centered)
Short for dg::create::derivative( 1, g, bc, dir);
Definition derivativesT.h:21
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
auto jumpY(const Topology &g, bc bc)
Short for dg::create::jump( 1, g, bc);
Definition derivativesT.h:43
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
auto jumpZ(const Topology &g, bc bc)
Short for dg::create::jump( 2, g, bc);
Definition derivativesT.h:50
direction
Direction of a discrete derivative.
Definition enums.h:97
auto dz(const Topology &g, dg::bc bc, dg::direction dir=centered)
Short for dg::create::derivative( 2, g, bc, dir);
Definition derivativesT.h:28
auto jumpX(const Topology &g, bc bc)
Short for dg::create::jump( 0, g, bc);
Definition derivativesT.h:36
@ 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...