Discontinuous Galerkin Library
#include "dg/algorithm.h"
Loading...
Searching...
No Matches
interpolationX.h
Go to the documentation of this file.
1#pragma once
2//#include <iomanip>
3
4#include "interpolation.h"
5#include "gridX.h"
6
12namespace dg{
13
14namespace create{
17
26template<class real_type>
28{
29 return interpolation( x, g.grid());
30}
31
43template<class real_type>
44dg::SparseMatrix<int, real_type, thrust::host_vector> interpolation( const thrust::host_vector<real_type>& x, const thrust::host_vector<real_type>& y, const aRealTopologyX2d<real_type>& g , dg::bc globalbcz = dg::NEU)
45{
46 return interpolation( x,y, g.grid(), globalbcz);
47}
48
49
50
64template<class real_type>
65dg::SparseMatrix<int, real_type, thrust::host_vector> interpolation( const thrust::host_vector<real_type>& x, const thrust::host_vector<real_type>& y, const thrust::host_vector<real_type>& z, const aRealTopologyX3d<real_type>& g, dg::bc globalbcz= dg::NEU)
66{
67 return interpolation( x,y,z, g.grid(), globalbcz);
68}
69
82template<class real_type>
99template<class real_type>
104
117template<class real_type>
123
132template<class real_type>
133thrust::host_vector<real_type> forward_transform( const thrust::host_vector<real_type>& in, const aRealTopologyX2d<real_type>& g)
134{
135 return forward_transform( in, g.grid());
136}
137}//namespace create
138
159template<class real_type>
160real_type interpolate(
161 dg::space sp,
162 const thrust::host_vector<real_type>& v,
163 real_type x, real_type y,
165 dg::bc bcx = dg::NEU, dg::bc bcy = dg::NEU )
166{
167 return interpolate( sp, v, x, y, g.grid(), bcx, bcy);
168}
169
170} //namespace dg
base X-point topology classes
bc
Switch between boundary conditions.
Definition enums.h:15
space
Space of DG coefficients.
Definition enums.h:164
@ z
z direction
@ NEU
Neumann on both boundaries.
Definition enums.h:20
@ y
y direction
@ x
x direction
real_type interpolate(dg::space sp, const host_vector &v, real_type x, const RealGrid1d< real_type > &g, dg::bc bcx=dg::NEU)
Interpolate a vector on a single point on a 1d Grid.
Definition interpolation.h:644
dg::SparseMatrix< int, real_type, thrust::host_vector > interpolation(const RecursiveHostVector &x, const aRealTopology< real_type, Nd > &g, std::array< dg::bc, Nd > bcx, std::string method="dg")
Create interpolation matrix of a list of points in given grid.
Definition interpolation.h:433
Interpolation matrix creation functions.
thrust::host_vector< real_type > forward_transform(const thrust::host_vector< real_type > &in, const aRealTopologyX2d< real_type > &g)
Transform a vector from XSPACE to LSPACE.
Definition interpolationX.h:133
This is the namespace for all functions and classes defined and used by the discontinuous Galerkin li...
1D grid for X-point topology
Definition gridX.h:68
RealGrid< real_type, 1 > grid() const
Definition gridX.h:186
A CSR formatted sparse matrix.
Definition sparsematrix.h:96
A 2D grid class with X-point topology.
Definition gridX.h:257
RealGrid< real_type, 2 > grid() const
Return a copy without topology.
Definition gridX.h:388
A 3D grid class with X-point topology.
Definition gridX.h:541
RealGrid< real_type, 3 > grid() const
Return a copy without topology.
Definition gridX.h:711