Discontinuous Galerkin Library
#include "dg/algorithm.h"
Loading...
Searching...
No Matches
fem_weights.h
Go to the documentation of this file.
1#pragma once
2#include "weights.h"
3
8namespace dg {
9namespace create{
11namespace detail
12{
13template<class real_type>
14std::vector<real_type> fem_weights( unsigned nn)
15{
16 std::vector<real_type> x = dg::DLT<real_type>::abscissas(nn);
17 std::vector<real_type> w = x;
18 unsigned n = x.size();
19 if( n== 1)
20 w[0] = 2;
21 else
22 {
23 w[0] = 0.5*(x[1] - (x[n-1]-2));
24 w[n-1] = 0.5*((x[0]+2) - x[n-2]);
25 for( unsigned i=1; i<n-1; i++)
26 w[i] = 0.5*(x[i+1]-x[i-1]);
27 }
28 return w;
29}
30}//namespace detail
31// TODO Maybe generalize this into the BOX class?
33
36
53template<class real_type>
54thrust::host_vector<real_type> fem_weights( const RealGrid1d<real_type>& g)
55{
56 thrust::host_vector<real_type> v( g.size());
57 std::vector<real_type> w = detail::fem_weights<real_type>(g.n());
58 for( unsigned i=0; i<g.N(); i++)
59 for( unsigned j=0; j<g.n(); j++)
60 v[i*g.n() + j] = g.h()/2.*w[j];
61 return v;
62}
64template<class real_type>
65thrust::host_vector<real_type> fem_inv_weights( const RealGrid1d<real_type>& g)
66{
67 thrust::host_vector<real_type> v = fem_weights<real_type>( g);
68 for( unsigned i=0; i<g.size(); i++)
69 v[i] = 1./v[i];
70 return v;
71}
72
74template<class real_type>
75thrust::host_vector<real_type> fem_weights( const aRealTopology2d<real_type>& g)
76{
77 thrust::host_vector<real_type> v( g.size());
78 std::vector<real_type> wx = detail::fem_weights<real_type>(g.nx());
79 std::vector<real_type> wy = detail::fem_weights<real_type>(g.ny());
80 for( unsigned i=0; i<g.size(); i++)
81 v[i] = g.hx()*g.hy()/4.*
82 wx[i%g.nx()]*
83 wy[(i/(g.nx()*g.Nx()))%g.ny()];
84 return v;
85}
87template<class real_type>
88thrust::host_vector<real_type> fem_inv_weights( const aRealTopology2d<real_type>& g)
89{
90 thrust::host_vector<real_type> v = fem_weights<real_type>( g);
91 for( unsigned i=0; i<g.size(); i++)
92 v[i] = 1./v[i];
93 return v;
94}
95
97template<class real_type>
98thrust::host_vector<real_type> fem_weights( const aRealTopology3d<real_type>& g)
99{
100 thrust::host_vector<real_type> v( g.size());
101 std::vector<real_type> wx = detail::fem_weights<real_type>(g.nx());
102 std::vector<real_type> wy = detail::fem_weights<real_type>(g.ny());
103 std::vector<real_type> wz = detail::fem_weights<real_type>(g.nz());
104 for( unsigned i=0; i<g.size(); i++)
105 v[i] = g.hx()*g.hy()*g.hz()/8.*
106 wx[i%g.nx()]*
107 wy[(i/(g.nx()*g.Nx()))%g.ny()]*
108 wz[(i/(g.nx()*g.ny()*g.Nx()*g.Ny()))%g.nz()];
109 return v;
110}
111
113template<class real_type>
114thrust::host_vector<real_type> fem_inv_weights( const aRealTopology3d<real_type>& g)
115{
116 thrust::host_vector<real_type> v = fem_weights<real_type>( g);
117 for( unsigned i=0; i<g.size(); i++)
118 v[i] = 1./v[i];
119 return v;
120}
122}//namespace create
123}//namespace dg
@ x
x direction
thrust::host_vector< real_type > fem_inv_weights(const RealGrid1d< real_type > &g)
inverse finite element weight coefficients
Definition fem_weights.h:65
thrust::host_vector< real_type > fem_weights(const RealGrid1d< real_type > &g)
finite element weight coefficients
Definition fem_weights.h:54
This is the namespace for all functions and classes defined and used by the discontinuous Galerkin li...
static std::vector< real_type > abscissas(unsigned n)
Return Gauss-Legendre nodes on the interval [-1,1].
Definition dlt.h:27
The simplest implementation of aRealTopology.
Definition grid.h:710
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
real_type hy() const
Equivalent to h(1)
Definition grid.h:317
real_type hz() const
Equivalent to h(2)
Definition grid.h:320
unsigned nz() const
Equivalent to n(2)
Definition grid.h:330
real_type hx() const
Equivalent to h(0)
Definition grid.h:314
unsigned ny() const
Equivalent to n(1)
Definition grid.h:327
unsigned size() const
The total number of points.
Definition grid.h:532
unsigned n(unsigned u=0) const
Get number of polynomial coefficients for axis u.
Definition grid.h:262
unsigned Nx() const
Equivalent to N(0)
Definition grid.h:334
unsigned nx() const
Equivalent to n(0)
Definition grid.h:324
unsigned Ny() const
Equivalent to N(1)
Definition grid.h:337
unsigned N(unsigned u=0) const
Get number of cells for axis u.
Definition grid.h:265
Creation functions for integration weights and their inverse.