11template<
class Vector,
class Functor,
class RecursiveVector,
size_t ...I>
12auto do_pullback( Vector& result, Functor f,
const RecursiveVector& map,
13 std::index_sequence<I...>)
42template<
class Functor,
class Geometry>
44 const Functor& f,
const Geometry& g)
46 const std::vector<typename Geometry::host_vector >& map = g.map();
47 typename Geometry::host_vector result( map[0]);
48 detail::do_pullback( result, f, map,
49 std::make_index_sequence<Geometry::ndim()>());
71template<
class Functor1,
class Functor2,
class container,
class Geometry>
73 container& vx, container& vy,
76 using host_vec =
typename Geometry::host_vector;
107template<
class Functor1,
class Functor2,
class Functor3,
class container,
class Geometry>
108void pushForward(
const Functor1& vR,
const Functor2& vZ,
const Functor3& vPhi,
109 container& vx, container& vy, container& vz,
112 using host_vec =
typename Geometry::host_vector;
144template<
class FunctorRR,
class FunctorRZ,
class FunctorZZ,
class container,
class Geometry>
145void pushForwardPerp(
const FunctorRR& chiRR,
const FunctorRZ& chiRZ,
const FunctorZZ& chiZZ,
149 using host_vec =
typename Geometry::host_vector;
150 host_vec chiRR_ =
pullback( chiRR, g);
151 host_vec chiRZ_ =
pullback( chiRZ, g);
152 host_vec chiZZ_ =
pullback( chiZZ, g);
155 std::vector<container> values( 5);
161 chi.
idx(0,0)=2, chi.
idx(0,1)=chi.
idx(1,0)=3, chi.
idx(1,1)=4;
162 chi.
idx(2,0)=chi.
idx(2,1)=chi.
idx(0,2)=chi.
idx(1,2) = 0;
166 container tmp00(jac.
value(0,0)), tmp01(tmp00), tmp10(tmp00), tmp11(tmp00);
191template<
class Geometry>
192typename Geometry::host_vector
volume(
const Geometry& g)
194 using host_vector =
typename Geometry::host_vector;
210template<
class Geometry>
213 using host_vector =
typename Geometry::host_vector;
215 host_vector vol =
volume(g);
DG_DEVICE T one(T x, Ts ...xs)
Definition functions.h:24
DG_DEVICE T zero(T x, Ts ...xs)
This enum can be used in dg::evaluate.
Definition functions.h:19
void pointwiseDot(value_type alpha, const ContainerType1 &x1, const ContainerType2 &x2, value_type1 beta, ContainerType &y)
Definition blas1.h:406
void transform(const ContainerType1 &x, ContainerType &y, UnaryOp op)
Definition blas1.h:585
void evaluate(ContainerType &y, BinarySubroutine f, Functor g, const ContainerType0 &x0, const ContainerTypes &...xs)
Definition blas1.h:612
void assign(const from_ContainerType &from, ContainerType &to, Params &&... ps)
Generic way to assign the contents of a from_ContainerType object to a ContainerType object optionall...
Definition blas1.h:767
typename TensorTraits< std::decay_t< Vector > >::value_type get_value_type
Definition tensor_traits.h:45
auto weights(const Topology &g)
Nodal weight coefficients.
Definition weights.h:62
auto evaluate(Functor &&f, const Topology &g)
Evaluate a function on grid coordinates
Definition evaluation.h:74
Geometry::host_vector pullback(const Functor &f, const Geometry &g)
Definition transform.h:43
Geometry::host_vector volume(const Geometry &g)
Create the volume element on the grid (including weights!!)
Definition transform.h:192
Geometry::host_vector inv_volume(const Geometry &g)
Create the inverse volume element on the grid (including weights!!)
Definition transform.h:211
void pushForwardPerp(const Functor1 &vR, const Functor2 &vZ, container &vx, container &vy, const Geometry &g)
Definition transform.h:72
void pushForward(const Functor1 &vR, const Functor2 &vZ, const Functor3 &vPhi, container &vx, container &vy, container &vz, const Geometry &g)
Definition transform.h:108
void multiply2d(const ContainerTypeL &lambda, const SparseTensor< ContainerType0 > &t, const ContainerType1 &in0, const ContainerType2 &in1, const ContainerTypeM &mu, ContainerType3 &out0, ContainerType4 &out1)
Definition multiply.h:215
ContainerType volume(const SparseTensor< ContainerType > &t)
Definition multiply.h:389
void multiply3d(const ContainerTypeL &lambda, const SparseTensor< ContainerType0 > &t, const ContainerType1 &in0, const ContainerType2 &in1, const ContainerType3 &in2, const ContainerTypeM &mu, ContainerType4 &out0, ContainerType5 &out1, ContainerType6 &out2)
Definition multiply.h:240
This is the namespace for all functions and classes defined and used by the discontinuous Galerkin li...
Class for 2x2 and 3x3 matrices sharing elements.
Definition tensor.h:51
int idx(unsigned i, unsigned j) const
read index into the values array at the given position
Definition tensor.h:119
std::vector< container > & values()
Return write access to the values array.
Definition tensor.h:151
const container & value(size_t i, size_t j) const
Read access the underlying container.
Definition tensor.h:141
Definition subroutines.h:22
Creation functions for integration weights and their inverse.