mirror of
https://github.com/OPM/opm-simulators.git
synced 2024-12-26 09:10: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_control { BHP , RATE };
|
||||
enum surface_component { WATER = 0, OIL = 1, GAS = 2 };
|
||||
|
||||
struct WellCompletions {
|
||||
int number_of_wells;
|
||||
@ -38,6 +39,7 @@ struct WellControls {
|
||||
enum well_type *type;
|
||||
enum well_control *ctrl;
|
||||
double *target;
|
||||
double *zfrac; /* Surface volume fraction (3*nwells) */
|
||||
};
|
||||
|
||||
struct completion_data {
|
||||
|
Loading…
Reference in New Issue
Block a user