opm-simulators/opm/core/InjectionSpecification.hpp

27 lines
541 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>
namespace Opm
{
2012-03-27 09:57:01 -05:00
2012-03-28 08:49:39 -05:00
struct InjectionSpecification
{
enum ControlMode
{
NONE, RATE, REIN, RESV, VREP, WGRA, FLD
};
InjectionSpecification();
surface_component component_;
ControlMode control_mode_;
double surface_injection_target_;
double reinjection_fraction_target_;
double BHP_target_;
2012-03-27 09:57:01 -05:00
};
}
#endif /* OPM_INJECTORSPECIFICATION_HPP */