Discontinuous Galerkin Library
#include "dg/algorithm.h"
Loading...
Searching...
No Matches
weights.h
Go to the documentation of this file.
1#pragma once
2
3#include <thrust/host_vector.h>
4#include "grid.h"
5#include "../functors.h"
6#include "../blas1.h"
7#include "../enums.h"
8
14namespace dg{
15namespace create{
17template< class Topology, size_t N, size_t ...I>
18auto do_weights( const Topology& g, std::array<bool, N> coo, std::index_sequence<I...>)
19{
20 std::array< decltype(g.weights(0)),N> weights;
21 for( unsigned u=0; u<N; u++)
22 weights[u] = g.weights(u);
23 for( unsigned u=0; u<N; u++)
24 if( !coo[u])
26 return dg::kronecker( dg::Product(), weights[I]...);
27}
28template< class Topology, size_t ...I>
29auto do_weights( const Topology& g, std::index_sequence<I...>)
30{
31 return dg::kronecker( dg::Product(), g.weights(I)...);
32}
33
35
38
39
61template<class Topology>
62auto weights( const Topology& g)
63{
64 return do_weights( g, std::make_index_sequence<Topology::ndim()>());
65}
66
90template<class Topology>
91auto weights( const Topology& g, std::array<bool,Topology::ndim()> remains)
92{
93 return do_weights( g, remains, std::make_index_sequence<Topology::ndim()>());
94}
95
96
106template<class Topology>
107auto inv_weights( const Topology& g)
108{
109 auto v = weights( g);
111 return v;
112}
113
114
116}//namespace create
117}//namespace dg
enums
base topology classes
auto kronecker(Functor &&f, const ContainerType &x0, const ContainerTypes &... xs)
Memory allocating version of dg::blas1::kronecker
Definition blas1.h:857
void copy(const ContainerTypeIn &source, ContainerTypeOut &target)
Definition blas1.h:243
void transform(const ContainerType1 &x, ContainerType &y, UnaryOp op)
Definition blas1.h:585
auto inv_weights(const Topology &g)
Inverse nodal weight coefficients.
Definition weights.h:107
auto weights(const Topology &g)
Nodal weight coefficients.
Definition weights.h:62
This is the namespace for all functions and classes defined and used by the discontinuous Galerkin li...
Definition functors.h:93
Definition subroutines.h:100