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

28 lines
586 B
C++
Raw Normal View History

2012-03-27 16:57:01 +02:00
#ifndef OPM_INJECTORSPECIFICATION_HPP
#define OPM_INJECTORSPECIFICATION_HPP
2012-03-28 15:49:39 +02:00
#include <opm/core/newwells.h>
namespace Opm
{
2012-03-27 16:57:01 +02:00
2012-03-28 15:49:39 +02:00
struct InjectionSpecification
{
enum ControlMode
{
NONE, ORAT, REIN, RESV, VREP, WGRA, FLD, GRUP
2012-03-28 15:49:39 +02:00
};
InjectionSpecification();
surface_component injector_type_;
2012-03-28 15:49:39 +02:00
ControlMode control_mode_;
double surface_flow_max_rate_;
2012-03-28 15:49:39 +02:00
double reinjection_fraction_target_;
double fluid_volume_max_rate_;
double BHP_limit_;
2012-03-27 16:57:01 +02:00
};
}
#endif /* OPM_INJECTORSPECIFICATION_HPP */