mirror of
https://github.com/OPM/opm-simulators.git
synced 2024-12-29 10:40:59 -06:00
136 lines
4.6 KiB
C++
136 lines
4.6 KiB
C++
// -*- mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*-
|
|
// vi: set et ts=4 sw=4 sts=4:
|
|
/*
|
|
This file is part of the Open Porous Media project (OPM).
|
|
|
|
OPM 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 2 of the License, or
|
|
(at your option) any later version.
|
|
|
|
OPM 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 OPM. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
Consult the COPYING file in the top-level source directory of this
|
|
module for the precise wording of the license and the list of
|
|
copyright holders.
|
|
*/
|
|
/*!
|
|
* \file
|
|
*
|
|
* \copydoc Opm::FvBaseExtensiveQuantities
|
|
*/
|
|
#ifndef EWOMS_FV_BASE_EXTENSIVE_QUANTITIES_HH
|
|
#define EWOMS_FV_BASE_EXTENSIVE_QUANTITIES_HH
|
|
|
|
#include "fvbaseproperties.hh"
|
|
|
|
#include <opm/models/common/multiphasebaseproperties.hh>
|
|
|
|
#include <opm/material/common/Valgrind.hpp>
|
|
|
|
namespace Opm {
|
|
/*!
|
|
* \ingroup FiniteVolumeDiscretizations
|
|
*
|
|
* \brief Provide the properties at a face which make sense indepentently
|
|
* of the conserved quantities.
|
|
*/
|
|
template <class TypeTag>
|
|
class FvBaseExtensiveQuantities
|
|
{
|
|
using Scalar = GetPropType<TypeTag, Properties::Scalar>;
|
|
using ElementContext = GetPropType<TypeTag, Properties::ElementContext>;
|
|
using FluidSystem = GetPropType<TypeTag, Properties::FluidSystem>;
|
|
|
|
public:
|
|
/*!
|
|
* \brief Register all run-time parameters for the extensive quantities.
|
|
*/
|
|
static void registerParameters()
|
|
{ }
|
|
|
|
/*!
|
|
* \brief Update the extensive quantities for a given sub-control-volume face.
|
|
*
|
|
* \param elemCtx Reference to the current element context.
|
|
* \param scvfIdx The local index of the sub-control-volume face for which the
|
|
* extensive quantities should be calculated.
|
|
* \param timeIdx The index used by the time discretization.
|
|
*/
|
|
void update(const ElementContext& elemCtx, unsigned scvfIdx, unsigned timeIdx)
|
|
{
|
|
const auto& scvf = elemCtx.stencil(timeIdx).interiorFace(scvfIdx);
|
|
interiorScvIdx_ = scvf.interiorIndex();
|
|
exteriorScvIdx_ = scvf.exteriorIndex();
|
|
|
|
extrusionFactor_ =
|
|
(elemCtx.intensiveQuantities(interiorScvIdx_, timeIdx).extrusionFactor()
|
|
+ elemCtx.intensiveQuantities(exteriorScvIdx_, timeIdx).extrusionFactor()) / 2;
|
|
Valgrind::CheckDefined(extrusionFactor_);
|
|
assert(extrusionFactor_ > 0);
|
|
}
|
|
|
|
|
|
/*!
|
|
* \brief Update the extensive quantities for a given boundary face.
|
|
*
|
|
* \param context Reference to the current execution context.
|
|
* \param bfIdx The local index of the boundary face for which
|
|
* the extensive quantities should be calculated.
|
|
* \param timeIdx The index used by the time discretization.
|
|
* \param fluidState The FluidState on the domain boundary.
|
|
* \param paramCache The FluidSystem's parameter cache.
|
|
*/
|
|
template <class Context, class FluidState>
|
|
void updateBoundary(const Context& context,
|
|
unsigned bfIdx,
|
|
unsigned timeIdx,
|
|
const FluidState&)
|
|
{
|
|
unsigned dofIdx = context.interiorScvIndex(bfIdx, timeIdx);
|
|
interiorScvIdx_ = static_cast<unsigned short>(dofIdx);
|
|
exteriorScvIdx_ = static_cast<unsigned short>(dofIdx);
|
|
|
|
extrusionFactor_ = context.intensiveQuantities(bfIdx, timeIdx).extrusionFactor();
|
|
Valgrind::CheckDefined(extrusionFactor_);
|
|
assert(extrusionFactor_ > 0);
|
|
}
|
|
|
|
/*!
|
|
* \brief Returns th extrusion factor for the sub-control-volume face
|
|
*/
|
|
Scalar extrusionFactor() const
|
|
{ return extrusionFactor_; }
|
|
|
|
/*!
|
|
* \brief Return the local index of the control volume which is on the "interior" of
|
|
* the sub-control volume face.
|
|
*/
|
|
unsigned short interiorIndex() const
|
|
{ return interiorScvIdx_; }
|
|
|
|
/*!
|
|
* \brief Return the local index of the control volume which is on the "exterior" of
|
|
* the sub-control volume face.
|
|
*/
|
|
unsigned short exteriorIndex() const
|
|
{ return exteriorScvIdx_; }
|
|
|
|
private:
|
|
// local indices of the interior and the exterior sub-control-volumes
|
|
unsigned short interiorScvIdx_;
|
|
unsigned short exteriorScvIdx_;
|
|
|
|
Scalar extrusionFactor_;
|
|
};
|
|
|
|
} // namespace Opm
|
|
|
|
#endif
|