Newer
Older
// -*- mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*-
// vi: set et ts=4 sw=4 sts=4:
/*****************************************************************************
* See the file COPYING for full copying permissions. *
* This program is free software: you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation, either version 3 of the License, or *
* (at your option) any later version. *
* This program is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
* GNU General Public License for more details. *
* *
* You should have received a copy of the GNU General Public License *
* along with this program. If not, see <http://www.gnu.org/licenses/>. *
*****************************************************************************/
* \brief Definition of the spatial parameters for the 3pni problems.
#ifndef DUMUX_THREEPNI_SPATIAL_PARAMS_HH
#define DUMUX_THREEPNI_SPATIAL_PARAMS_HH
#include <dumux/material/spatialparams/fv.hh>
#include <dumux/material/fluidmatrixinteractions/3p/parkervangenuchten.hh>
namespace Dumux {
* \brief Definition of the spatial parameters for the 3pni problems.
*/
template<class GridGeometry, class Scalar>
class ThreePNISpatialParams
: public FVSpatialParams<GridGeometry, Scalar,
ThreePNISpatialParams<GridGeometry, Scalar>>
using GridView = typename GridGeometry::GridView;
using FVElementGeometry = typename GridGeometry::LocalView;
using SubControlVolume = typename FVElementGeometry::SubControlVolume;
using Element = typename GridView::template Codim<0>::Entity;
using ParentType = FVSpatialParams<GridGeometry, Scalar,
ThreePNISpatialParams<GridGeometry, Scalar>>;
using GlobalPosition = typename Element::Geometry::GlobalCoordinate;
using ThreePhasePcKrSw = FluidMatrix::ParkerVanGenuchten3PDefault<Scalar>;
//! Export permeability type
using PermeabilityType = Scalar;
ThreePNISpatialParams(std::shared_ptr<const GridGeometry> gridGeometry)
: ParentType(gridGeometry)
* \brief Returns the scalar intrinsic permeability \f$[m^2]\f$
* \param globalPos The global position
PermeabilityType permeabilityAtPos(const GlobalPosition& globalPos) const
return permeability_;
* \brief Returns the porosity \f$[-]\f$
* \param globalPos The global position
Scalar porosityAtPos(const GlobalPosition& globalPos) const
return porosity_;
* \brief Returns the fluid-matrix interaction law at a given location
* \param globalPos The global coordinates for the given location
*/
auto fluidMatrixInteractionAtPos(const GlobalPosition& globalPos) const
return makeFluidMatrixInteraction(pcKrSwCurve_);
const ThreePhasePcKrSw pcKrSwCurve_;