#include <mpi.h>
#include <stdlib.h>
#include <stdio.h>
#include <unistd.h>
#include <math.h>
#include "yac.h"
#include "yac_utils.h"
Go to the source code of this file.
|
static void | parse_arguments (int argc, char **argv, char const **configFilename, char const **gridFilename) |
|
static void | LLtoXYZ (double lon, double lat, double p_out[]) |
|
static void | XYZtoLL (double const p_in[], double *lon, double *lat) |
|
|
const char * | fieldName [] = {"icon_out", "cube_out"} |
|
◆ STR_USAGE
#define STR_USAGE "Usage: %s -c configFilename -g gridFilename\n" |
◆ YAC_ASSERT
#define YAC_ASSERT |
( |
| exp, |
|
|
| msg ) |
Value: { \
if(!((exp))) { \
fprintf(stderr,
"ERROR: %s\n" STR_USAGE, msg, argv[0]); \
exit(EXIT_FAILURE); \
} \
}
Definition at line 25 of file perf_toy_icon.c.
◆ LLtoXYZ()
static void LLtoXYZ |
( |
double | lon, |
|
|
double | lat, |
|
|
double | p_out[] ) |
|
inlinestatic |
◆ parse_arguments()
static void parse_arguments |
( |
int | argc, |
|
|
char ** | argv, |
|
|
char const ** | configFilename, |
|
|
char const ** | gridFilename ) |
|
static |
◆ XYZtoLL()
static void XYZtoLL |
( |
double const | p_in[], |
|
|
double * | lon, |
|
|
double * | lat ) |
|
inlinestatic |
◆ fieldName
const char* fieldName[] = {"icon_out", "cube_out"} |