From f84eb97f4ff27462e4f75ad75f9c47c43a09a65b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Atgeirr=20Fl=C3=B8=20Rasmussen?= Date: Wed, 20 Mar 2013 14:14:53 +0100 Subject: [PATCH] Clean up well docs. Needed to rename structs in legacy_well.h to avoid clash in docs. --- opm/core/pressure/legacy_well.h | 8 ++++---- opm/core/wells.h | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/opm/core/pressure/legacy_well.h b/opm/core/pressure/legacy_well.h index 3d985f7e..ccf93089 100644 --- a/opm/core/pressure/legacy_well.h +++ b/opm/core/pressure/legacy_well.h @@ -49,7 +49,7 @@ enum surface_component { WATER = 0, OIL = 1, GAS = 2 }; /** * Basic representation of well topology. */ -struct WellCompletions { +struct LegacyWellCompletions { int number_of_wells; /**< Number of wells. */ int *well_connpos; /**< Well topology start pointers. */ int *well_cells; /**< Well connections */ @@ -58,7 +58,7 @@ struct WellCompletions { /** * Basic representation of well controls. */ -struct WellControls { +struct LegacyWellControls { enum well_type *type; /**< Individual well taxonomy */ enum well_control *ctrl; /**< Individual well controls */ double *target; /**< Control target */ @@ -79,13 +79,13 @@ struct completion_data { * Convenience type alias to preserve backwards compatibility in * well topology definitions used by hybridised pressure solver. */ -typedef struct WellCompletions well_t; +typedef struct LegacyWellCompletions well_t; /** * Convenience type alias to preserve backwards compatiblity in * well control definitions used by hybridised pressure solver. */ -typedef struct WellControls well_control_t; +typedef struct LegacyWellControls well_control_t; /** * Allocate cell-to-well mapping (as a sparse array). diff --git a/opm/core/wells.h b/opm/core/wells.h index b70809ea..c58e0661 100644 --- a/opm/core/wells.h +++ b/opm/core/wells.h @@ -88,7 +88,7 @@ struct WellControls enum WellControlType *type; /** - * Array of control targets + * Array of control targets. */ double *target;