Discontinuous Galerkin Library
#include "dg/algorithm.h"
Loading...
Searching...
No Matches
derivatives.h
Go to the documentation of this file.
1#pragma once
2
3#include "grid.h"
4#include "dx.h"
5
10namespace dg{
11
12 // Check derivativesT.h for more overloads
13
17namespace create{
19namespace detail
20{
21template<class real_type, size_t Nd>
22void update_left_right( unsigned coord, EllSparseBlockMat<real_type, thrust::host_vector>& mat, const aRealTopology<real_type,Nd>& g)
23{
24 // Also used by fast_interpolation ...
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);
30 mat.set_right_size( right_size);
31 mat.set_left_size( left_size);
32}
33}
35
38
48template<class real_type, size_t Nd>
51{
52 if( coord >= 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);
57 return dd;
58}
59
69template<class real_type, size_t Nd>
72{
73 if( coord >= 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);
78 return dd;
79}
80
81
83
84} //namespace create
85
86} //namespace dg
87
class intended for the use in throw statements
Definition exceptions.h:83
small class holding a stringstream
Definition exceptions.h:29
Simple 1d derivatives.
#define _ping_
Definition exceptions.h:12
base topology classes
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