* Added keyword "OPERNUM" to supported keywords in Eclipse3DProperties * Updated tests to use Eclipse3DProperties API instead of GridProperties * Moved init sequence of title into constructor * ThresholdPressure and SimulationConfig now tasks Deck ref instead of shared_ptr * Removed obsolete test and unused tests that tested gridProperties * Refactor use of TableManager. Is now a reference. * Added non-const GridProperties.getKeyword(size_t i)
107 lines
3.7 KiB
C++
107 lines
3.7 KiB
C++
/*
|
|
Copyright 2014 Andreas Lauser
|
|
|
|
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 ECLIPSE_GRIDPROPERTY_INITIALIZERS_HPP
|
|
#define ECLIPSE_GRIDPROPERTY_INITIALIZERS_HPP
|
|
|
|
#include <vector>
|
|
|
|
/*
|
|
This classes initialize GridProperty objects. Most commonly, they just get a constant
|
|
value but some properties (e.g, some of these related to endpoint scaling) need more
|
|
complex schemes like table lookups.
|
|
*/
|
|
namespace Opm {
|
|
|
|
class EclipseGrid;
|
|
class TableManager;
|
|
template <typename T> class GridProperties;
|
|
|
|
|
|
template< typename T >
|
|
class GridPropertyInitFunction {
|
|
public:
|
|
using signature = std::vector< T >(*)(
|
|
size_t,
|
|
const TableManager*,
|
|
const EclipseGrid*,
|
|
GridProperties<int>*,
|
|
GridProperties<double>*);
|
|
|
|
GridPropertyInitFunction(
|
|
signature,
|
|
const TableManager*,
|
|
const EclipseGrid*,
|
|
GridProperties<int>*,
|
|
GridProperties<double>*
|
|
);
|
|
|
|
GridPropertyInitFunction( T );
|
|
std::vector< T > operator()( size_t ) const;
|
|
|
|
private:
|
|
signature f = nullptr;
|
|
T constant;
|
|
const TableManager* tm = nullptr;
|
|
const EclipseGrid* eg = nullptr;
|
|
GridProperties<int>* igp = nullptr;
|
|
GridProperties<double>* dgp = nullptr;
|
|
};
|
|
|
|
template< typename T >
|
|
class GridPropertyPostFunction {
|
|
public:
|
|
using signature = void(*)( std::vector< T >&,
|
|
const TableManager*,
|
|
const EclipseGrid*,
|
|
GridProperties<int>*,
|
|
GridProperties<double>*
|
|
);
|
|
|
|
GridPropertyPostFunction() = default;
|
|
GridPropertyPostFunction(
|
|
signature,
|
|
const TableManager*,
|
|
const EclipseGrid*,
|
|
GridProperties<int>*,
|
|
GridProperties<double>*
|
|
);
|
|
|
|
void operator()( std::vector< T >& ) const;
|
|
|
|
private:
|
|
signature f = nullptr;
|
|
const TableManager* tm = nullptr;
|
|
const EclipseGrid* eg = nullptr;
|
|
GridProperties<int>* igp = nullptr;
|
|
GridProperties<double>* dgp = nullptr;
|
|
|
|
};
|
|
|
|
// initialize the TEMPI grid property using the temperature vs depth
|
|
// table (stemming from the TEMPVD or the RTEMPVD keyword)
|
|
// std::vector< double > temperature_lookup( size_t, const EclipseState& );
|
|
std::vector< double > temperature_lookup( size_t,
|
|
const TableManager*,
|
|
const EclipseGrid*,
|
|
GridProperties<int>*,
|
|
GridProperties<double>*);
|
|
}
|
|
|
|
#endif // ECLIPSE_GRIDPROPERTY_INITIALIZERS_HPP
|