Discontinuous Galerkin Library
#include "dg/algorithm.h"
Loading...
Searching...
No Matches
projectionX.h
Go to the documentation of this file.
1#pragma once
2#include "projection.h"
3#include "gridX.h"
4
9namespace dg{
10namespace create{
13
14// TODO document
15template<class real_type>
17 return projection(g_new.grid(), g_old.grid(),method);
18}
19
20// TODO document
21template<class real_type>
23 return projection(g_new.grid(), g_old.grid(),method);
24}
25
26// TODO document
27template<class real_type>
29 return projection(g_new.grid(), g_old.grid(),method);
30}
31
33
34}//namespace create
35}//namespace dg
base X-point topology classes
dg::MIHMatrix_t< typename MPITopology::value_type > projection(const MPITopology &g_new, const MPITopology &g_old, std::string method="dg")
Create a projection between two grids.
Definition mpi_projection.h:272
This is the namespace for all functions and classes defined and used by the discontinuous Galerkin li...
Creation of projection matrices.
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