mirror of
https://github.com/OPM/opm-simulators.git
synced 2025-01-18 21:22:57 -06:00
Added default constructor.
This commit is contained in:
parent
100108b5ad
commit
8ac62545cf
@ -171,6 +171,14 @@ namespace Opm
|
|||||||
{
|
{
|
||||||
|
|
||||||
|
|
||||||
|
/// Default constructor.
|
||||||
|
WellsManager::WellsManager()
|
||||||
|
: w_(0)
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/// Construct wells from deck.
|
/// Construct wells from deck.
|
||||||
WellsManager::WellsManager(const Opm::EclipseGridParser& deck,
|
WellsManager::WellsManager(const Opm::EclipseGridParser& deck,
|
||||||
const UnstructuredGrid& grid,
|
const UnstructuredGrid& grid,
|
||||||
|
@ -38,6 +38,9 @@ namespace Opm
|
|||||||
class WellsManager
|
class WellsManager
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
|
/// Default constructor -- no wells.
|
||||||
|
WellsManager();
|
||||||
|
|
||||||
/// Construct from input deck and grid.
|
/// Construct from input deck and grid.
|
||||||
/// The permeability argument may be zero if the input contain
|
/// The permeability argument may be zero if the input contain
|
||||||
/// well productivity indices, otherwise it must be given in
|
/// well productivity indices, otherwise it must be given in
|
||||||
|
Loading…
Reference in New Issue
Block a user