Skip to content
Snippets Groups Projects
spatialparams.hh 3.73 KiB
Newer Older
// -*- mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*-
// vi: set et ts=4 sw=4 sts=4:
Bernd Flemisch's avatar
Bernd Flemisch committed
/*****************************************************************************
 *   See the file COPYING for full copying permissions.                      *
Bernd Flemisch's avatar
Bernd Flemisch committed
 *                                                                           *
 *   This program is free software: you can redistribute it and/or modify    *
Bernd Flemisch's avatar
Bernd Flemisch committed
 *   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.                                     *
Bernd Flemisch's avatar
Bernd Flemisch committed
 *                                                                           *
 *   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/>.   *
Bernd Flemisch's avatar
Bernd Flemisch committed
 *****************************************************************************/
Melanie Darcis's avatar
Melanie Darcis committed
/*!
 * \file
 * \ingroup ThreePTests
Thomas Fetzer's avatar
Thomas Fetzer committed
 * \brief Definition of the spatial parameters for the 3pni problems.
Melanie Darcis's avatar
Melanie Darcis committed
 */
Thomas Fetzer's avatar
Thomas Fetzer committed
#ifndef DUMUX_THREEPNI_SPATIAL_PARAMS_HH
#define DUMUX_THREEPNI_SPATIAL_PARAMS_HH
Bernd Flemisch's avatar
Bernd Flemisch committed
#include <dumux/porousmediumflow/properties.hh>
#include <dumux/material/spatialparams/fv.hh>
#include <dumux/material/fluidmatrixinteractions/3p/parkervangenuchten.hh>
Thomas Fetzer's avatar
Thomas Fetzer committed
/*!
 * \ingroup ThreePTests
Thomas Fetzer's avatar
Thomas Fetzer committed
 * \brief Definition of the spatial parameters for the 3pni problems.
 */
template<class GridGeometry, class Scalar>
class ThreePNISpatialParams
: public FVSpatialParams<GridGeometry, Scalar,
                         ThreePNISpatialParams<GridGeometry, Scalar>>
Bernd Flemisch's avatar
Bernd Flemisch committed
{
    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>;

Bernd Flemisch's avatar
Bernd Flemisch committed
public:
    //! Export permeability type
    using PermeabilityType = Scalar;
    ThreePNISpatialParams(std::shared_ptr<const GridGeometry> gridGeometry)
    : ParentType(gridGeometry)
    , pcKrSwCurve_("SpatialParams")
Bernd Flemisch's avatar
Bernd Flemisch committed
    {
Thomas Fetzer's avatar
Thomas Fetzer committed
        permeability_ = 1e-10;
        porosity_ = 0.4;
Thomas Fetzer's avatar
Thomas Fetzer committed
    /*!
     * \brief Returns the scalar intrinsic permeability \f$[m^2]\f$
Bernd Flemisch's avatar
Bernd Flemisch committed
     *
     * \param globalPos The global position
Bernd Flemisch's avatar
Bernd Flemisch committed
     */
Timo Koch's avatar
Timo Koch committed
    PermeabilityType permeabilityAtPos(const GlobalPosition& globalPos) const
Bernd Flemisch's avatar
Bernd Flemisch committed
    {
     * \brief Returns the porosity \f$[-]\f$
Bernd Flemisch's avatar
Bernd Flemisch committed
     *
     * \param globalPos The global position
Bernd Flemisch's avatar
Bernd Flemisch committed
     */
    Scalar porosityAtPos(const GlobalPosition& globalPos) const
Bernd Flemisch's avatar
Bernd Flemisch committed
    {
Bernd Flemisch's avatar
Bernd Flemisch committed
    }
     * \brief Returns the fluid-matrix interaction law at a given location
Melanie Darcis's avatar
Melanie Darcis committed
     *
     * \param globalPos The global coordinates for the given location
    auto fluidMatrixInteractionAtPos(const GlobalPosition& globalPos) const
Bernd Flemisch's avatar
Bernd Flemisch committed
    {
        return makeFluidMatrixInteraction(pcKrSwCurve_);
Thomas Fetzer's avatar
Thomas Fetzer committed
    }

private:
    const ThreePhasePcKrSw pcKrSwCurve_;
Thomas Fetzer's avatar
Thomas Fetzer committed
    Scalar permeability_;
    Scalar porosity_;
Timo Koch's avatar
Timo Koch committed
} // end namespace Dumux
Bernd Flemisch's avatar
Bernd Flemisch committed

#endif