Functions | |
template<class Functor , class Geometry > | |
Geometry::host_vector | dg::pullback (const Functor &f, const Geometry &g) |
template<class Functor1 , class Functor2 , class container , class Geometry > | |
void | dg::pushForwardPerp (const Functor1 &vR, const Functor2 &vZ, container &vx, container &vy, const Geometry &g) |
template<class Functor1 , class Functor2 , class Functor3 , class container , class Geometry > | |
void | dg::pushForward (const Functor1 &vR, const Functor2 &vZ, const Functor3 &vPhi, container &vx, container &vy, container &vz, const Geometry &g) |
template<class FunctorRR , class FunctorRZ , class FunctorZZ , class container , class Geometry > | |
void | dg::pushForwardPerp (const FunctorRR &chiRR, const FunctorRZ &chiRZ, const FunctorZZ &chiZZ, SparseTensor< container > &chi, const Geometry &g) |
template<class Geometry > | |
Geometry::host_vector | dg::create::volume (const Geometry &g) |
Create the volume element on the grid (including weights!!) | |
template<class Geometry > | |
Geometry::host_vector | dg::create::inv_volume (const Geometry &g) |
Create the inverse volume element on the grid (including weights!!) | |
Geometry::host_vector dg::create::inv_volume | ( | const Geometry & | g | ) |
Create the inverse volume element on the grid (including weights!!)
This is the same as the inv_weights divided by the volume form
Geometry | A type that is or derives from one of the abstract geometry base classes ( aGeometry2d , aGeometry3d , aMPIGeometry2d , ...). |
g | Geometry object |
Geometry::host_vector dg::pullback | ( | const Functor & | f, |
const Geometry & | g ) |
Pull back a function defined in physical coordinates to the curvilinear (computational) coordinate system. The pullback is equivalent to the following:
i
) using the map member of the grid e.g. aRealGeometry2d::map()i
)Functor | The binary (for 2d grids) or ternary (for 3d grids) function or functor with signature: real_type ( real_type x, real_type y) ; real_type ( real_type x, real_type y, real_type z) |
f | The function defined in physical coordinates |
g | a two- or three dimensional Geometry (g.map() is used to evaluate f ) |
v
as a host vectordg::evaluate
void dg::pushForward | ( | const Functor1 & | vR, |
const Functor2 & | vZ, | ||
const Functor3 & | vPhi, | ||
container & | vx, | ||
container & | vy, | ||
container & | vz, | ||
const Geometry & | g ) |
Push forward a vector from cylindrical or Cartesian to a new coordinate system. Applies the Jacobian matrix
where
Functor1 | Binary or Ternary functor |
Functor2 | Binary or Ternary functor |
Functor3 | Binary or Ternary functor |
Container | A data container class for which the blas1 functionality is overloaded and to which the return type of blas1::subroutine() can be converted using dg::construct . We assume that Container is copyable/assignable and has a swap member function. In connection with Geometry this is one of
|
Geometry | A type that is or derives from one of the abstract geometry base classes ( aGeometry2d , aGeometry3d , aMPIGeometry2d , ...). Geometry determines which Container type can be used. |
vR | input R-component in cartesian or cylindrical coordinates |
vZ | input Z-component in cartesian or cylindrical coordinates |
vPhi | input Z-component in cartesian or cylindrical coordinates |
vx | x-component of vector (gets properly resized) |
vy | y-component of vector (gets properly resized) |
vz | z-component of vector (gets properly resized) |
g | The geometry object |
void dg::pushForwardPerp | ( | const Functor1 & | vR, |
const Functor2 & | vZ, | ||
container & | vx, | ||
container & | vy, | ||
const Geometry & | g ) |
Push forward a vector from cylindrical or Cartesian to a new coordinate system. Applies the Jacobian matrix
where
Functor1 | Binary or Ternary functor |
Functor2 | Binary or Ternary functor |
Container | A data container class for which the blas1 functionality is overloaded and to which the return type of blas1::subroutine() can be converted using dg::construct . We assume that Container is copyable/assignable and has a swap member function. In connection with Geometry this is one of
|
Geometry | A type that is or derives from one of the abstract geometry base classes ( aGeometry2d , aGeometry3d , aMPIGeometry2d , ...). Geometry determines which Container type can be used. |
vR | input R-component in cylindrical coordinates |
vZ | input Z-component in cylindrical coordinates |
vx | x-component of vector (gets properly resized) |
vy | y-component of vector (gets properly resized) |
g | The geometry object |
void dg::pushForwardPerp | ( | const FunctorRR & | chiRR, |
const FunctorRZ & | chiRZ, | ||
const FunctorZZ & | chiZZ, | ||
SparseTensor< container > & | chi, | ||
const Geometry & | g ) |
Push forward a symmetric 2d tensor from cylindrical or Cartesian to a new coordinate system. Applies the Jacobian matrix
where
FunctorRR | Binary or Ternary functor |
FunctorRZ | Binary or Ternary functor |
FunctorZZ | Binary or Ternary functor |
Container | A data container class for which the blas1 functionality is overloaded and to which the return type of blas1::subroutine() can be converted using dg::construct . We assume that Container is copyable/assignable and has a swap member function. In connection with Geometry this is one of
|
Geometry | A type that is or derives from one of the abstract geometry base classes ( aGeometry2d , aGeometry3d , aMPIGeometry2d , ...). Geometry determines which Container type can be used. |
chiRR | input RR-component in cylindrical coordinates |
chiRZ | input RZ-component in cylindrical coordinates |
chiZZ | input ZZ-component in cylindrical coordinates |
chi | tensor (gets properly resized) |
g | The geometry object |
Geometry::host_vector dg::create::volume | ( | const Geometry & | g | ) |
Create the volume element on the grid (including weights!!)
This is the same as the weights multiplied by the volume form
Geometry | A type that is or derives from one of the abstract geometry base classes ( aGeometry2d , aGeometry3d , aMPIGeometry2d , ...). |
g | Geometry object |