YetAnotherCoupler 3.5.2
|
#include "basic_grid.h"
Go to the source code of this file.
Functions | |
struct yac_basic_grid_data | yac_read_mpiom_basic_grid_data (char const *filename) |
struct yac_basic_grid * | yac_read_mpiom_basic_grid (char const *filename, char const *gridname) |
void | yac_read_mpiom_grid_information (const char *filename, int *num_vertices, int *num_cells, int **num_vertices_per_cell, int **cell_to_vertex, double **x_vertices, double **y_vertices, double **x_cells, double **y_cells, int **cellmask) |
void | yac_read_part_mpiom_grid_information (const char *filename, int *num_vertices, int *num_cells, int **num_vertices_per_cell, int **cell_to_vertex, double **x_vertices, double **y_vertices, double **x_cells, double **y_cells, int **global_cell_id, int **cell_mask, int **cell_core_mask, int **global_corner_id, int **corner_core_mask, int rank, int size) |
struct yac_basic_grid * yac_read_mpiom_basic_grid | ( | char const * | filename, |
char const * | gridname ) |
reads in an mpiom grid netcdf file and generates a struct yac_basic_grid_data from it
[in] | filename | name of the mpiom grid netcdf file |
[in] | gridname | name of the grid |
Definition at line 327 of file read_mpiom_grid.c.
struct yac_basic_grid_data yac_read_mpiom_basic_grid_data | ( | char const * | filename | ) |
reads in an mpiom grid netcdf file and generates a struct yac_basic_grid_data from it
[in] | filename | name of the mpiom grid netcdf file |
Definition at line 292 of file read_mpiom_grid.c.
void yac_read_mpiom_grid_information | ( | const char * | filename, |
int * | num_vertices, | ||
int * | num_cells, | ||
int ** | num_vertices_per_cell, | ||
int ** | cell_to_vertex, | ||
double ** | x_vertices, | ||
double ** | y_vertices, | ||
double ** | x_cells, | ||
double ** | y_cells, | ||
int ** | cellmask ) |
reads in an mpiom grid netcdf file and return the grid information in a format that is supported by the YAC user interface.
[in] | filename | name of the mpiom grid netcdf file |
[out] | num_vertices | number of vertices in the grid |
[out] | num_cells | number of cells in the grid |
[out] | num_vertices_per_cell | number of vertices per cell |
[out] | cell_to_vertex | vertex indices for each cell |
[out] | x_vertices | longitudes of vertices |
[out] | y_vertices | latitudes of vertices |
[out] | x_cells | longitudes of cell center |
[out] | y_cells | latitudes of cell center |
[out] | cellmask | mask value for cells |
Definition at line 43 of file read_mpiom_grid.c.
void yac_read_part_mpiom_grid_information | ( | const char * | filename, |
int * | num_vertices, | ||
int * | num_cells, | ||
int ** | num_vertices_per_cell, | ||
int ** | cell_to_vertex, | ||
double ** | x_vertices, | ||
double ** | y_vertices, | ||
double ** | x_cells, | ||
double ** | y_cells, | ||
int ** | global_cell_id, | ||
int ** | cell_mask, | ||
int ** | cell_core_mask, | ||
int ** | global_corner_id, | ||
int ** | corner_core_mask, | ||
int | rank, | ||
int | size ) |
reads in an partition mpiom grid netcdf file and return the grid information in a format that is supported by the YAC user interface.
[in] | filename | name of the mpiom grid netcdf file |
[out] | num_vertices | number of vertices in the grid |
[out] | num_cells | number of cells in the grid |
[out] | num_vertices_per_cell | number of vertices per cell |
[out] | cell_to_vertex | vertex indices for each cell |
[out] | x_vertices | longitudes of vertices |
[out] | y_vertices | latitudes of vertices |
[out] | x_cells | longitudes of cell center |
[out] | y_cells | latitudes of cell center |
[out] | global_cell_id | global cell IDs |
[out] | cell_mask | mask value for cells |
[out] | cell_core_mask | cell core mask |
[out] | global_corner_id | global corner IDs |
[out] | corner_core_mask | corner core mask |
[out] | rank | local MPI rank |
[out] | size | number of MPI ranks |
Definition at line 143 of file read_mpiom_grid.c.