mirror of
https://github.com/OPM/opm-simulators.git
synced 2024-12-18 21:43:27 -06:00
18 lines
352 B
C++
18 lines
352 B
C++
#include <opm/core/ProductionSpecification.hpp>
|
|
|
|
namespace Opm
|
|
{
|
|
|
|
ProductionSpecification::ProductionSpecification()
|
|
: component_(OIL),
|
|
control_mode_(NONE_CM),
|
|
procedure_(NONE_P),
|
|
oil_production_target_(-1.0),
|
|
water_production_target_(-1.0),
|
|
liquid_production_target_(-1.0),
|
|
BHP_target_(-1.0)
|
|
{
|
|
}
|
|
|
|
}
|