/* Copyright (C) 2012 Statoil ASA, Norway. The file 'grid_dump_ascii.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 for more details. */ #include #include #include #include int main(int argc, char ** argv) { if (argc < 2) { fprintf(stderr,"%s: filename \n",argv[0]); exit(1); } { const char * grid_file = argv[1]; char * output_file = NULL; ecl_grid_type * ecl_grid; FILE * stream; if (argc == 3) { output_file = argv[2]; stream = util_mkdir_fopen( output_file , "w"); } else stream = stdout; ecl_grid = ecl_grid_alloc(grid_file); ecl_grid_dump_ascii( ecl_grid , false , stream ); if (output_file != NULL) fclose( stream ); ecl_grid_free( ecl_grid ); } }