62fa94ae2a
Implementation of coordinates has been moved out of the ECVI class and into its own.
123 lines
4.3 KiB
C++
123 lines
4.3 KiB
C++
/*
|
|
Copyright 2012 SINTEF ICT, Applied Mathematics.
|
|
|
|
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 3 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/>.
|
|
*/
|
|
|
|
#ifndef OPM_VELOCITYINTERPOLATION_HEADER_INCLUDED
|
|
#define OPM_VELOCITYINTERPOLATION_HEADER_INCLUDED
|
|
|
|
#include <opm/core/utility/WachspressCoord.hpp>
|
|
#include <vector>
|
|
|
|
struct UnstructuredGrid;
|
|
|
|
namespace Opm
|
|
{
|
|
|
|
/// Abstract interface for velocity interpolation method classes.
|
|
class VelocityInterpolationInterface
|
|
{
|
|
public:
|
|
virtual ~VelocityInterpolationInterface();
|
|
|
|
/// Set up fluxes for interpolation.
|
|
/// \param[in] flux One signed flux per face in the grid.
|
|
virtual void setupFluxes(const double* flux) = 0;
|
|
|
|
/// Interpolate velocity.
|
|
/// \param[in] cell Cell in which to interpolate.
|
|
/// \param[in] x Coordinates of point at which to interpolate.
|
|
/// Must be array of length grid.dimensions.
|
|
/// \param[out] v Interpolated velocity.
|
|
/// Must be array of length grid.dimensions.
|
|
virtual void interpolate(const int cell,
|
|
const double* x,
|
|
double* v) const = 0;
|
|
};
|
|
|
|
|
|
|
|
|
|
/// A constant velocity approximation. Will not actually interpolate
|
|
/// unless the fluxes are consistent with a constant velocity.
|
|
class VelocityInterpolationConstant : public VelocityInterpolationInterface
|
|
{
|
|
public:
|
|
/// Constructor.
|
|
/// \param[in] grid A grid.
|
|
explicit VelocityInterpolationConstant(const UnstructuredGrid& grid);
|
|
|
|
/// Set up fluxes for interpolation.
|
|
/// \param[in] flux One signed flux per face in the grid.
|
|
virtual void setupFluxes(const double* flux);
|
|
|
|
/// Interpolate velocity.
|
|
/// \param[in] cell Cell in which to interpolate.
|
|
/// \param[in] x Coordinates of point at which to interpolate.
|
|
/// Must be array of length grid.dimensions.
|
|
/// \param[out] v Interpolated velocity.
|
|
/// Must be array of length grid.dimensions.
|
|
virtual void interpolate(const int cell,
|
|
const double* x,
|
|
double* v) const;
|
|
private:
|
|
const UnstructuredGrid& grid_;
|
|
const double* flux_;
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
/// Interpolate velocity using the extended CVI scheme:
|
|
/// compute a corner velocity for each cell corner that
|
|
/// is consistent with fluxes of adjacent faces, then
|
|
/// interpolate with generalized barycentric coordinates.
|
|
class VelocityInterpolationECVI : public VelocityInterpolationInterface
|
|
{
|
|
public:
|
|
/// Constructor.
|
|
/// \param[in] grid A grid.
|
|
explicit VelocityInterpolationECVI(const UnstructuredGrid& grid);
|
|
|
|
/// Set up fluxes for interpolation.
|
|
/// \param[in] flux One signed flux per face in the grid.
|
|
virtual void setupFluxes(const double* flux);
|
|
|
|
/// Interpolate velocity.
|
|
/// \param[in] cell Cell in which to interpolate.
|
|
/// \param[in] x Coordinates of point at which to interpolate.
|
|
/// Must be array of length grid.dimensions.
|
|
/// \param[out] v Interpolated velocity.
|
|
/// Must be array of length grid.dimensions.
|
|
virtual void interpolate(const int cell,
|
|
const double* x,
|
|
double* v) const;
|
|
private:
|
|
WachspressCoord bcmethod_;
|
|
const UnstructuredGrid& grid_;
|
|
mutable std::vector<double> bary_coord_;
|
|
std::vector<double> corner_velocity_; // size = dim * #corners
|
|
};
|
|
|
|
|
|
|
|
|
|
} // namespace Opm
|
|
|
|
#endif // OPM_VELOCITYINTERPOLATION_HEADER_INCLUDED
|