2012-03-27 09:57:01 -05:00
|
|
|
#ifndef OPM_INJECTORSPECIFICATION_HPP
|
|
|
|
#define OPM_INJECTORSPECIFICATION_HPP
|
|
|
|
|
2013-03-18 04:33:34 -05:00
|
|
|
#include <opm/core/wells.h>
|
2012-04-26 06:57:19 -05:00
|
|
|
|
2012-03-28 08:49:39 -05:00
|
|
|
namespace Opm
|
|
|
|
{
|
2012-03-27 09:57:01 -05:00
|
|
|
|
2012-03-28 08:49:39 -05:00
|
|
|
struct InjectionSpecification
|
|
|
|
{
|
|
|
|
|
|
|
|
enum ControlMode
|
|
|
|
{
|
2012-05-02 02:25:19 -05:00
|
|
|
NONE, RATE, RESV, BHP, THP, REIN, VREP, GRUP, FLD
|
2012-03-28 08:49:39 -05:00
|
|
|
};
|
|
|
|
|
2012-04-26 06:57:19 -05:00
|
|
|
enum InjectorType
|
|
|
|
{
|
|
|
|
WATER, OIL, GAS
|
|
|
|
};
|
|
|
|
|
2012-05-02 02:25:19 -05:00
|
|
|
enum GuideRateType
|
|
|
|
{
|
|
|
|
RAT, NONE_GRT
|
|
|
|
};
|
|
|
|
|
2012-03-28 08:49:39 -05:00
|
|
|
InjectionSpecification();
|
|
|
|
|
2012-04-26 06:57:19 -05:00
|
|
|
InjectorType injector_type_;
|
2012-03-28 08:49:39 -05:00
|
|
|
ControlMode control_mode_;
|
2012-03-29 11:34:51 -05:00
|
|
|
double surface_flow_max_rate_;
|
2012-05-02 02:25:19 -05:00
|
|
|
double reservoir_flow_max_rate_;
|
2012-03-29 11:34:51 -05:00
|
|
|
double BHP_limit_;
|
2012-05-02 02:25:19 -05:00
|
|
|
double reinjection_fraction_target_;
|
2012-05-09 08:54:25 -05:00
|
|
|
double voidage_replacment_fraction_;
|
2012-05-02 02:25:19 -05:00
|
|
|
double guide_rate_;
|
|
|
|
GuideRateType guide_rate_type_;
|
2012-03-27 09:57:01 -05:00
|
|
|
};
|
2012-04-26 06:57:19 -05:00
|
|
|
|
2012-03-27 09:57:01 -05:00
|
|
|
}
|
2012-04-26 06:57:19 -05:00
|
|
|
|
2012-03-27 09:57:01 -05:00
|
|
|
#endif /* OPM_INJECTORSPECIFICATION_HPP */
|
|
|
|
|