mirror of
https://github.com/OPM/opm-simulators.git
synced 2025-02-25 18:55:30 -06:00
Add Saturation Function Consistency Checks for SCALECRS
This commit introduces consistency checks for the scaled displacing
saturation in the three point horizontal scaling method
(SCALECRS=YES). These plug into the framework introduced in commit
c3939c544
(PR #5438). We implement the following two checks
- SGCR < 1-SOGCR-SWL < SGU
- SWCR < 1-SOWCR-SGL < SWU
which collectively guarantee a mobile displacing oil saturation in
the two phase gas/oil and oil/water systems.
This commit is contained in:
parent
9a0e39c1ad
commit
3de20b46b6
@ -203,6 +203,7 @@ if (HAVE_ECL_INPUT)
|
||||
opm/simulators/utils/satfunc/OilPhaseConsistencyChecks.cpp
|
||||
opm/simulators/utils/satfunc/PhaseCheckBase.cpp
|
||||
opm/simulators/utils/satfunc/SatfuncConsistencyChecks.cpp
|
||||
opm/simulators/utils/satfunc/ThreePointHorizontalConsistencyChecks.cpp
|
||||
opm/simulators/utils/satfunc/WaterPhaseConsistencyChecks.cpp
|
||||
)
|
||||
endif()
|
||||
@ -391,6 +392,7 @@ if (HAVE_ECL_INPUT)
|
||||
tests/test_OilSatfuncConsistencyChecks.cpp
|
||||
tests/test_SatfuncConsistencyChecks.cpp
|
||||
tests/test_SatfuncConsistencyChecks_parallel.cpp
|
||||
tests/test_ThreePointHorizontalSatfuncConsistencyChecks.cpp
|
||||
tests/test_WaterSatfuncConsistencyChecks.cpp
|
||||
)
|
||||
endif()
|
||||
@ -999,6 +1001,7 @@ if (HAVE_ECL_INPUT)
|
||||
opm/simulators/utils/satfunc/OilPhaseConsistencyChecks.hpp
|
||||
opm/simulators/utils/satfunc/PhaseCheckBase.hpp
|
||||
opm/simulators/utils/satfunc/SatfuncConsistencyChecks.hpp
|
||||
opm/simulators/utils/satfunc/ThreePointHorizontalConsistencyChecks.hpp
|
||||
opm/simulators/utils/satfunc/WaterPhaseConsistencyChecks.hpp
|
||||
)
|
||||
endif()
|
||||
|
@ -0,0 +1,110 @@
|
||||
/*
|
||||
Copyright 2024 Equinor AS
|
||||
|
||||
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/>.
|
||||
*/
|
||||
|
||||
#include <config.h>
|
||||
|
||||
#include <opm/simulators/utils/satfunc/ThreePointHorizontalConsistencyChecks.hpp>
|
||||
|
||||
#include <opm/simulators/utils/satfunc/PhaseCheckBase.hpp>
|
||||
|
||||
#include <opm/material/fluidmatrixinteractions/EclEpsScalingPoints.hpp>
|
||||
|
||||
// ---------------------------------------------------------------------------
|
||||
|
||||
template <typename Scalar>
|
||||
void Opm::Satfunc::PhaseChecks::ThreePointHorizontal::DisplacingOil_GO<Scalar>::
|
||||
testImpl(const EclEpsScalingPointsInfo<Scalar>& endPoints)
|
||||
{
|
||||
// SGCR < 1-SOGCR-SWL < SGU
|
||||
|
||||
this->swl_ = endPoints.Swl;
|
||||
this->sogcr_ = endPoints.Sogcr;
|
||||
this->sgcr_ = endPoints.Sgcr;
|
||||
this->sgu_ = endPoints.Sgu;
|
||||
|
||||
if (! std::isfinite(this->swl_) ||
|
||||
! std::isfinite(this->sogcr_) ||
|
||||
! std::isfinite(this->sgcr_) ||
|
||||
! std::isfinite(this->sgu_))
|
||||
{
|
||||
this->setViolated();
|
||||
this->setCritical();
|
||||
|
||||
return;
|
||||
}
|
||||
|
||||
const auto sr = Scalar{1} - (this->sogcr_ + this->swl_);
|
||||
|
||||
const auto low = ! (this->swl_ < sr);
|
||||
const auto high = ! (sr < this->sgu_);
|
||||
|
||||
if (low || high) {
|
||||
this->setViolated();
|
||||
this->setCritical();
|
||||
}
|
||||
}
|
||||
|
||||
// ---------------------------------------------------------------------------
|
||||
|
||||
template <typename Scalar>
|
||||
void Opm::Satfunc::PhaseChecks::ThreePointHorizontal::DisplacingOil_OW<Scalar>::
|
||||
testImpl(const EclEpsScalingPointsInfo<Scalar>& endPoints)
|
||||
{
|
||||
// SWCR < 1-SOWCR-SGL < SWU
|
||||
|
||||
this->sgl_ = endPoints.Sgl;
|
||||
this->sowcr_ = endPoints.Sowcr;
|
||||
this->swcr_ = endPoints.Swcr;
|
||||
this->swu_ = endPoints.Swu;
|
||||
|
||||
if (! std::isfinite(this->sgl_) ||
|
||||
! std::isfinite(this->sowcr_) ||
|
||||
! std::isfinite(this->swcr_) ||
|
||||
! std::isfinite(this->swu_))
|
||||
{
|
||||
this->setViolated();
|
||||
this->setCritical();
|
||||
|
||||
return;
|
||||
}
|
||||
|
||||
const auto sr = Scalar{1} - (this->sowcr_ + this->sgl_);
|
||||
|
||||
const auto low = ! (this->sgl_ < sr);
|
||||
const auto high = ! (sr < this->swu_);
|
||||
|
||||
if (low || high) {
|
||||
this->setViolated();
|
||||
this->setCritical();
|
||||
}
|
||||
}
|
||||
|
||||
// ===========================================================================
|
||||
// Explicit Specialisations of Individual Check Templates
|
||||
//
|
||||
// No other code below this separator
|
||||
// ===========================================================================
|
||||
|
||||
template class Opm::Satfunc::PhaseChecks::ThreePointHorizontal::DisplacingOil_GO<float>;
|
||||
template class Opm::Satfunc::PhaseChecks::ThreePointHorizontal::DisplacingOil_GO<double>;
|
||||
|
||||
// ---------------------------------------------------------------------------
|
||||
|
||||
template class Opm::Satfunc::PhaseChecks::ThreePointHorizontal::DisplacingOil_OW<float>;
|
||||
template class Opm::Satfunc::PhaseChecks::ThreePointHorizontal::DisplacingOil_OW<double>;
|
@ -0,0 +1,183 @@
|
||||
/*
|
||||
Copyright 2024 Equinor AS
|
||||
|
||||
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 THREE_POINT_HORIZONTAL_CONSISTENCY_CHECKS_HPP_INCLUDED
|
||||
#define THREE_POINT_HORIZONTAL_CONSISTENCY_CHECKS_HPP_INCLUDED
|
||||
|
||||
#include <opm/simulators/utils/satfunc/PhaseCheckBase.hpp>
|
||||
#include <opm/simulators/utils/satfunc/SatfuncConsistencyChecks.hpp>
|
||||
|
||||
#include <cstddef>
|
||||
#include <string>
|
||||
|
||||
namespace Opm::Satfunc::PhaseChecks::ThreePointHorizontal {
|
||||
|
||||
/// Verify that critical saturation of displacing phase (oil/liquid) is
|
||||
/// strictly between critical and maximum gas saturations for the
|
||||
/// alternative (three point) horizontal scaling method (SCALECRS=YES)
|
||||
/// in the gas/oil two-phase system.
|
||||
///
|
||||
/// \tparam Scalar Element type. Typically \c float or \c double.
|
||||
template <typename Scalar>
|
||||
class DisplacingOil_GO : public PhaseCheckBase<Scalar>
|
||||
{
|
||||
public:
|
||||
/// Number of \c Scalar values involved in the check.
|
||||
std::size_t numExportedCheckValues() const override { return 5; };
|
||||
|
||||
/// Get a linearised copy of the \c Scalar values involved in the check.
|
||||
///
|
||||
/// \param[in,out] exportedCheckValues Pointer to contiguous
|
||||
/// sequence of at least numExportedCheckValues() \c Scalars.
|
||||
void exportCheckValues(Scalar* exportedCheckValues) const override
|
||||
{
|
||||
exportedCheckValues[0] = this->swl_;
|
||||
exportedCheckValues[1] = this->sogcr_;
|
||||
exportedCheckValues[2] = this->sgcr_;
|
||||
exportedCheckValues[3] = Scalar{1} - (this->sogcr_ + this->swl_);
|
||||
exportedCheckValues[4] = this->sgu_;
|
||||
}
|
||||
|
||||
/// Descriptive textual summary of this check.
|
||||
std::string description() const override
|
||||
{
|
||||
return { "Mobile displacing oil in three point "
|
||||
"horizontally scaled gas/oil system" };
|
||||
}
|
||||
|
||||
/// Textual representation of the consistency condition.
|
||||
std::string condition() const override
|
||||
{
|
||||
return { "SGCR < 1-SOGCR-SWL < SGU" };
|
||||
}
|
||||
|
||||
/// Retrieve names of the exported check values.
|
||||
///
|
||||
/// \param[in,out] headers Pointer to contiguous sequence of at
|
||||
/// least numExportedCheckValues() strings.
|
||||
void columnNames(std::string* headers) const override
|
||||
{
|
||||
headers[0] = "SWL";
|
||||
headers[1] = "SOGCR";
|
||||
headers[2] = "SGCR";
|
||||
headers[3] = "1-SOGCR-SWL";
|
||||
headers[4] = "SGU";
|
||||
}
|
||||
|
||||
private:
|
||||
/// Minimum (connate) water saturation.
|
||||
Scalar swl_;
|
||||
|
||||
/// Critical oil saturation in two-phase gas/oil system.
|
||||
Scalar sogcr_;
|
||||
|
||||
/// Critical gas saturation.
|
||||
Scalar sgcr_;
|
||||
|
||||
/// Maximum gas saturation.
|
||||
Scalar sgu_;
|
||||
|
||||
/// Run check against a set of saturation function end-points.
|
||||
///
|
||||
/// \param[in] endPoints Set of saturation function end-points.
|
||||
/// Might for instance be the scaled end-points of the drainage
|
||||
/// functions in a single grid block or the unscaled end-points
|
||||
/// of the tabulated saturation functions in a single saturation
|
||||
/// region.
|
||||
void testImpl(const EclEpsScalingPointsInfo<Scalar>& endPoints) override;
|
||||
};
|
||||
|
||||
/// Verify that critical saturation of displacing phase (oil) is
|
||||
/// strictly between critical and maximum water saturations for the
|
||||
/// alternative (three point) horizontal scaling method (SCALECRS=YES)
|
||||
/// in the oil/water two-phase system.
|
||||
///
|
||||
/// \tparam Scalar Element type. Typically \c float or \c double.
|
||||
template <typename Scalar>
|
||||
class DisplacingOil_OW : public PhaseCheckBase<Scalar>
|
||||
{
|
||||
public:
|
||||
/// Number of \c Scalar values involved in the check.
|
||||
std::size_t numExportedCheckValues() const override { return 5; };
|
||||
|
||||
/// Get a linearised copy of the \c Scalar values involved in the check.
|
||||
///
|
||||
/// \param[in,out] exportedCheckValues Pointer to contiguous
|
||||
/// sequence of at least numExportedCheckValues() \c Scalars.
|
||||
void exportCheckValues(Scalar* exportedCheckValues) const override
|
||||
{
|
||||
exportedCheckValues[0] = this->sgl_;
|
||||
exportedCheckValues[1] = this->sowcr_;
|
||||
exportedCheckValues[2] = this->swcr_;
|
||||
exportedCheckValues[3] = Scalar{1} - (this->sowcr_ + this->sgl_);
|
||||
exportedCheckValues[4] = this->swu_;
|
||||
}
|
||||
|
||||
/// Descriptive textual summary of this check.
|
||||
std::string description() const override
|
||||
{
|
||||
return { "Mobile displacing oil in three point "
|
||||
"horizontally scaled oil/water system" };
|
||||
}
|
||||
|
||||
/// Textual representation of the consistency condition.
|
||||
std::string condition() const override
|
||||
{
|
||||
return { "SWCR < 1-SOWCR-SGL < SWU" };
|
||||
}
|
||||
|
||||
/// Retrieve names of the exported check values.
|
||||
///
|
||||
/// \param[in,out] headers Pointer to contiguous sequence of at
|
||||
/// least numExportedCheckValues() strings.
|
||||
void columnNames(std::string* headers) const override
|
||||
{
|
||||
headers[0] = "SGL";
|
||||
headers[1] = "SOWCR";
|
||||
headers[2] = "SWCR";
|
||||
headers[3] = "1-SOWCR-SGL";
|
||||
headers[4] = "SWU";
|
||||
}
|
||||
|
||||
private:
|
||||
/// Minimum gas saturation.
|
||||
Scalar sgl_;
|
||||
|
||||
/// Critical oil saturation in two-phase oil/water system.
|
||||
Scalar sowcr_;
|
||||
|
||||
/// Critical water saturation.
|
||||
Scalar swcr_;
|
||||
|
||||
/// Maximum water saturation.
|
||||
Scalar swu_;
|
||||
|
||||
/// Run check against a set of saturation function end-points.
|
||||
///
|
||||
/// \param[in] endPoints Set of saturation function end-points.
|
||||
/// Might for instance be the scaled end-points of the drainage
|
||||
/// functions in a single grid block or the unscaled end-points
|
||||
/// of the tabulated saturation functions in a single saturation
|
||||
/// region.
|
||||
void testImpl(const EclEpsScalingPointsInfo<Scalar>& endPoints) override;
|
||||
};
|
||||
|
||||
} // namespace Opm::Satfunc::PhaseChecks::ThreePointHorizontal
|
||||
|
||||
#endif // THREE_POINT_HORIZONTAL_CONSISTENCY_CHECKS_HPP_INCLUDED
|
1687
tests/test_ThreePointHorizontalSatfuncConsistencyChecks.cpp
Normal file
1687
tests/test_ThreePointHorizontalSatfuncConsistencyChecks.cpp
Normal file
File diff suppressed because it is too large
Load Diff
Loading…
Reference in New Issue
Block a user