mirror of
https://github.com/OPM/ResInsight.git
synced 2025-02-25 18:55:39 -06:00
62 lines
1.9 KiB
C
62 lines
1.9 KiB
C
/*
|
|
Copyright (C) 2011 Statoil ASA, Norway.
|
|
|
|
The file 'well_conn.h' is part of ERT - Ensemble based Reservoir Tool.
|
|
|
|
ERT 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.
|
|
|
|
ERT 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 at <http://www.gnu.org/licenses/gpl.html>
|
|
for more details.
|
|
*/
|
|
|
|
|
|
#ifndef __WELL_CONN_H__
|
|
#define __WELL_CONN_H__
|
|
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#include <stdbool.h>
|
|
|
|
#include <ecl_kw.h>
|
|
#include <ecl_intehead.h>
|
|
|
|
typedef enum {
|
|
well_conn_dirX = 1,
|
|
well_conn_dirY = 2,
|
|
well_conn_dirZ = 3,
|
|
well_conn_fracX = 4,
|
|
well_conn_fracY = 5
|
|
} well_conn_dir_enum;
|
|
|
|
|
|
typedef struct well_conn_struct well_conn_type;
|
|
|
|
|
|
void well_conn_free( well_conn_type * conn);
|
|
void well_conn_free__( void * arg );
|
|
well_conn_type * well_conn_alloc( const ecl_kw_type * icon_kw , const ecl_kw_type * iseg_kw , const ecl_intehead_type * header , int well_nr , int seg_well_nr , int conn_nr);
|
|
well_conn_type * well_conn_alloc_wellhead( const ecl_kw_type * iwel_kw , const ecl_intehead_type * header , int well_nr);
|
|
|
|
int well_conn_get_branch(const well_conn_type * conn);
|
|
int well_conn_get_i(const well_conn_type * conn);
|
|
int well_conn_get_j(const well_conn_type * conn);
|
|
int well_conn_get_k(const well_conn_type * conn);
|
|
well_conn_dir_enum well_conn_get_dir(const well_conn_type * conn);
|
|
bool well_conn_open( const well_conn_type * conn );
|
|
int well_conn_get_segment( const well_conn_type * conn );
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
#endif
|