mirror of
https://github.com/OPM/opm-simulators.git
synced 2024-12-27 17:50:59 -06:00
Add field for specifying which surface volume fraction is injected.
This commit is contained in:
parent
3d499416cb
commit
e59110f5f4
@ -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 {
|
||||||
|
Loading…
Reference in New Issue
Block a user