Discontinuous Galerkin Library
#include "dg/algorithm.h"
Loading...
Searching...
No Matches
derivativesT.h
Go to the documentation of this file.
1#pragma once
2// must be included after both derivatives.h, derivativesX.h and mpi_derivatives.h are included
3// else there is a problem with ADL
4// https://stackoverflow.com/questions/40875453/declare-function-after-template-defined
8namespace dg{
9namespace create{
13template<class Topology>
14auto dx( const Topology& g, dg::bc bc, dg::direction dir = centered)
15{
16 static_assert( Topology::ndim() > 0 );
17 return derivative( 0, g, bc, dir);
18}
20template<class Topology>
21auto dy( const Topology& g, dg::bc bc, dg::direction dir = centered)
22{
23 static_assert( Topology::ndim() > 1 );
24 return derivative( 1, g, bc, dir);
25}
27template<class Topology>
28auto dz( const Topology& g, dg::bc bc, dg::direction dir = centered)
29{
30 static_assert( Topology::ndim() > 2 );
31 return derivative( 2, g, bc, dir);
32}
33
35template<class Topology>
36auto jumpX( const Topology& g, bc bc)
37{
38 static_assert( Topology::ndim() > 0 );
39 return jump( 0, g, bc);
40}
42template<class Topology>
43auto jumpY( const Topology& g, bc bc)
44{
45 static_assert( Topology::ndim() > 1 );
46 return jump( 1, g, bc);
47}
49template<class Topology>
50auto jumpZ( const Topology& g, bc bc)
51{
52 static_assert( Topology::ndim() > 2 );
53 return jump( 2, g, bc);
54}
56template<class Topology>
57auto derivative( unsigned coord, const Topology& g, direction dir = centered)
58{
59 return derivative( coord, g, g.bcx(), dir);
60}
62template<class Topology>
63auto jump( unsigned coord, const Topology& g)
64{
65 return jump( coord, g, g.bcx());
66}
68template<class Topology>
69auto dx( const Topology& g, dg::direction dir = centered)
70{
71 static_assert( Topology::ndim() > 0 );
72 return derivative( 0, g, g.bcx(), dir);
73}
75template<class Topology>
76auto dy( const Topology& g, dg::direction dir = centered)
77{
78 static_assert( Topology::ndim() > 1 );
79 return derivative( 1, g, g.bcy(), dir);
80}
82template<class Topology>
83auto dz( const Topology& g, dg::direction dir = centered)
84{
85 static_assert( Topology::ndim() > 2 );
86 return derivative( 2, g, g.bcz(), dir);
87}
88
90template<class Topology>
91auto jumpX( const Topology& g)
92{
93 static_assert( Topology::ndim() > 0 );
94 return jump( 0, g, g.bcx());
95}
97template<class Topology>
98auto jumpY( const Topology& g)
99{
100 static_assert( Topology::ndim() > 1 );
101 return jump( 1, g, g.bcy());
102}
104template<class Topology>
105auto jumpZ( const Topology& g)
106{
107 static_assert( Topology::ndim() > 2 );
108 return jump( 2, g, g.bcz());
109}
111} //namespace create
112}//namespace dg
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...