mirror of
https://github.com/OPM/opm-simulators.git
synced 2024-12-18 21:43:27 -06:00
13 lines
284 B
C++
13 lines
284 B
C++
#include <opm/core/InjectionSpecification.hpp>
|
|
namespace Opm
|
|
{
|
|
|
|
InjectionSpecification::InjectionSpecification()
|
|
: injector_type_(WATER), control_mode_(NONE), surface_flow_max_rate_(0.0),
|
|
reinjection_fraction_target_(0.0), BHP_limit_(0.0)
|
|
{
|
|
|
|
}
|
|
|
|
|
|
} // namespace Opm
|