25template <
class Geometry,
class IMatrix,
class Matrix,
class Container>
52 elliptic_( g_fine, bcx, bcy, dir)
54 construct( g_coarse, g_fine, bcx, bcy, dir);
63 template<
class ContainerType0>
68 elliptic_.set_chi( chi);
71 const Container&
weights()
const {
return weights_;}
76 const Container&
precond()
const {
return precond_;}
85 template<
class ContainerType0,
class ContainerType1>
86 void symv(
const ContainerType0& x, ContainerType1&
y)
89 elliptic_.symv( temp1_, temp2_);
95 void construct(
const Geometry& g_coarse,
const Geometry& g_fine,
bc bcx,
bc bcy,
direction dir)
109 Container temp1_, temp2_;
110 Container weights_, precond_;
116template<
class G,
class IM,
class M,
class V>
117struct TensorTraits< RefinedElliptic<G, IM, M, V> >
The refined version of Elliptic.
Definition refined_elliptic.h:27
const Container & weights() const
Definition refined_elliptic.h:71
Geometry geometry_type
Definition refined_elliptic.h:29
get_value_type< Container > value_type
Definition refined_elliptic.h:32
const Container & precond() const
Returns the preconditioner to use in conjugate gradient.
Definition refined_elliptic.h:76
Container container_type
Definition refined_elliptic.h:31
RefinedElliptic(const Geometry &g_coarse, const Geometry &g_fine, direction dir=forward)
Construct from a coarse and a fine grid.
Definition refined_elliptic.h:40
Matrix matrix_type
Definition refined_elliptic.h:30
void symv(const ContainerType0 &x, ContainerType1 &y)
Computes the polarisation term.
Definition refined_elliptic.h:86
RefinedElliptic(const Geometry &g_coarse, const Geometry &g_fine, bc bcx, bc bcy, direction dir=forward)
Construct from grid and boundary conditions.
Definition refined_elliptic.h:51
void set_chi(const ContainerType0 &chi)
Change Chi.
Definition refined_elliptic.h:64
General negative elliptic operators.
DG_DEVICE T one(T x, Ts ...xs)
Definition functions.h:24
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
void gemv(get_value_type< ContainerType1 > alpha, MatrixType &&M, const ContainerType1 &x, get_value_type< ContainerType1 > beta, ContainerType2 &y)
Alias for blas2::symv ;.
Definition blas2.h:339
void transfer(const MatrixType &x, AnotherMatrixType &y)
; Generic way to copy and/or convert a Matrix type to a different Matrix type
Definition blas2.h:473
bc
Switch between boundary conditions.
Definition enums.h:15
direction
Direction of a discrete derivative.
Definition enums.h:97
@ forward
forward derivative (cell to the right and current cell)
Definition enums.h:98
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
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
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
Elliptic2d< Geometry, Matrix, Container > Elliptic
A 2d negative elliptic differential operator .
Definition elliptic.h:518
ContainerType volume(const SparseTensor< ContainerType > &t)
Definition multiply.h:389
Interpolation matrix creation functions.
Useful MPI typedefs and overloads of interpolation and projection.
This is the namespace for all functions and classes defined and used by the discontinuous Galerkin li...
Creation of projection matrices.
NotATensorTag tensor_category
Definition tensor_traits.h:40
void value_type
Definition tensor_traits.h:39