Update synopsis and file description.
This commit is contained in:
parent
8c8295cae6
commit
8c1dc782dd
@ -25,8 +25,8 @@
|
||||
/**
|
||||
* \file
|
||||
*
|
||||
* Main OPM-Core grid data structure along with destructor and default
|
||||
* constructor.
|
||||
* Main OPM-Core grid data structure along with helper functions for
|
||||
* construction, destruction and reading a grid representation from disk.
|
||||
*/
|
||||
|
||||
#ifdef __cplusplus
|
||||
@ -60,6 +60,9 @@ struct UnstructuredGrid
|
||||
|
||||
void destroy_grid(struct UnstructuredGrid *g);
|
||||
|
||||
struct UnstructuredGrid *
|
||||
create_grid_empty(void);
|
||||
|
||||
struct UnstructuredGrid *
|
||||
allocate_grid(size_t ndims ,
|
||||
size_t ncells ,
|
||||
@ -68,6 +71,9 @@ allocate_grid(size_t ndims ,
|
||||
size_t ncellfaces,
|
||||
size_t nnodes );
|
||||
|
||||
struct UnstructuredGrid *
|
||||
read_grid(const char *fname);
|
||||
|
||||
---- end of synopsis of grid.h ----
|
||||
*/
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user