2012-03-27 16:57:01 +02:00
|
|
|
#include <opm/core/ProductionSpecification.hpp>
|
|
|
|
|
|
2012-03-28 15:49:39 +02:00
|
|
|
namespace Opm
|
2012-03-27 16:57:01 +02:00
|
|
|
{
|
|
|
|
|
|
2012-03-28 15:49:39 +02:00
|
|
|
ProductionSpecification::ProductionSpecification()
|
2012-03-29 18:34:51 +02:00
|
|
|
:
|
2012-05-02 09:26:36 +02:00
|
|
|
control_mode_(NONE),
|
2012-03-28 15:49:39 +02:00
|
|
|
procedure_(NONE_P),
|
2012-05-02 09:26:36 +02:00
|
|
|
oil_max_rate_(-1e100),
|
|
|
|
|
water_max_rate_(-1e100),
|
|
|
|
|
gas_max_rate_(-1e100),
|
|
|
|
|
liquid_max_rate_(-1e100),
|
|
|
|
|
reservoir_flow_max_rate_(-1e100),
|
|
|
|
|
BHP_limit_(-1e100),
|
|
|
|
|
guide_rate_(1.0),
|
2012-04-16 17:10:17 +02:00
|
|
|
guide_rate_type_(NONE_GRT)
|
2012-03-28 15:49:39 +02:00
|
|
|
{
|
|
|
|
|
}
|
2012-03-27 16:57:01 +02:00
|
|
|
|
|
|
|
|
}
|