mirror of
https://github.com/OPM/opm-simulators.git
synced 2024-12-23 07:53:29 -06:00
bf967e50a7
and give a clear message about non-accessible table ID in the function isVFPActive() in WellInterface.
103 lines
3.1 KiB
C++
103 lines
3.1 KiB
C++
/*
|
|
Copyright 2015 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/>.
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
#include "config.h"
|
|
|
|
#include <opm/autodiff/VFPInjProperties.hpp>
|
|
#include <opm/core/props/BlackoilPhases.hpp>
|
|
#include <opm/common/ErrorMacros.hpp>
|
|
|
|
#include <opm/autodiff/VFPHelpers.hpp>
|
|
|
|
namespace Opm {
|
|
|
|
|
|
VFPInjProperties::VFPInjProperties() {
|
|
|
|
}
|
|
|
|
|
|
VFPInjProperties::VFPInjProperties(const VFPInjTable* table){
|
|
m_tables[table->getTableNum()] = table;
|
|
}
|
|
|
|
|
|
VFPInjProperties::VFPInjProperties(const VFPInjProperties::InjTable& tables) {
|
|
for (const auto& table : tables) {
|
|
m_tables[table.first] = table.second.get();
|
|
}
|
|
}
|
|
|
|
|
|
double VFPInjProperties::bhp(int table_id,
|
|
const double& aqua,
|
|
const double& liquid,
|
|
const double& vapour,
|
|
const double& thp_arg) const {
|
|
const VFPInjTable* table = detail::getTable(m_tables, table_id);
|
|
|
|
detail::VFPEvaluation retval = detail::bhp(table, aqua, liquid, vapour, thp_arg);
|
|
return retval.value;
|
|
}
|
|
|
|
|
|
double VFPInjProperties::thp(int table_id,
|
|
const double& aqua,
|
|
const double& liquid,
|
|
const double& vapour,
|
|
const double& bhp_arg) const {
|
|
const VFPInjTable* table = detail::getTable(m_tables, table_id);
|
|
const VFPInjTable::array_type& data = table->getTable();
|
|
|
|
//Find interpolation variables
|
|
double flo = detail::getFlo(aqua, liquid, vapour, table->getFloType());
|
|
|
|
const std::vector<double> thp_array = table->getTHPAxis();
|
|
int nthp = thp_array.size();
|
|
|
|
/**
|
|
* Find the function bhp_array(thp) by creating a 1D view of the data
|
|
* by interpolating for every value of thp. This might be somewhat
|
|
* expensive, but let us assome that nthp is small
|
|
*/
|
|
auto flo_i = detail::findInterpData(flo, table->getFloAxis());
|
|
std::vector<double> bhp_array(nthp);
|
|
for (int i=0; i<nthp; ++i) {
|
|
auto thp_i = detail::findInterpData(thp_array[i], thp_array);
|
|
bhp_array[i] = detail::interpolate(data, flo_i, thp_i).value;
|
|
}
|
|
|
|
double retval = detail::findTHP(bhp_array, thp_array, bhp_arg);
|
|
return retval;
|
|
}
|
|
|
|
const VFPInjTable* VFPInjProperties::getTable(const int table_id) const {
|
|
return detail::getTable(m_tables, table_id);
|
|
}
|
|
|
|
bool VFPInjProperties::hasTable(const int table_id) const {
|
|
return detail::hasTable(m_tables, table_id);
|
|
}
|
|
|
|
} //Namespace Opm
|