2012-05-18 02:45:23 -05:00
|
|
|
/*
|
|
|
|
Copyright (C) 2011 Statoil ASA, Norway.
|
|
|
|
|
|
|
|
The file 'ecl_sum_data.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 __ECL_SUM_DATA_H__
|
|
|
|
#define __ECL_SUM_DATA_H__
|
|
|
|
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <time.h>
|
2012-06-26 09:10:41 -05:00
|
|
|
|
2012-05-18 02:45:23 -05:00
|
|
|
#include <time_t_vector.h>
|
|
|
|
#include <double_vector.h>
|
|
|
|
#include <stringlist.h>
|
|
|
|
|
2012-09-13 03:56:39 -05:00
|
|
|
#include <ecl_sum_tstep.h>
|
|
|
|
#include <smspec_node.h>
|
2012-05-18 02:45:23 -05:00
|
|
|
|
2012-09-13 03:56:39 -05:00
|
|
|
typedef struct ecl_sum_data_struct ecl_sum_data_type ;
|
|
|
|
void ecl_sum_data_fwrite_step( const ecl_sum_data_type * data , const char * ecl_case , bool fmt_case , bool unified, int report_step);
|
|
|
|
void ecl_sum_data_fwrite( const ecl_sum_data_type * data , const char * ecl_case , bool fmt_case , bool unified);
|
|
|
|
void ecl_sum_data_fread( ecl_sum_data_type * data , const stringlist_type * filelist);
|
|
|
|
void ecl_sum_data_fread_restart( ecl_sum_data_type * data , const stringlist_type * filelist);
|
|
|
|
ecl_sum_data_type * ecl_sum_data_alloc_writer( ecl_smspec_type * smspec );
|
|
|
|
ecl_sum_data_type * ecl_sum_data_alloc( ecl_smspec_type * smspec);
|
|
|
|
int ecl_sum_data_get_report_step_from_time(const ecl_sum_data_type * data , time_t sim_time);
|
|
|
|
int ecl_sum_data_get_report_step_from_days(const ecl_sum_data_type * data , double days);
|
2012-05-18 02:45:23 -05:00
|
|
|
bool ecl_sum_data_check_sim_time( const ecl_sum_data_type * data , time_t sim_time);
|
|
|
|
bool ecl_sum_data_check_sim_days( const ecl_sum_data_type * data , double sim_days);
|
|
|
|
int ecl_sum_data_get_num_ministep( const ecl_sum_data_type * data );
|
|
|
|
double_vector_type * ecl_sum_data_alloc_data_vector( const ecl_sum_data_type * data , int data_index , bool report_only);
|
|
|
|
void ecl_sum_data_init_data_vector( const ecl_sum_data_type * data , double_vector_type * data_vector , int data_index , bool report_only);
|
|
|
|
void ecl_sum_data_init_time_vector( const ecl_sum_data_type * data , time_t_vector_type * time_vector , bool report_only);
|
|
|
|
time_t_vector_type * ecl_sum_data_alloc_time_vector( const ecl_sum_data_type * data , bool report_only);
|
|
|
|
time_t ecl_sum_data_get_data_start( const ecl_sum_data_type * data );
|
2012-09-13 03:56:39 -05:00
|
|
|
time_t ecl_sum_data_get_report_time( const ecl_sum_data_type * data , int report_step);
|
|
|
|
double ecl_sum_data_get_first_day( const ecl_sum_data_type * data);
|
2012-05-18 02:45:23 -05:00
|
|
|
time_t ecl_sum_data_get_sim_start ( const ecl_sum_data_type * data );
|
|
|
|
time_t ecl_sum_data_get_sim_end ( const ecl_sum_data_type * data );
|
|
|
|
double ecl_sum_data_get_sim_length( const ecl_sum_data_type * data );
|
|
|
|
void ecl_sum_data_summarize(const ecl_sum_data_type * data , FILE * stream);
|
|
|
|
double ecl_sum_data_iget( const ecl_sum_data_type * data , int internal_index , int params_index );
|
|
|
|
|
|
|
|
double ecl_sum_data_iget_sim_days( const ecl_sum_data_type * , int );
|
|
|
|
time_t ecl_sum_data_iget_sim_time( const ecl_sum_data_type * , int );
|
|
|
|
|
|
|
|
|
|
|
|
bool ecl_sum_data_has_report_step(const ecl_sum_data_type * , int );
|
|
|
|
|
2012-09-13 03:56:39 -05:00
|
|
|
ecl_sum_data_type * ecl_sum_data_fread_alloc( ecl_smspec_type * , const stringlist_type * filelist , bool include_restart);
|
2012-05-18 02:45:23 -05:00
|
|
|
void ecl_sum_data_free( ecl_sum_data_type * );
|
|
|
|
int ecl_sum_data_get_last_report_step( const ecl_sum_data_type * data );
|
|
|
|
int ecl_sum_data_get_first_report_step( const ecl_sum_data_type * data );
|
|
|
|
int ecl_sum_data_get_first_ministep( const ecl_sum_data_type * data );
|
|
|
|
int ecl_sum_data_get_last_ministep( const ecl_sum_data_type * data );
|
|
|
|
|
2012-09-13 03:56:39 -05:00
|
|
|
double ecl_sum_data_get_from_sim_time( const ecl_sum_data_type * data , time_t sim_time , const smspec_node_type * smspec_node);
|
|
|
|
double ecl_sum_data_get_from_sim_days( const ecl_sum_data_type * data , double sim_days , const smspec_node_type * smspec_node);
|
2012-05-18 02:45:23 -05:00
|
|
|
|
|
|
|
int ecl_sum_data_get_length( const ecl_sum_data_type * data );
|
|
|
|
int ecl_sum_data_iget_report_step(const ecl_sum_data_type * data , int internal_index);
|
|
|
|
int ecl_sum_data_iget_mini_step(const ecl_sum_data_type * data , int internal_index);
|
|
|
|
int ecl_sum_data_iget_report_end( const ecl_sum_data_type * data , int report_step );
|
|
|
|
int ecl_sum_data_iget_report_start( const ecl_sum_data_type * data , int report_step );
|
2012-09-13 03:56:39 -05:00
|
|
|
ecl_sum_tstep_type * ecl_sum_data_add_new_tstep( ecl_sum_data_type * data , int report_step , double sim_days);
|
2012-05-18 02:45:23 -05:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
#endif
|