* Removed all references to state, need to fix initPORV * Made TransMult return raw pointer const GridProperty over shared pointer. * Moved getDirectionProperty and hasDirectionProperty out of API ** Removed tests as these methods are no longer public * Moved grid properties stuff to new class * Removed use of deck in SatfuncInitializers, moved to TableManager * Removed shared_ptr for several members of EclipseState and 3DProperties * Moved region-property from EclipseState to Eclipse3DProperties * Moved initGridopts from EclipseState to Eclipse3DProperties * Made several Eclipse3DProperties methods private * Postprocessors take raw pointers, not shared_ptr---these will be phased out * Fixed return reference instead of copy several places ** GridProperties<T> in Eclipse3DProperties are now references, not shared_ptr ** Eclipse3DProperties takes const Deck&, not shared_ptr * Removed obsolete tests
237 lines
10 KiB
C++
237 lines
10 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_SATFUNCPROPERTY_INITIALIZERS_HPP
|
|
#define ECLIPSE_SATFUNCPROPERTY_INITIALIZERS_HPP
|
|
|
|
#include <vector>
|
|
#include <string>
|
|
|
|
#include <opm/parser/eclipse/EclipseState/Grid/GridProperties.hpp>
|
|
|
|
namespace Opm {
|
|
|
|
class EclipseGrid;
|
|
class TableManager;
|
|
|
|
std::vector<double> SGLEndpoint(size_t,
|
|
const TableManager*,
|
|
const EclipseGrid*,
|
|
GridProperties<int>*,
|
|
GridProperties<double>*);
|
|
|
|
std::vector<double> ISGLEndpoint(size_t,
|
|
const TableManager*,
|
|
const EclipseGrid*,
|
|
GridProperties<int>*,
|
|
GridProperties<double>*);
|
|
|
|
std::vector<double> SGUEndpoint(size_t,
|
|
const TableManager*,
|
|
const EclipseGrid*,
|
|
GridProperties<int>*,
|
|
GridProperties<double>*);
|
|
|
|
std::vector<double> ISGUEndpoint(size_t, const TableManager*,
|
|
const EclipseGrid*,
|
|
GridProperties<int>*,
|
|
GridProperties<double>*);
|
|
|
|
std::vector<double> SWLEndpoint(size_t,
|
|
const TableManager*,
|
|
const EclipseGrid*,
|
|
GridProperties<int>*,
|
|
GridProperties<double>*);
|
|
|
|
std::vector<double> ISWLEndpoint(size_t,
|
|
const TableManager*,
|
|
const EclipseGrid*,
|
|
GridProperties<int>*,
|
|
GridProperties<double>*);
|
|
|
|
std::vector<double> SWUEndpoint(size_t,
|
|
const TableManager*,
|
|
const EclipseGrid*,
|
|
GridProperties<int>*,
|
|
GridProperties<double>*);
|
|
|
|
std::vector<double> ISWUEndpoint(size_t,
|
|
const TableManager*,
|
|
const EclipseGrid*,
|
|
GridProperties<int>*,
|
|
GridProperties<double>*);
|
|
|
|
std::vector<double> SGCREndpoint(size_t,
|
|
const TableManager*,
|
|
const EclipseGrid*,
|
|
GridProperties<int>*,
|
|
GridProperties<double>*);
|
|
|
|
std::vector<double> ISGCREndpoint(size_t,
|
|
const TableManager*,
|
|
const EclipseGrid*,
|
|
GridProperties<int>*,
|
|
GridProperties<double>*);
|
|
|
|
std::vector<double> SOWCREndpoint(size_t,
|
|
const TableManager*,
|
|
const EclipseGrid*,
|
|
GridProperties<int>*,
|
|
GridProperties<double>*);
|
|
|
|
std::vector<double> ISOWCREndpoint(size_t,
|
|
const TableManager*,
|
|
const EclipseGrid*,
|
|
GridProperties<int>*,
|
|
GridProperties<double>*);
|
|
|
|
std::vector<double> SOGCREndpoint(size_t,
|
|
const TableManager*,
|
|
const EclipseGrid*,
|
|
GridProperties<int>*,
|
|
GridProperties<double>*);
|
|
|
|
std::vector<double> ISOGCREndpoint(size_t,
|
|
const TableManager*,
|
|
const EclipseGrid*,
|
|
GridProperties<int>*,
|
|
GridProperties<double>*);
|
|
|
|
std::vector<double> SWCREndpoint(size_t,
|
|
const TableManager*,
|
|
const EclipseGrid*,
|
|
GridProperties<int>*,
|
|
GridProperties<double>*);
|
|
|
|
std::vector<double> ISWCREndpoint(size_t,
|
|
const TableManager*,
|
|
const EclipseGrid*,
|
|
GridProperties<int>*,
|
|
GridProperties<double>*);
|
|
|
|
std::vector<double> PCWEndpoint(size_t,
|
|
const TableManager*,
|
|
const EclipseGrid*,
|
|
GridProperties<int>*,
|
|
GridProperties<double>*);
|
|
|
|
std::vector<double> IPCWEndpoint(size_t,
|
|
const TableManager*,
|
|
const EclipseGrid*,
|
|
GridProperties<int>*,
|
|
GridProperties<double>*);
|
|
|
|
std::vector<double> PCGEndpoint(size_t,
|
|
const TableManager*,
|
|
const EclipseGrid*,
|
|
GridProperties<int>*,
|
|
GridProperties<double>*);
|
|
|
|
std::vector<double> IPCGEndpoint(size_t,
|
|
const TableManager*,
|
|
const EclipseGrid*,
|
|
GridProperties<int>*,
|
|
GridProperties<double>*);
|
|
|
|
std::vector<double> KRWEndpoint(size_t,
|
|
const TableManager*,
|
|
const EclipseGrid*,
|
|
GridProperties<int>*,
|
|
GridProperties<double>*);
|
|
|
|
std::vector<double> IKRWEndpoint(size_t,
|
|
const TableManager*,
|
|
const EclipseGrid*,
|
|
GridProperties<int>*,
|
|
GridProperties<double>*);
|
|
|
|
std::vector<double> KRWREndpoint(size_t,
|
|
const TableManager*,
|
|
const EclipseGrid*,
|
|
GridProperties<int>*,
|
|
GridProperties<double>*);
|
|
|
|
std::vector<double> IKRWREndpoint(size_t,
|
|
const TableManager*,
|
|
const EclipseGrid*,
|
|
GridProperties<int>*,
|
|
GridProperties<double>*);
|
|
|
|
std::vector<double> KROEndpoint(size_t,
|
|
const TableManager*,
|
|
const EclipseGrid*,
|
|
GridProperties<int>*,
|
|
GridProperties<double>*);
|
|
|
|
std::vector<double> IKROEndpoint(size_t,
|
|
const TableManager*,
|
|
const EclipseGrid*,
|
|
GridProperties<int>*,
|
|
GridProperties<double>*);
|
|
|
|
std::vector<double> KRORWEndpoint(size_t,
|
|
const TableManager*,
|
|
const EclipseGrid*,
|
|
GridProperties<int>*,
|
|
GridProperties<double>*);
|
|
|
|
std::vector<double> IKRORWEndpoint(size_t,
|
|
const TableManager*,
|
|
const EclipseGrid*,
|
|
GridProperties<int>*,
|
|
GridProperties<double>*);
|
|
|
|
std::vector<double> KRORGEndpoint(size_t,
|
|
const TableManager*,
|
|
const EclipseGrid*,
|
|
GridProperties<int>*,
|
|
GridProperties<double>*);
|
|
|
|
std::vector<double> IKRORGEndpoint(size_t,
|
|
const TableManager*,
|
|
const EclipseGrid*,
|
|
GridProperties<int>*,
|
|
GridProperties<double>*);
|
|
|
|
std::vector<double> KRGEndpoint(size_t,
|
|
const TableManager*,
|
|
const EclipseGrid*,
|
|
GridProperties<int>*,
|
|
GridProperties<double>*);
|
|
|
|
std::vector<double> IKRGEndpoint(size_t,
|
|
const TableManager*,
|
|
const EclipseGrid*,
|
|
GridProperties<int>*,
|
|
GridProperties<double>*);
|
|
|
|
std::vector<double> KRGREndpoint(size_t,
|
|
const TableManager*,
|
|
const EclipseGrid*,
|
|
GridProperties<int>*,
|
|
GridProperties<double>*);
|
|
|
|
std::vector<double> IKRGREndpoint(size_t,
|
|
const TableManager*,
|
|
const EclipseGrid*,
|
|
GridProperties<int>*,
|
|
GridProperties<double>*);
|
|
}
|
|
|
|
#endif // ECLIPSE_SATFUNCPROPERTY_INITIALIZERS_HPP
|