2012-02-01 05:16:05 -06:00
|
|
|
/*
|
|
|
|
Copyright 2012 SINTEF ICT, Applied Mathematics.
|
|
|
|
|
|
|
|
This file is part of the Open Porous Media project (OPM).
|
|
|
|
|
|
|
|
OPM is free software: you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
OPM is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with OPM. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
2013-03-18 04:33:34 -05:00
|
|
|
#ifndef OPM_WELLS_H_INCLUDED
|
|
|
|
#define OPM_WELLS_H_INCLUDED
|
2012-02-01 05:16:05 -06:00
|
|
|
|
2013-12-18 08:06:38 -06:00
|
|
|
#include <stdbool.h>
|
2014-01-06 08:13:32 -06:00
|
|
|
#include <opm/core/well_controls.h>
|
2012-04-20 04:38:10 -05:00
|
|
|
|
|
|
|
/**
|
|
|
|
* \file
|
|
|
|
*
|
|
|
|
* Main OPM-Core well data structure along with functions
|
|
|
|
* to create, populate and destroy it.
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
2012-02-01 05:16:05 -06:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2012-10-15 12:15:31 -05:00
|
|
|
/**
|
|
|
|
* Well type indicates desired/expected well behaviour.
|
|
|
|
*/
|
|
|
|
enum WellType {
|
|
|
|
INJECTOR, /**< Well is an injector */
|
|
|
|
PRODUCER /**< Well is a producer */
|
|
|
|
};
|
2012-04-26 06:55:35 -05:00
|
|
|
|
2012-02-01 05:16:05 -06:00
|
|
|
|
2012-10-15 12:15:31 -05:00
|
|
|
/**
|
|
|
|
* Data structure aggregating static information about all wells in a scenario.
|
|
|
|
*/
|
2012-04-20 02:50:36 -05:00
|
|
|
struct Wells
|
|
|
|
{
|
2012-10-15 12:15:31 -05:00
|
|
|
int number_of_wells; /**< Number of wells. */
|
|
|
|
int number_of_phases; /**< Number of phases. */
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Array of well types.
|
|
|
|
*/
|
|
|
|
enum WellType *type;
|
|
|
|
|
|
|
|
/**
|
2013-03-07 08:14:24 -06:00
|
|
|
* Array of well reference depths.
|
2012-10-15 12:15:31 -05:00
|
|
|
*/
|
|
|
|
double *depth_ref;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Component fractions for each well. Array of size
|
|
|
|
* <CODE>number_of_wells * number_of_phases</CODE>.
|
2014-04-06 16:45:08 -05:00
|
|
|
* For injection wells, this gives the injected component mix.
|
|
|
|
* For production wells the component fractions of the wellbore
|
|
|
|
* will vary and cannot be specified a priori, the component mix
|
|
|
|
* given here should be considered a default or preferred mix.
|
2012-10-15 12:15:31 -05:00
|
|
|
*/
|
|
|
|
double *comp_frac;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Array of indices into well_cells (and WI). For a well @c w,
|
|
|
|
* <CODE>well_connpos[w]</CODE> and <CODE>well_connpos[w+1]</CODE> are start
|
|
|
|
* and one-beyond-end indices into the @c well_cells array for accessing
|
|
|
|
* @c w's perforation cell indices.
|
|
|
|
*/
|
|
|
|
int *well_connpos;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Array of perforation cell indices.
|
|
|
|
* Size is number of perforations (== well_connpos[number_of_wells]).
|
|
|
|
*/
|
|
|
|
int *well_cells;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Well productivity index, same size and structure as well_cells.
|
|
|
|
*/
|
|
|
|
double *WI;
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Well controls, one set of controls for each well.
|
|
|
|
*/
|
|
|
|
struct WellControls **ctrls;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Well names. One string for each well.
|
|
|
|
*/
|
|
|
|
char **name;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Internal management structure.
|
|
|
|
*/
|
|
|
|
void *data;
|
2012-02-01 05:16:05 -06:00
|
|
|
};
|
|
|
|
|
2012-04-20 02:50:36 -05:00
|
|
|
|
2012-10-15 12:15:31 -05:00
|
|
|
/**
|
|
|
|
* Data structure aggregating dynamic information about all wells in a scenario.
|
|
|
|
* All arrays in this structure contain data for each perforation, ordered the
|
|
|
|
* same as Wells::well_cells and Wells:WI. The array sizes are, respectively,
|
2012-04-20 13:54:58 -05:00
|
|
|
*
|
2012-10-16 07:05:33 -05:00
|
|
|
* wdp NP
|
2012-04-20 16:53:04 -05:00
|
|
|
* A n²*NP (matrix in column-major (i.e., Fortran) order).
|
2012-04-20 13:54:58 -05:00
|
|
|
* phasemob n*NP
|
|
|
|
*
|
2012-10-15 12:15:31 -05:00
|
|
|
* in which "n" denotes the number of active fluid phases (and constituent
|
|
|
|
* components) and "NP" is the total number of perforations,
|
|
|
|
* <CODE>well_connpos[ number_of_wells ]</CODE>.
|
2012-04-20 02:50:36 -05:00
|
|
|
*/
|
|
|
|
struct CompletionData
|
|
|
|
{
|
2012-10-15 12:15:31 -05:00
|
|
|
/**
|
|
|
|
* Gravity potentials.
|
|
|
|
*/
|
2012-10-16 06:55:07 -05:00
|
|
|
double *wdp;
|
2012-10-15 12:15:31 -05:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Volumes to surface-components matrix, A = RB^{-1}.
|
|
|
|
*/
|
|
|
|
double *A;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Phase mobilities for all perforations, stored consecutively with the
|
|
|
|
* phase index cycling the most rapidly.
|
|
|
|
*/
|
|
|
|
double *phasemob;
|
2012-02-01 05:16:05 -06:00
|
|
|
};
|
|
|
|
|
2012-04-22 04:50:41 -05:00
|
|
|
/**
|
|
|
|
* Construct a Wells object initially capable of managing a given
|
|
|
|
* number of wells and total number of well connections
|
|
|
|
* (perforations).
|
|
|
|
*
|
|
|
|
* Function add_well() is used to populate the Wells object. No
|
2012-04-22 14:19:08 -05:00
|
|
|
* reallocation occurs in function add_well() as long as the
|
2012-04-23 02:59:53 -05:00
|
|
|
* initially indicated capacities are sufficient. Call function
|
2012-04-22 04:50:41 -05:00
|
|
|
* destroy_wells() to dispose of the Wells object and its allocated
|
|
|
|
* memory resources.
|
|
|
|
*
|
2012-04-26 06:55:35 -05:00
|
|
|
* \param[in] nphases Number of active phases in simulation scenario.
|
|
|
|
*
|
|
|
|
* \param[in] nwells Expected number of wells in simulation scenario.
|
|
|
|
* Pass zero if the total number of wells is unknown.
|
2012-04-22 04:50:41 -05:00
|
|
|
*
|
2012-04-26 06:55:35 -05:00
|
|
|
* \param[in] nperf Expected total number of well connections
|
|
|
|
* (perforations) for all wells in simulation
|
|
|
|
* scenario. Pass zero if the total number of well
|
|
|
|
* connections is unknown.
|
2012-04-22 04:50:41 -05:00
|
|
|
*
|
|
|
|
* \return A valid Wells object with no wells if successful, and NULL
|
|
|
|
* otherwise.
|
2012-04-20 02:50:36 -05:00
|
|
|
*/
|
2012-02-03 14:35:19 -06:00
|
|
|
struct Wells *
|
2012-04-26 06:55:35 -05:00
|
|
|
create_wells(int nphases, int nwells, int nperf);
|
2012-04-20 02:50:36 -05:00
|
|
|
|
2012-02-03 14:35:19 -06:00
|
|
|
|
2012-04-22 04:36:49 -05:00
|
|
|
/**
|
|
|
|
* Append a new well to an existing Wells object.
|
|
|
|
*
|
|
|
|
* Increments W->number_of_wells by one if successful. The new well
|
|
|
|
* does not include operational constraints. Such information is
|
|
|
|
* specified using function append_well_controls(). The current
|
|
|
|
* control index is set to -1 (invalid).
|
|
|
|
*
|
|
|
|
* \param[in] type Type of well.
|
2012-04-22 14:24:43 -05:00
|
|
|
* \param[in] depth_ref Reference depth for well's BHP.
|
2012-04-22 04:36:49 -05:00
|
|
|
* \param[in] nperf Number of perforations.
|
2012-04-26 06:55:35 -05:00
|
|
|
* \param[in] comp_frac Injection fraction array (size equal to W->number_of_phases) or NULL.
|
2012-04-22 14:24:43 -05:00
|
|
|
* \param[in] cells Grid cells in which well is perforated. Should
|
|
|
|
* ideally be track ordered.
|
2012-04-22 04:36:49 -05:00
|
|
|
* \param[in] WI Well production index per perforation, or NULL.
|
2012-06-18 03:18:14 -05:00
|
|
|
* \param[in] name Name of new well. NULL if no name.
|
2012-04-22 14:24:43 -05:00
|
|
|
* \param[in,out] W Existing set of wells to which new well will
|
|
|
|
* be added.
|
2012-04-23 13:48:31 -05:00
|
|
|
*
|
2012-04-22 04:36:49 -05:00
|
|
|
* \return Non-zero (true) if successful and zero otherwise.
|
2012-04-20 04:34:58 -05:00
|
|
|
*/
|
2012-02-03 14:35:19 -06:00
|
|
|
int
|
2012-04-20 04:34:58 -05:00
|
|
|
add_well(enum WellType type ,
|
|
|
|
double depth_ref,
|
|
|
|
int nperf ,
|
2012-04-26 06:55:35 -05:00
|
|
|
const double *comp_frac,
|
2012-04-20 04:34:58 -05:00
|
|
|
const int *cells ,
|
|
|
|
const double *WI ,
|
2012-06-18 03:15:53 -05:00
|
|
|
const char *name ,
|
2012-04-20 04:34:58 -05:00
|
|
|
struct Wells *W );
|
|
|
|
|
|
|
|
|
2012-04-22 09:58:37 -05:00
|
|
|
/**
|
|
|
|
* Append operational constraint to an existing well.
|
|
|
|
*
|
|
|
|
* Increments ctrl->num by one if successful. Introducing a new
|
|
|
|
* operational constraint does not affect the well's notion of the
|
|
|
|
* currently active constraint represented by ctrl->current.
|
2012-04-26 06:55:35 -05:00
|
|
|
* Note that *_RATE controls now require a phase distribution array
|
|
|
|
* to be associated with the control, see WellControls.
|
2012-04-22 09:58:37 -05:00
|
|
|
*
|
2012-04-26 06:55:35 -05:00
|
|
|
* \param[in] type Control type.
|
|
|
|
* \param[in] target Target value for the control.
|
|
|
|
* \param[in] distr Array of size W->number_of_phases or NULL.
|
|
|
|
* \param[in] well_index Index of well to receive additional control.
|
|
|
|
* \param[in,out] W Existing set of well controls.
|
2012-04-22 09:58:37 -05:00
|
|
|
* \return Non-zero (true) if successful and zero (false) otherwise.
|
2012-04-20 04:34:58 -05:00
|
|
|
*/
|
2014-01-03 08:34:01 -06:00
|
|
|
|
|
|
|
|
2012-02-03 14:35:19 -06:00
|
|
|
int
|
2012-04-20 02:50:36 -05:00
|
|
|
append_well_controls(enum WellControlType type ,
|
2012-02-03 14:35:19 -06:00
|
|
|
double target,
|
2012-04-26 06:55:35 -05:00
|
|
|
const double *distr,
|
|
|
|
int well_index,
|
|
|
|
struct Wells *W);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Set the current control for a single well.
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
set_current_control(int well_index, int current_control, struct Wells *W);
|
2012-02-03 14:35:19 -06:00
|
|
|
|
2012-04-22 14:15:28 -05:00
|
|
|
/**
|
2012-04-26 06:55:35 -05:00
|
|
|
* Clear all controls from a single well.
|
2012-04-22 14:15:28 -05:00
|
|
|
*
|
|
|
|
* Does not affect the control set capacity. */
|
2012-02-03 14:35:19 -06:00
|
|
|
void
|
2012-04-26 06:55:35 -05:00
|
|
|
clear_well_controls(int well_index, struct Wells *W);
|
2012-02-03 14:35:19 -06:00
|
|
|
|
2012-04-20 04:34:58 -05:00
|
|
|
|
2012-04-22 10:03:13 -05:00
|
|
|
/**
|
|
|
|
* Wells object destructor.
|
|
|
|
*
|
|
|
|
* Disposes of all resources managed by the Wells object.
|
|
|
|
*
|
|
|
|
* The Wells object must be built using function create_wells() and
|
|
|
|
* subsequently populated using function add_well().
|
2012-04-20 04:34:58 -05:00
|
|
|
*/
|
|
|
|
void
|
|
|
|
destroy_wells(struct Wells *W);
|
|
|
|
|
|
|
|
|
2012-10-04 14:09:47 -05:00
|
|
|
/**
|
|
|
|
* Create a deep-copy (i.e., clone) of an existing Wells object, including its
|
|
|
|
* controls.
|
|
|
|
*
|
|
|
|
* @param[in] W Existing Wells object.
|
|
|
|
* @return Complete clone of the input object. Dispose of resources using
|
|
|
|
* function destroy_wells() when no longer needed. Returns @c NULL in case of
|
|
|
|
* allocation failure.
|
|
|
|
*/
|
|
|
|
struct Wells *
|
|
|
|
clone_wells(const struct Wells *W);
|
|
|
|
|
2013-12-18 08:06:38 -06:00
|
|
|
bool
|
2014-01-30 02:50:09 -06:00
|
|
|
wells_equal(const struct Wells *W1, const struct Wells *W2 , bool verbose);
|
2013-12-18 08:06:38 -06:00
|
|
|
|
|
|
|
|
2012-10-04 14:09:47 -05:00
|
|
|
|
2012-02-01 05:16:05 -06:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2013-03-18 04:33:34 -05:00
|
|
|
#endif /* OPM_WELLS_H_INCLUDED */
|