mirror of
https://github.com/OPM/ResInsight.git
synced 2025-02-25 18:55:39 -06:00
54 lines
1.4 KiB
C
54 lines
1.4 KiB
C
|
|
/*
|
||
|
|
Copyright (C) 2014 Statoil ASA, Norway.
|
||
|
|
|
||
|
|
The file 'ecl_grid_layer_contains' 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 <stdbool.h>
|
||
|
|
|
||
|
|
#include <ert/util/test_util.h>
|
||
|
|
|
||
|
|
#include <ert/ecl/ecl_grid.h>
|
||
|
|
|
||
|
|
|
||
|
|
void test_layer(const ecl_grid_type * grid ) {
|
||
|
|
int g;
|
||
|
|
|
||
|
|
for (g=0; g < ecl_grid_get_global_size( grid ); g += 25) {
|
||
|
|
double x,y,z;
|
||
|
|
int i,j,k;
|
||
|
|
|
||
|
|
ecl_grid_get_xyz1( grid , g , &x , &y , &z );
|
||
|
|
ecl_grid_get_ijk1( grid , g , &i , &j , &k);
|
||
|
|
{
|
||
|
|
int find_i , find_j;
|
||
|
|
test_assert_true( ecl_grid_get_ij_from_xy( grid , x , y , k , &find_i , &find_j ));
|
||
|
|
test_assert_int_equal( i , find_i );
|
||
|
|
test_assert_int_equal( j , find_j );
|
||
|
|
}
|
||
|
|
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
int main(int argc , char ** argv) {
|
||
|
|
ecl_grid_type * grid = ecl_grid_alloc( argv[1] );
|
||
|
|
test_layer( grid );
|
||
|
|
ecl_grid_free( grid );
|
||
|
|
}
|
||
|
|
|