mirror of
https://github.com/OPM/opm-simulators.git
synced 2025-02-25 18:55:30 -06:00
Using internal enum InjectorType instead of (removed) enum SurfaceComponent from newwells.h.
This commit is contained in:
parent
597a2cc7af
commit
3f3c5a8516
@ -2,6 +2,7 @@
|
|||||||
#define OPM_INJECTORSPECIFICATION_HPP
|
#define OPM_INJECTORSPECIFICATION_HPP
|
||||||
|
|
||||||
#include <opm/core/newwells.h>
|
#include <opm/core/newwells.h>
|
||||||
|
|
||||||
namespace Opm
|
namespace Opm
|
||||||
{
|
{
|
||||||
|
|
||||||
@ -13,15 +14,22 @@ namespace Opm
|
|||||||
NONE, ORAT, REIN, RESV, VREP, WGRA, FLD, GRUP
|
NONE, ORAT, REIN, RESV, VREP, WGRA, FLD, GRUP
|
||||||
};
|
};
|
||||||
|
|
||||||
|
enum InjectorType
|
||||||
|
{
|
||||||
|
WATER, OIL, GAS
|
||||||
|
};
|
||||||
|
|
||||||
InjectionSpecification();
|
InjectionSpecification();
|
||||||
|
|
||||||
SurfaceComponent injector_type_;
|
InjectorType injector_type_;
|
||||||
ControlMode control_mode_;
|
ControlMode control_mode_;
|
||||||
double surface_flow_max_rate_;
|
double surface_flow_max_rate_;
|
||||||
double reinjection_fraction_target_;
|
double reinjection_fraction_target_;
|
||||||
double fluid_volume_max_rate_;
|
double fluid_volume_max_rate_;
|
||||||
double BHP_limit_;
|
double BHP_limit_;
|
||||||
};
|
};
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
#endif /* OPM_INJECTORSPECIFICATION_HPP */
|
#endif /* OPM_INJECTORSPECIFICATION_HPP */
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user