mirror of
https://github.com/OPM/opm-simulators.git
synced 2025-02-25 18:55:30 -06:00
Provide way of shadowing only some properties
The current implementations of IncompPropertiesInterface are very all-or-nothing. In some situations, you want to read rock and fluid properties from an Eclipse file, but use analytical functions for the unsaturated properties. Or you want to update properties based on a marching filter. This patch provides a way to mix various property objects, or to "shadow" the properties with a raw array of data, so you don't have to reimplement the entire interface just to make a small change.
This commit is contained in:
192
opm/core/props/IncompPropertiesShadow_impl.hpp
Normal file
192
opm/core/props/IncompPropertiesShadow_impl.hpp
Normal file
@@ -0,0 +1,192 @@
|
||||
/* Copyright (c) 2013 Uni Research AS.
|
||||
This file is licensed under the GNU General Public License v3.0 or later. */
|
||||
#ifndef OPM_INCOMPPROPERTIESSHADOW_HEADER_INCLUDED
|
||||
#error Do not include IncompPropertiesShadow_impl.hpp directly!
|
||||
#endif /* OPM_INCOMPPROPERTIESSHADOW_HEADER_INCLUDED */
|
||||
|
||||
namespace Opm
|
||||
{
|
||||
/**
|
||||
* Initialize so that all properties are retrieved from original.
|
||||
*/
|
||||
inline IncompPropertiesShadow::IncompPropertiesShadow (const IncompPropertiesInterface& original)
|
||||
: prototype (original)
|
||||
, shadowed (0)
|
||||
, poro_ (0)
|
||||
, perm_ (0)
|
||||
, visc_ (0)
|
||||
, dens_ (0)
|
||||
, surf_ (0)
|
||||
{
|
||||
}
|
||||
|
||||
/**
|
||||
* The format of the prototype and the shadow must be the same,
|
||||
* so these methods should always be forwarded directly.
|
||||
*/
|
||||
inline int IncompPropertiesShadow::numDimensions () const
|
||||
{
|
||||
return prototype.numDimensions();
|
||||
}
|
||||
|
||||
inline int IncompPropertiesShadow::numCells () const
|
||||
{
|
||||
return prototype.numCells();
|
||||
}
|
||||
|
||||
inline int IncompPropertiesShadow::numPhases () const
|
||||
{
|
||||
return prototype.numPhases();
|
||||
}
|
||||
|
||||
/**
|
||||
* These methods are sufficiently advanced (the s parameter is a
|
||||
* non-integral index) for there not to be a trivial implementation,
|
||||
* so they are not overridden yet.
|
||||
*/
|
||||
inline void IncompPropertiesShadow::relperm (const int n,
|
||||
const double* s,
|
||||
const int* cells,
|
||||
double* kr,
|
||||
double* dkrds) const
|
||||
{
|
||||
prototype.relperm (n, s, cells, kr, dkrds);
|
||||
}
|
||||
|
||||
inline void IncompPropertiesShadow::capPress (const int n,
|
||||
const double* s,
|
||||
const int* cells,
|
||||
double* pc,
|
||||
double* dpcds) const
|
||||
{
|
||||
prototype.capPress (n, s, cells, pc, dpcds);
|
||||
}
|
||||
|
||||
inline void IncompPropertiesShadow::satRange (const int n,
|
||||
const int* cells,
|
||||
double* smin,
|
||||
double* smax) const
|
||||
{
|
||||
prototype.satRange (n, cells, smin, smax);
|
||||
}
|
||||
|
||||
/**
|
||||
* Return the new value if indicated in the bitfield, otherwise
|
||||
* use the original value from the other object.
|
||||
*/
|
||||
inline const double* IncompPropertiesShadow::porosity () const
|
||||
{
|
||||
return (shadowed & POROSITY) ? poro_ : prototype.porosity ();
|
||||
}
|
||||
|
||||
inline const double* IncompPropertiesShadow::permeability () const
|
||||
{
|
||||
return (shadowed & PERMEABILITY) ? perm_ : prototype.permeability ();
|
||||
}
|
||||
|
||||
inline const double* IncompPropertiesShadow::viscosity () const
|
||||
{
|
||||
return (shadowed & VISCOSITY) ? visc_ : prototype.viscosity ();
|
||||
}
|
||||
|
||||
inline const double* IncompPropertiesShadow::density () const
|
||||
{
|
||||
return (shadowed & DENSITY) ? dens_ : prototype.density ();
|
||||
}
|
||||
|
||||
inline const double* IncompPropertiesShadow::surfaceDensity () const
|
||||
{
|
||||
return (shadowed & SURFACE_DENSITY) ? surf_ : prototype.surfaceDensity ();
|
||||
}
|
||||
|
||||
/**
|
||||
* Store the pointer and indicate that the new value should be used.
|
||||
*/
|
||||
inline IncompPropertiesShadow& IncompPropertiesShadow::usePorosity (const double* poro)
|
||||
{
|
||||
this->poro_ = poro;
|
||||
shadowed |= POROSITY;
|
||||
return *this;
|
||||
}
|
||||
|
||||
inline IncompPropertiesShadow& IncompPropertiesShadow::usePermeability (const double* perm)
|
||||
{
|
||||
this->perm_ = perm;
|
||||
shadowed |= PERMEABILITY;
|
||||
return *this;
|
||||
}
|
||||
|
||||
inline IncompPropertiesShadow& IncompPropertiesShadow::useViscosity (const double* visc)
|
||||
{
|
||||
this->visc_ = visc;
|
||||
shadowed |= VISCOSITY;
|
||||
return *this;
|
||||
}
|
||||
|
||||
inline IncompPropertiesShadow& IncompPropertiesShadow::useDensity (const double* dens)
|
||||
{
|
||||
this->dens_ = dens;
|
||||
shadowed |= DENSITY;
|
||||
return *this;
|
||||
}
|
||||
|
||||
inline IncompPropertiesShadow& IncompPropertiesShadow::useSurfaceDensity (const double* surf)
|
||||
{
|
||||
this->surf_ = surf;
|
||||
shadowed |= SURFACE_DENSITY;
|
||||
return *this;
|
||||
}
|
||||
|
||||
/**
|
||||
* Copy the pointer from another property interface, after checking
|
||||
* that they are compatible.
|
||||
*/
|
||||
inline IncompPropertiesShadow& IncompPropertiesShadow::usePorosity (const IncompPropertiesInterface& other)
|
||||
{
|
||||
assert (prototype.numCells() == other.numCells());
|
||||
return usePorosity (other.porosity());
|
||||
}
|
||||
|
||||
inline IncompPropertiesShadow& IncompPropertiesShadow::usePermeability (const IncompPropertiesInterface& other)
|
||||
{
|
||||
assert (prototype.numCells() == other.numCells());
|
||||
assert (prototype.numDimensions() == other.numDimensions());
|
||||
return usePermeability (other.permeability());
|
||||
}
|
||||
|
||||
inline IncompPropertiesShadow& IncompPropertiesShadow::useViscosity (const IncompPropertiesInterface& other)
|
||||
{
|
||||
assert (prototype.numPhases() == other.numPhases());
|
||||
return useViscosity (other.viscosity());
|
||||
}
|
||||
|
||||
inline IncompPropertiesShadow& IncompPropertiesShadow::useDensity (const IncompPropertiesInterface& other)
|
||||
{
|
||||
assert (prototype.numPhases() == other.numPhases());
|
||||
return useDensity (other.density());
|
||||
}
|
||||
|
||||
inline IncompPropertiesShadow& IncompPropertiesShadow::useSurfaceDensity (const IncompPropertiesInterface& other)
|
||||
{
|
||||
assert (prototype.numPhases() == other.numPhases());
|
||||
return useSurfaceDensity (other.surfaceDensity());
|
||||
}
|
||||
|
||||
/**
|
||||
* Convenience methods to set several set of properties at once.
|
||||
*/
|
||||
inline IncompPropertiesShadow& IncompPropertiesShadow::useRockProps (const IncompPropertiesInterface& other)
|
||||
{
|
||||
return usePorosity (other).usePermeability (other);
|
||||
}
|
||||
|
||||
inline IncompPropertiesShadow& IncompPropertiesShadow::useFluidProps (const IncompPropertiesInterface& other)
|
||||
{
|
||||
return useViscosity (other).useDensity (other).useSurfaceDensity (other);
|
||||
}
|
||||
|
||||
inline IncompPropertiesShadow& IncompPropertiesShadow::useRockAndFluidProps (const IncompPropertiesInterface& other)
|
||||
{
|
||||
return useRockProps (other).useFluidProps (other);
|
||||
}
|
||||
} /* namespace Opm */
|
||||
Reference in New Issue
Block a user