mirror of
https://github.com/OPM/ResInsight.git
synced 2025-02-25 18:55:39 -06:00
Use commit 0e1e780fd6f18ce93119061e36a4fca9711bc020 Excluded multibuild folder, as this caused git issues
156 lines
5.3 KiB
C++
156 lines
5.3 KiB
C++
/*
|
|
Copyright (C) 2014 Equinor ASA, Norway.
|
|
|
|
The file 'ecl_sum_vector.c' 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.
|
|
*/
|
|
#include <stdlib.h>
|
|
|
|
#include <vector>
|
|
#include <string>
|
|
|
|
#include <ert/ecl/ecl_sum_vector.hpp>
|
|
#include <ert/ecl/ecl_sum.hpp>
|
|
#include <ert/ecl/ecl_smspec.hpp>
|
|
|
|
#include <ert/util/util.h>
|
|
#include <ert/util/vector.hpp>
|
|
#include <ert/util/type_macros.hpp>
|
|
|
|
|
|
#define ECL_SUM_VECTOR_TYPE_ID 8768778
|
|
|
|
struct ecl_sum_vector_struct {
|
|
UTIL_TYPE_ID_DECLARATION;
|
|
std::vector<int> node_index_list;
|
|
std::vector<bool> is_rate_list;
|
|
std::vector<std::string> key_list;
|
|
const ecl_sum_type * ecl_sum;
|
|
};
|
|
|
|
|
|
void ecl_sum_vector_free( ecl_sum_vector_type * ecl_sum_vector ){
|
|
delete ecl_sum_vector;
|
|
}
|
|
|
|
|
|
UTIL_IS_INSTANCE_FUNCTION( ecl_sum_vector , ECL_SUM_VECTOR_TYPE_ID )
|
|
|
|
static void ecl_sum_vector_add_node(ecl_sum_vector_type * vector, const ecl::smspec_node * node, const char * key ) {
|
|
int params_index = smspec_node_get_params_index( node );
|
|
bool is_rate_key = smspec_node_is_rate( node);
|
|
|
|
vector->node_index_list.push_back(params_index);
|
|
vector->is_rate_list.push_back(is_rate_key);
|
|
vector->key_list.push_back(key);
|
|
}
|
|
|
|
|
|
ecl_sum_vector_type * ecl_sum_vector_alloc(const ecl_sum_type * ecl_sum, bool add_keywords) {
|
|
ecl_sum_vector_type * ecl_sum_vector = new ecl_sum_vector_type();
|
|
UTIL_TYPE_ID_INIT( ecl_sum_vector , ECL_SUM_VECTOR_TYPE_ID);
|
|
ecl_sum_vector->ecl_sum = ecl_sum;
|
|
if (add_keywords) {
|
|
const ecl_smspec_type * smspec = ecl_sum_get_smspec(ecl_sum);
|
|
for (int i=0; i < ecl_smspec_num_nodes(smspec); i++) {
|
|
const ecl::smspec_node& node = ecl_smspec_iget_node_w_node_index( smspec , i );
|
|
const char * key = smspec_node_get_gen_key1(&node);
|
|
/*
|
|
The TIME keyword is special case handled to not be included; that is
|
|
to match the same special casing in the key matching function.
|
|
*/
|
|
if (!util_string_equal(key, "TIME"))
|
|
ecl_sum_vector_add_node( ecl_sum_vector, &node, key);
|
|
}
|
|
}
|
|
return ecl_sum_vector;
|
|
}
|
|
|
|
static void ecl_sum_vector_add_invalid_key(ecl_sum_vector_type * vector, const char * key) {
|
|
vector->node_index_list.push_back(-1);
|
|
vector->is_rate_list.push_back(false);
|
|
vector->key_list.push_back(key);
|
|
}
|
|
|
|
|
|
/*
|
|
This function will allocate a keyword vector for the keys in the @ecl_sum
|
|
argument passed in, it will contain all the same keys as in the input argument
|
|
@src_vector. If the @src_vector contains keys which are not present in
|
|
@ecl_sum an entry marked as *invalid* will be added. The whole point about
|
|
this function is to ensure that calls to:
|
|
|
|
ecl_sum_fwrite_interp_csv_line( )
|
|
|
|
will result in nicely aligned output even if the different summary cases do
|
|
not have the exact same keys.
|
|
*/
|
|
|
|
ecl_sum_vector_type * ecl_sum_vector_alloc_layout_copy(const ecl_sum_vector_type * src_vector, const ecl_sum_type * ecl_sum) {
|
|
ecl_sum_vector_type * new_vector = ecl_sum_vector_alloc(ecl_sum, false);
|
|
for (size_t i=0; i < src_vector->key_list.size(); i++) {
|
|
const char * key = src_vector->key_list[i].c_str();
|
|
if (ecl_sum_has_general_var(ecl_sum, key))
|
|
ecl_sum_vector_add_key(new_vector, key);
|
|
else
|
|
ecl_sum_vector_add_invalid_key(new_vector, key);
|
|
}
|
|
return new_vector;
|
|
}
|
|
|
|
|
|
|
|
bool ecl_sum_vector_add_key( ecl_sum_vector_type * ecl_sum_vector, const char * key){
|
|
if (ecl_sum_has_general_var( ecl_sum_vector->ecl_sum , key)) {
|
|
const ecl::smspec_node * node = ecl_sum_get_general_var_node( ecl_sum_vector->ecl_sum , key );
|
|
ecl_sum_vector_add_node(ecl_sum_vector, node, key);
|
|
return true;
|
|
} else
|
|
return false;
|
|
}
|
|
|
|
void ecl_sum_vector_add_keys( ecl_sum_vector_type * ecl_sum_vector, const char * pattern){
|
|
stringlist_type * keylist = ecl_sum_alloc_matching_general_var_list(ecl_sum_vector->ecl_sum , pattern);
|
|
|
|
int num_keywords = stringlist_get_size(keylist);
|
|
int i;
|
|
for(i = 0; i < num_keywords ;i++){
|
|
const char * key = stringlist_iget(keylist, i);
|
|
const ecl::smspec_node * node = ecl_sum_get_general_var_node( ecl_sum_vector->ecl_sum , key );
|
|
ecl_sum_vector_add_node(ecl_sum_vector, node, key);
|
|
}
|
|
stringlist_free(keylist);
|
|
}
|
|
|
|
int ecl_sum_vector_get_size(const ecl_sum_vector_type * ecl_sum_vector){
|
|
return ecl_sum_vector->node_index_list.size();
|
|
}
|
|
|
|
bool ecl_sum_vector_iget_is_rate(const ecl_sum_vector_type * ecl_sum_vector, int index){
|
|
return ecl_sum_vector->is_rate_list[index];
|
|
}
|
|
|
|
bool ecl_sum_vector_iget_valid(const ecl_sum_vector_type * ecl_sum_vector, int index) {
|
|
return (ecl_sum_vector->node_index_list[index] >= 0);
|
|
}
|
|
|
|
int ecl_sum_vector_iget_param_index(const ecl_sum_vector_type * ecl_sum_vector, int index){
|
|
return ecl_sum_vector->node_index_list[index];
|
|
}
|
|
|
|
|
|
const char* ecl_sum_vector_iget_key(const ecl_sum_vector_type * ecl_sum_vector, int index){
|
|
return ecl_sum_vector->key_list[index].c_str();
|
|
}
|