opm-simulators/opm/core/wells/InjectionSpecification.hpp

44 lines
851 B
C++
Raw Normal View History

2012-03-27 09:57:01 -05:00
#ifndef OPM_INJECTORSPECIFICATION_HPP
#define OPM_INJECTORSPECIFICATION_HPP
#include <opm/core/wells.h>
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
{
NONE, RATE, RESV, BHP, THP, REIN, VREP, GRUP, FLD
2012-03-28 08:49:39 -05:00
};
enum InjectorType
{
WATER, OIL, GAS
};
enum GuideRateType
{
RAT, NONE_GRT
};
2012-03-28 08:49:39 -05:00
InjectionSpecification();
InjectorType injector_type_;
2012-03-28 08:49:39 -05:00
ControlMode control_mode_;
double surface_flow_max_rate_;
double reservoir_flow_max_rate_;
double BHP_limit_;
double reinjection_fraction_target_;
double voidage_replacment_fraction_;
double guide_rate_;
GuideRateType guide_rate_type_;
2012-03-27 09:57:01 -05:00
};
2012-03-27 09:57:01 -05:00
}
2012-03-27 09:57:01 -05:00
#endif /* OPM_INJECTORSPECIFICATION_HPP */