13#ifndef DUMUX_POROUS_MEDIUM_FLOW_FV_SPATIAL_PARAMS_NONEQUILIBRIUM_HH 
   14#define DUMUX_POROUS_MEDIUM_FLOW_FV_SPATIAL_PARAMS_NONEQUILIBRIUM_HH 
   24template<
class Gr
idGeometry, 
class Scalar, 
class Implementation>
 
   29    using GridView = 
typename GridGeometry::GridView;
 
   30    using FVElementGeometry = 
typename GridGeometry::LocalView;
 
   31    using SubControlVolume = 
typename GridGeometry::SubControlVolume;
 
   32    using Element = 
typename GridView::template Codim<0>::Entity;
 
   33    using GlobalPosition = 
typename Element::Geometry::GlobalCoordinate;
 
   51    template<
class ElementSolution>
 
   53                                      const SubControlVolume &scv,
 
   54                                      const ElementSolution &elemSol)
 const 
   56    { 
return this->
asImp_().characteristicLengthAtPos(scv.dofPosition()); }
 
 
   65        DUNE_THROW(Dune::InvalidStateException,
 
   66                   "The spatial parameters do not provide " 
   67                   "a characteristicLengthAtPos() method.");
 
 
   76    template<
class ElementSolution>
 
   78                                      const SubControlVolume& scv,
 
   79                                      const ElementSolution& elemSol)
 const 
   80    { 
return this->
asImp_().factorEnergyTransferAtPos(scv.dofPosition()); }
 
 
   88        DUNE_THROW(Dune::InvalidStateException,
 
   89                   "The spatial parameters do not provide " 
   90                   "a factorEnergyTransferAtPos() method.");
 
 
   99    template<
class ElementSolution>
 
  101                                    const SubControlVolume& scv,
 
  102                                    const ElementSolution& elemSol)
 const 
  103    { 
return this->
asImp_().factorMassTransferAtPos(scv.dofPosition()); }
 
 
  112        DUNE_THROW(Dune::InvalidStateException,
 
  113                   "The spatial parameters do not provide " 
  114                   "a factorMassTransferAtPos() method.");
 
 
 
FVPorousMediumFlowSpatialParamsMP(std::shared_ptr< const GridGeometry > gridGeometry)
Definition fvspatialparamsmp.hh:59
Scalar AnsSurfaceParams
Definition fvspatialparamsnonequilibrium.hh:39
const Scalar factorEnergyTransferAtPos(const GlobalPosition &globalPos) const
Return the pre factor the the energy transfer.
Definition fvspatialparamsnonequilibrium.hh:86
const Scalar factorEnergyTransfer(const Element &element, const SubControlVolume &scv, const ElementSolution &elemSol) const
Return the pre-factor the the energy transfer.
Definition fvspatialparamsnonequilibrium.hh:77
FVPorousMediumFlowSpatialParamsNonEquilibrium(std::shared_ptr< const GridGeometry > gridGeometry)
Definition fvspatialparamsnonequilibrium.hh:41
Scalar AwnSurfaceParams
export the types used for interfacial area calculations
Definition fvspatialparamsnonequilibrium.hh:37
const Scalar characteristicLengthAtPos(const GlobalPosition &globalPos) const
Return the characteristic length for the mass transfer.
Definition fvspatialparamsnonequilibrium.hh:63
const Scalar factorMassTransfer(const Element &element, const SubControlVolume &scv, const ElementSolution &elemSol) const
Return the pre-factor the the mass transfer.
Definition fvspatialparamsnonequilibrium.hh:100
const Scalar factorMassTransferAtPos(const GlobalPosition &globalPos) const
Return the pre-factor the the mass transfer.
Definition fvspatialparamsnonequilibrium.hh:110
Scalar AwsSurfaceParams
Definition fvspatialparamsnonequilibrium.hh:38
const Scalar characteristicLength(const Element &element, const SubControlVolume &scv, const ElementSolution &elemSol) const
Return the characteristic length for the mass transfer.
Definition fvspatialparamsnonequilibrium.hh:52
Implementation & asImp_()
Returns the implementation of the spatial parameters (static polymorphism)
Definition common/fvspatialparams.hh:135
const GridGeometry & gridGeometry() const
The finite volume grid geometry.
Definition common/fvspatialparams.hh:130
The base class for spatial parameters in multi-phase porous-medium-flow problems.