mirror of
https://github.com/OPM/opm-simulators.git
synced 2024-12-19 05:53:28 -06:00
Added constuctor to WellManager which used Wells struct.
This commit is contained in:
parent
abd8973382
commit
0f3423cbf4
@ -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
|
||||||
|
Loading…
Reference in New Issue
Block a user