41template<
class Geometry,
class Matrix,
class Container >
68 template<
class ...Params>
72 *
this =
Advection( std::forward<Params>( ps)...);
87 template<
class ContainerType0,
class ContainerType1,
class ContainerType2,
class ContainerType3>
88 void upwind(
value_type alpha,
const ContainerType0& vx,
const ContainerType1& vy,
const ContainerType2& f,
value_type beta, ContainerType3& result);
91 Container m_temp0, m_temp1;
92 Matrix m_dxf, m_dyf, m_dxb, m_dyb;
96template<
class Geometry,
class Matrix,
class Container>
100template<
class Geometry,
class Matrix,
class Container>
110template<
class Geometry,
class Matrix,
class Container>
111template<
class ContainerType0,
class ContainerType1,
class ContainerType2,
class ContainerType3>
Function discretization routines.
DG_DEVICE T one(T x, Ts ...xs)
Definition functions.h:24
ContainerType construct(const from_ContainerType &from, Params &&... ps)
Generic way to construct an object of ContainerType given a from_ContainerType object and optional ad...
Definition blas1.h:792
void evaluate(ContainerType &y, BinarySubroutine f, Functor g, const ContainerType0 &x0, const ContainerTypes &...xs)
Definition blas1.h:612
void symv(MatrixType &&M, const ContainerType1 &x, ContainerType2 &y)
Definition blas2.h:325
bc
Switch between boundary conditions.
Definition enums.h:15
@ backward
backward derivative (cell to the left and current cell)
Definition enums.h:99
@ forward
forward derivative (cell to the right and current cell)
Definition enums.h:98
typename TensorTraits< std::decay_t< Vector > >::value_type get_value_type
Definition tensor_traits.h:45
auto evaluate(Functor &&f, const Topology &g)
Evaluate a function on grid coordinates
Definition evaluation.h:74
Function discretization routines for mpi vectors.
This is the namespace for all functions and classes defined and used by the discontinuous Galerkin li...
Upwind discretization of advection operator
Definition advection.h:43
void upwind(value_type alpha, const ContainerType0 &vx, const ContainerType1 &vy, const ContainerType2 &f, value_type beta, ContainerType3 &result)
Compute Advection term .
Container container_type
Definition advection.h:46
void construct(Params &&...ps)
Perfect forward parameters to one of the constructors.
Definition advection.h:69
Advection(const Geometry &g, bc bcx, bc bcy)
Create Advection on a grid using different boundary conditions.
get_value_type< Container > value_type
Definition advection.h:47
Advection(const Geometry &g)
Create Arakawa on a grid.
Matrix matrix_type
Definition advection.h:45
Geometry geometry_type
Definition advection.h:44
Definition functors.h:330