mirror of
https://github.com/OPM/opm-simulators.git
synced 2026-09-05 04:40:19 -05:00
Added constuctor to WellManager which used Wells struct.
This commit is contained in:
@@ -223,6 +223,10 @@ namespace Opm
|
|||||||
: w_(0)
|
: w_(0)
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
WellsManager::WellsManager(struct Wells* W)
|
||||||
|
: w_(W)
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -41,7 +41,10 @@ namespace Opm
|
|||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
/// Default constructor -- no wells.
|
/// Default constructor -- no wells.
|
||||||
WellsManager();
|
WellsManager();
|
||||||
|
/// Construct from mrst type output.
|
||||||
|
/// Wellmanger is not properly initialized
|
||||||
|
WellsManager(struct Wells* W);
|
||||||
|
|
||||||
/// 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
|
||||||
|
|||||||
Reference in New Issue
Block a user