64template <
class Geometry,
class Matrix,
class Container>
112 m_tempx = m_sigma = m_precond;
116 template<
class ...Params>
120 *
this =
Elliptic1d( std::forward<Params>( ps)...);
134 template<
class ContainerType0>
168 template<
class ContainerType0,
class ContainerType1>
174 template<
class ContainerType0,
class ContainerType1>
175 void symv(
const ContainerType0& x, ContainerType1&
y){
179 template<
class ContainerType0,
class ContainerType1>
186 if( 0.0 != m_jfactor )
193 Matrix m_leftx, m_rightx, m_jumpX;
194 Container m_weights, m_precond;
232template <
class Geometry,
class Matrix,
class Container>
259 Elliptic2d( g, g.bcx(), g.bcy(), dir, jfactor, chi_weight_jump)
281 value_type jfactor=1.,
bool chi_weight_jump =
false)
284 m_chi_weight_jump = chi_weight_jump;
294 m_temp = m_tempx = m_tempy = m_weights;
300 template<
class ...Params>
304 *
this =
Elliptic2d( std::forward<Params>( ps)...);
323 template<
class ContainerType0>
346 template<
class ContainerType0>
400 template<
class ContainerType0,
class ContainerType1>
413 template<
class ContainerType0,
class ContainerType1>
414 void symv(
const ContainerType0& x, ContainerType1&
y){
427 template<
class ContainerType0,
class ContainerType1>
442 if( 0.0 != m_jfactor )
444 if(m_chi_weight_jump)
468 template<
class ContainerType0,
class ContainerType1>
469 void variation(
const ContainerType0& phi, ContainerType1& sigma){
481 template<
class ContainerTypeL,
class ContainerType0,
class ContainerType1>
482 void variation(
const ContainerTypeL& lambda,
const ContainerType0& phi, ContainerType1& sigma){
496 template<
class ContainerTypeL,
class ContainerType0,
class ContainerType1>
506 Matrix m_leftx, m_lefty, m_rightx, m_righty, m_jumpX, m_jumpY;
507 Container m_weights, m_precond;
508 Container m_tempx, m_tempy, m_temp;
510 Container m_sigma, m_vol;
512 bool m_chi_weight_jump;
517template <
class Geometry,
class Matrix,
class Container>
556template <
class Geometry,
class Matrix,
class Container>
578 Elliptic3d( g, g.bcx(), g.bcy(), g.bcz(), dir, jfactor, chi_weight_jump)
599 m_chi_weight_jump = chi_weight_jump;
622 m_temp = m_tempx = m_tempy = m_tempz = m_weights;
627 template<
class ...Params>
631 *
this =
Elliptic3d( std::forward<Params>( ps)...);
635 template<
class ContainerType0>
647 template<
class ContainerType0>
678 m_multiplyZ = !compute_in_2d;
682 template<
class ContainerType0,
class ContainerType1>
683 void symv(
const ContainerType0& x, ContainerType1&
y){
687 template<
class ContainerType0,
class ContainerType1>
713 if(m_chi_weight_jump)
721 m_tempz, 0., m_tempx, m_tempy, m_tempz);
725 0., m_tempx, m_tempy);
743 template<
class ContainerType0,
class ContainerType1>
744 void variation(
const ContainerType0& phi, ContainerType1& sigma){
748 template<
class ContainerTypeL,
class ContainerType0,
class ContainerType1>
749 void variation(
const ContainerTypeL& lambda,
const ContainerType0& phi, ContainerType1& sigma){
753 template<
class ContainerTypeL,
class ContainerType0,
class ContainerType1>
762 dg::tensor::scalar_product3d(alpha, lambda, m_tempx, m_tempy, m_tempz, m_chi, lambda, m_tempx, m_tempy, m_tempz, beta, sigma);
766 Matrix m_leftx, m_lefty, m_leftz, m_rightx, m_righty, m_rightz, m_jumpX, m_jumpY, m_jumpZ;
767 Container m_weights, m_precond;
768 Container m_tempx, m_tempy, m_tempz, m_temp;
770 Container m_sigma, m_vol;
772 bool m_multiplyZ =
true, m_addJumpZ =
false;
773 bool m_chi_weight_jump;
776template<
class G,
class M,
class V>
777struct TensorTraits< Elliptic1d<G, M, V> >
782template<
class G,
class M,
class V>
783struct TensorTraits< Elliptic2d<G, M, V> >
789template<
class G,
class M,
class V>
790struct TensorTraits< Elliptic3d<G, M, V> >
A 1d negative elliptic differential operator .
Definition elliptic.h:66
Container container_type
Definition elliptic.h:70
void operator()(const ContainerType0 &x, ContainerType1 &y)
Compute elliptic term and store in output.
Definition elliptic.h:169
void set_jfactor(value_type new_jfactor)
Set the currently used jfactor ( )
Definition elliptic.h:164
const Container & precond() const
Return the default preconditioner to use in conjugate gradient.
Definition elliptic.h:160
Elliptic1d(const Geometry &g, direction dir=forward, value_type jfactor=1.)
Construct from Grid.
Definition elliptic.h:85
Elliptic1d(const Geometry &g, bc bcx, direction dir=forward, value_type jfactor=1.)
Construct from grid and boundary conditions.
Definition elliptic.h:101
Elliptic1d()=default
empty object ( no memory allocation)
const Container & weights() const
Return the weights making the operator self-adjoint.
Definition elliptic.h:149
Geometry geometry_type
Definition elliptic.h:68
void symv(value_type alpha, const ContainerType0 &x, value_type beta, ContainerType1 &y)
Compute elliptic term and add to output.
Definition elliptic.h:180
void set_chi(const ContainerType0 &sigma)
Change scalar part Chi.
Definition elliptic.h:135
get_value_type< Container > value_type
Definition elliptic.h:71
Matrix matrix_type
Definition elliptic.h:69
void symv(const ContainerType0 &x, ContainerType1 &y)
Compute elliptic term and store in output.
Definition elliptic.h:175
void construct(Params &&...ps)
Perfect forward parameters to one of the constructors.
Definition elliptic.h:117
value_type get_jfactor() const
Get the currently used jfactor ( )
Definition elliptic.h:166
A 2d negative elliptic differential operator .
Definition elliptic.h:234
void set_jfactor(value_type new_jfactor)
Set the currently used jfactor ( )
Definition elliptic.h:376
void symv(const ContainerType0 &x, ContainerType1 &y)
Compute elliptic term and store in output.
Definition elliptic.h:414
get_value_type< Container > value_type
Definition elliptic.h:239
void operator()(const ContainerType0 &x, ContainerType1 &y)
Compute elliptic term and store in output.
Definition elliptic.h:401
Matrix matrix_type
Definition elliptic.h:237
void construct(Params &&...ps)
Perfect forward parameters to one of the constructors.
Definition elliptic.h:301
const Container & weights() const
Return the weights making the operator self-adjoint.
Definition elliptic.h:358
void set_jump_weighting(bool jump_weighting)
Set the chi weighting of jump terms.
Definition elliptic.h:386
void set_chi(const ContainerType0 &sigma)
Change scalar part in Chi tensor.
Definition elliptic.h:324
void variation(value_type alpha, const ContainerTypeL &lambda, const ContainerType0 &phi, value_type beta, ContainerType1 &sigma)
Definition elliptic.h:497
Elliptic2d(const Geometry &g, direction dir=forward, value_type jfactor=1., bool chi_weight_jump=false)
Construct from Grid.
Definition elliptic.h:257
Elliptic2d()=default
empty object ( no memory allocation)
const Container & precond() const
Return the default preconditioner to use in conjugate gradient.
Definition elliptic.h:369
Geometry geometry_type
Definition elliptic.h:236
void symv(value_type alpha, const ContainerType0 &x, value_type beta, ContainerType1 &y)
Compute elliptic term and add to output.
Definition elliptic.h:428
void variation(const ContainerTypeL &lambda, const ContainerType0 &phi, ContainerType1 &sigma)
Definition elliptic.h:482
void set_chi(const SparseTensor< ContainerType0 > &tau)
Change tensor part in Chi tensor.
Definition elliptic.h:347
value_type get_jfactor() const
Get the currently used jfactor ( )
Definition elliptic.h:381
Elliptic2d(const Geometry &g, bc bcx, bc bcy, direction dir=forward, value_type jfactor=1., bool chi_weight_jump=false)
Construct from grid and boundary conditions.
Definition elliptic.h:279
void variation(const ContainerType0 &phi, ContainerType1 &sigma)
Definition elliptic.h:469
Container container_type
Definition elliptic.h:238
bool get_jump_weighting() const
Get the current state of chi weighted jump terms.
Definition elliptic.h:391
A 3d negative elliptic differential operator .
Definition elliptic.h:558
void variation(const ContainerTypeL &lambda, const ContainerType0 &phi, ContainerType1 &sigma)
Definition elliptic.h:749
const Container & precond() const
Return the default preconditioner to use in conjugate gradient.
Definition elliptic.h:658
void symv(value_type alpha, const ContainerType0 &x, value_type beta, ContainerType1 &y)
Compute elliptic term and add to output.
Definition elliptic.h:688
void variation(const ContainerType0 &phi, ContainerType1 &sigma)
Definition elliptic.h:744
void set_chi(const SparseTensor< ContainerType0 > &tau)
Change tensor part in Chi tensor.
Definition elliptic.h:648
void variation(value_type alpha, const ContainerTypeL &lambda, const ContainerType0 &phi, value_type beta, ContainerType1 &sigma)
Definition elliptic.h:754
void construct(Params &&...ps)
Perfect forward parameters to one of the constructors.
Definition elliptic.h:628
get_value_type< Container > value_type
Definition elliptic.h:563
value_type get_jfactor() const
Get the currently used jfactor ( )
Definition elliptic.h:664
void set_jfactor(value_type new_jfactor)
Set the currently used jfactor ( )
Definition elliptic.h:662
Elliptic3d()=default
empty object ( no memory allocation)
const Container & weights() const
Return the weights making the operator self-adjoint.
Definition elliptic.h:654
Elliptic3d(const Geometry &g, bc bcx, bc bcy, bc bcz, direction dir=forward, value_type jfactor=1., bool chi_weight_jump=false)
Construct from grid and boundary conditions.
Definition elliptic.h:595
void set_compute_in_2d(bool compute_in_2d)
Restrict the problem to the first 2 dimensions.
Definition elliptic.h:677
void set_chi(const ContainerType0 &sigma)
Change scalar part in Chi tensor.
Definition elliptic.h:636
Elliptic3d(const Geometry &g, direction dir=forward, value_type jfactor=1., bool chi_weight_jump=false)
Construct from Grid.
Definition elliptic.h:577
void symv(const ContainerType0 &x, ContainerType1 &y)
Compute elliptic term and store in output.
Definition elliptic.h:683
void set_jump_weighting(bool jump_weighting)
Set the chi weighting of jump terms.
Definition elliptic.h:666
Container container_type
Definition elliptic.h:562
Matrix matrix_type
Definition elliptic.h:561
Geometry geometry_type
Definition elliptic.h:560
bool get_jump_weighting() const
Get the current state of chi weighted jump terms.
Definition elliptic.h:668
Function discretization routines.
DG_DEVICE T one(T x, Ts ...xs)
Definition functions.h:24
void copy(const ContainerTypeIn &source, ContainerTypeOut &target)
Definition blas1.h:243
void axpbypgz(value_type alpha, const ContainerType1 &x, value_type1 beta, const ContainerType2 &y, value_type2 gamma, ContainerType &z)
Definition blas1.h:337
void axpby(value_type alpha, const ContainerType1 &x, value_type1 beta, ContainerType &y)
Definition blas1.h:306
void pointwiseDot(value_type alpha, const ContainerType1 &x1, const ContainerType2 &x2, value_type1 beta, ContainerType &y)
Definition blas1.h:406
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 scal(ContainerType &x, value_type alpha)
Definition blas1.h:263
void pointwiseDivide(value_type alpha, const ContainerType1 &x1, const ContainerType2 &x2, value_type1 beta, ContainerType &y)
Definition blas1.h:495
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
void symv(MatrixType &&M, const ContainerType1 &x, ContainerType2 &y)
Definition blas2.h:325
auto dx(const Topology &g, dg::bc bc, dg::direction dir=centered)
Definition derivativesT.h:14
auto dy(const Topology &g, dg::bc bc, dg::direction dir=centered)
Short for dg::create::derivative( 1, g, bc, dir);
Definition derivativesT.h:21
auto jumpY(const Topology &g, bc bc)
Short for dg::create::jump( 1, g, bc);
Definition derivativesT.h:43
bc
Switch between boundary conditions.
Definition enums.h:15
auto jumpZ(const Topology &g, bc bc)
Short for dg::create::jump( 2, g, bc);
Definition derivativesT.h:50
direction
Direction of a discrete derivative.
Definition enums.h:97
auto dz(const Topology &g, dg::bc bc, dg::direction dir=centered)
Short for dg::create::derivative( 2, g, bc, dir);
Definition derivativesT.h:28
bc inverse(bc bound)
invert boundary condition
Definition enums.h:87
auto jumpX(const Topology &g, bc bc)
Short for dg::create::jump( 0, g, bc);
Definition derivativesT.h:36
@ forward
forward derivative (cell to the right and current cell)
Definition enums.h:98
@ centered
centered derivative (cell to the left and right and current cell)
Definition enums.h:100
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
Geometry::host_vector volume(const Geometry &g)
Create the volume element on the grid (including weights!!)
Definition transform.h:192
void scalar_product2d(value_type0 alpha, const ContainerTypeL &lambda, const ContainerType0 &v0, const ContainerType1 &v1, const SparseTensor< ContainerType2 > &t, const ContainerTypeM &mu, const ContainerType3 &w0, const ContainerType4 &w1, value_type1 beta, ContainerType5 &y)
Definition multiply.h:493
void scalar_product3d(value_type0 alpha, const ContainerTypeL &lambda, const ContainerType0 &v0, const ContainerType1 &v1, const ContainerType2 &v2, const SparseTensor< ContainerType3 > &t, const ContainerTypeM &mu, const ContainerType4 &w0, const ContainerType5 &w1, const ContainerType6 &w2, value_type1 beta, ContainerType7 &y)
Definition multiply.h:533
void multiply2d(const ContainerTypeL &lambda, const SparseTensor< ContainerType0 > &t, const ContainerType1 &in0, const ContainerType2 &in1, const ContainerTypeM &mu, ContainerType3 &out0, ContainerType4 &out1)
Definition multiply.h:215
ContainerType volume(const SparseTensor< ContainerType > &t)
Definition multiply.h:389
void multiply3d(const ContainerTypeL &lambda, const SparseTensor< ContainerType0 > &t, const ContainerType1 &in0, const ContainerType2 &in1, const ContainerType3 &in2, const ContainerTypeM &mu, ContainerType4 &out0, ContainerType5 &out1, ContainerType6 &out2)
Definition multiply.h:240
Function discretization routines for mpi vectors.
This is the namespace for all functions and classes defined and used by the discontinuous Galerkin li...
Class for 2x2 and 3x3 matrices sharing elements.
Definition tensor.h:51
NotATensorTag tensor_category
Definition tensor_traits.h:40
void value_type
Definition tensor_traits.h:39