2012-03-27 09:57:01 -05:00
|
|
|
#include <opm/core/ProductionSpecification.hpp>
|
|
|
|
|
2012-03-28 08:49:39 -05:00
|
|
|
namespace Opm
|
2012-03-27 09:57:01 -05:00
|
|
|
{
|
|
|
|
|
2012-03-28 08:49:39 -05:00
|
|
|
ProductionSpecification::ProductionSpecification()
|
2012-03-29 11:34:51 -05:00
|
|
|
:
|
2012-05-02 02:26:36 -05:00
|
|
|
control_mode_(NONE),
|
2012-03-28 08:49:39 -05:00
|
|
|
procedure_(NONE_P),
|
2012-05-02 02:26:36 -05: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 10:10:17 -05:00
|
|
|
guide_rate_type_(NONE_GRT)
|
2012-03-28 08:49:39 -05:00
|
|
|
{
|
|
|
|
}
|
2012-03-27 09:57:01 -05:00
|
|
|
|
|
|
|
}
|