opm-simulators/opm/core/InjectionSpecification.hpp

36 lines
660 B
C++
Raw Normal View History

2012-03-27 09:57:01 -05:00
#ifndef OPM_INJECTORSPECIFICATION_HPP
#define OPM_INJECTORSPECIFICATION_HPP
2012-03-28 08:49:39 -05:00
#include <opm/core/newwells.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, ORAT, REIN, RESV, VREP, WGRA, FLD, GRUP
2012-03-28 08:49:39 -05:00
};
enum InjectorType
{
WATER, OIL, GAS
};
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_;
2012-03-28 08:49:39 -05:00
double reinjection_fraction_target_;
double fluid_volume_max_rate_;
double BHP_limit_;
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 */