Add place-holders for effective well IP/gravity pressure fields.

Don't (yet) allocate any data storage for these.
This commit is contained in:
Bård Skaflestad 2010-09-22 16:57:45 +00:00
parent 297b79d4f0
commit 58022e240c

4
ifsh.c
View File

@ -20,6 +20,9 @@ struct ifsh_impl {
double *gpress; /* Effective gravity pressure */
double *cflux; /* Cell (half-contact) fluxes */
double *WI; /* Effective inverse IP, wells */
double *wdp; /* Effective grav. press, wells */
int *pgconn; /* Start pointers, grid connections */
int *gconn; /* Grid connections */
@ -27,6 +30,7 @@ struct ifsh_impl {
int *cwells; /* c->w mapping */
struct hybsys *sys; /* Hybrid cell contribs */
struct hybsys_well *wsys; /* Hybrid cell contribs from wells */
double *work; /* Scratch array, floating point */
int *iwork; /* Scratch array, integers */