Discontinuous Galerkin Library
#include "dg/algorithm.h"
Loading...
Searching...
No Matches
transform.h
Go to the documentation of this file.
1#pragma once
2#include "multiply.h"
3#include "base_geometry.h"
4#include "weights.h"
5
6
7namespace dg
8{
10namespace detail{
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...>)
14{
15 return dg::blas1::evaluate( result, dg::equals(), f, map[I]...);
16}
17} //namespace detail
20
42template< class Functor, class Geometry>
43typename Geometry::host_vector pullback(
44 const Functor& f, const Geometry& g)
45{
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()>());
50 return result;
51}
52
71template<class Functor1, class Functor2, class container, class Geometry>
72void pushForwardPerp( const Functor1& vR, const Functor2& vZ,
73 container& vx, container& vy,
74 const Geometry& g)
75{
76 using host_vec = typename Geometry::host_vector;
77 host_vec out1 = pullback( vR, g);
78 host_vec out2 = pullback( vZ, g);
79 dg::tensor::multiply2d(g.jacobian(), out1, out2, out1, out2);
80 dg::assign( out1, vx);
81 dg::assign( out2, vy);
82}
83
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,
110 const Geometry& g)
111{
112 using host_vec = typename Geometry::host_vector;
113 host_vec out1 = pullback( vR, g);
114 host_vec out2 = pullback( vZ, g);
115 host_vec out3 = pullback( vPhi, g);
116 dg::tensor::multiply3d(g.jacobian(), out1, out2, out3, out1, out2, out3);
117 dg::assign( out1, vx);
118 dg::assign( out2, vy);
119 dg::assign( out3, vz);
120}
121
144template<class FunctorRR, class FunctorRZ, class FunctorZZ, class container, class Geometry>
145void pushForwardPerp( const FunctorRR& chiRR, const FunctorRZ& chiRZ, const FunctorZZ& chiZZ,
147 const Geometry& g)
148{
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);
153
154 const dg::SparseTensor<container> jac = g.jacobian();
155 std::vector<container> values( 5);
156 dg::assign( dg::evaluate( dg::zero,g), values[0]);
157 dg::assign( dg::evaluate( dg::one, g), values[1]);
158 dg::assign( chiRR_, values[2]);
159 dg::assign( chiRZ_, values[3]);
160 dg::assign( chiZZ_, values[4]);
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;
163 chi.idx(2,2)=1;
164 chi.values() = values;
165 //we do not need 3rd dimension here
166 container tmp00(jac.value(0,0)), tmp01(tmp00), tmp10(tmp00), tmp11(tmp00);
167 // multiply Chi*J^T -> tmp ( Matrix-Matrix multiplication: "line x column")
168 dg::tensor::multiply2d( chi, jac.value(0,0), jac.value(0,1), tmp00, tmp10);
169 dg::tensor::multiply2d( chi, jac.value(1,0), jac.value(1,1), tmp01, tmp11);
170 // multiply J * tmp -> Chi
171 dg::tensor::multiply2d( jac, tmp00, tmp10, chi.values()[2], chi.values()[3]);
172 dg::tensor::multiply2d( jac, tmp01, tmp11, chi.values()[3], chi.values()[4]);
173}
174
175namespace create{
178
179
180//Note that for the volume function to work properly all 2d grids must set the g_22 element to 1!!
181
191template< class Geometry>
192typename Geometry::host_vector volume( const Geometry& g)
193{
194 using host_vector = typename Geometry::host_vector;
195 host_vector vol = dg::tensor::volume(g.metric());
196 host_vector weights = dg::create::weights( g);
198 return vol;
199}
200
210template< class Geometry>
211typename Geometry::host_vector inv_volume( const Geometry& g)
212{
213 using host_vector = typename Geometry::host_vector;
214 using real_type = get_value_type<host_vector>;
215 host_vector vol = volume(g);
217 return vol;
218}
219
221}//namespace create
222
223} //namespace dg
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...
Definition functors.h:93
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.