opm-simulators/opm/core/InjectionSpecification.hpp
2012-04-13 20:41:09 +02:00

28 lines
586 B
C++

#ifndef OPM_INJECTORSPECIFICATION_HPP
#define OPM_INJECTORSPECIFICATION_HPP
#include <opm/core/newwells.h>
namespace Opm
{
struct InjectionSpecification
{
enum ControlMode
{
NONE, ORAT, REIN, RESV, VREP, WGRA, FLD, GRUP
};
InjectionSpecification();
surface_component injector_type_;
ControlMode control_mode_;
double surface_flow_max_rate_;
double reinjection_fraction_target_;
double fluid_volume_max_rate_;
double BHP_limit_;
};
}
#endif /* OPM_INJECTORSPECIFICATION_HPP */