Add field for specifying which surface volume fraction is injected.

This commit is contained in:
Bård Skaflestad 2011-12-12 18:43:11 +01:00
parent 3d499416cb
commit e59110f5f4

View File

@ -27,6 +27,7 @@ extern "C" {
enum well_type { INJECTOR, PRODUCER }; enum well_type { INJECTOR, PRODUCER };
enum well_control { BHP , RATE }; enum well_control { BHP , RATE };
enum surface_component { WATER = 0, OIL = 1, GAS = 2 };
struct WellCompletions { struct WellCompletions {
int number_of_wells; int number_of_wells;
@ -38,6 +39,7 @@ struct WellControls {
enum well_type *type; enum well_type *type;
enum well_control *ctrl; enum well_control *ctrl;
double *target; double *target;
double *zfrac; /* Surface volume fraction (3*nwells) */
}; };
struct completion_data { struct completion_data {