63 char dirname[
LEN], filename[2 *
LEN];
65 int ntask = -1, rank = 0, size = 1;
72 MPI_Init(&argc, &argv);
73 MPI_Comm_rank(MPI_COMM_WORLD, &rank);
74 MPI_Comm_size(MPI_COMM_WORLD, &size);
76 const int num_devices = acc_get_num_devices(acc_device_nvidia);
78 ERRMSG(
"Not running on a GPU device!");
79 acc_set_device_num(rank % num_devices, acc_device_nvidia);
85 ERRMSG(
"Missing or invalid command-line arguments.\n\n"
86 "Usage: trac <dirlist> <ctl> <atm_in> [KEY VALUE ...]\n\n"
87 "Use -h for full help.");
90 if (!(dirlist = fopen(argv[1],
"r")))
91 ERRMSG(
"Cannot open directory list!");
94 while (fscanf(dirlist,
"%4999s", dirname) != EOF) {
97 if ((++ntask) % size != rank)
101 LOG(1,
"Parallelization: ntask= %d | rank= %d | size= %d",
109 mptrac_alloc(&ctl, &cache, &clim, &met0, &met1, &atm, &depo, &dd);
112 sprintf(filename,
"%s/%s", dirname, argv[2]);
119 sprintf(filename,
"%s/%s", dirname, argv[3]);
121 ERRMSG(
"Cannot open file!");
143 if (ctl->
dt_mod > fabs(met0->
lon[1] - met0->
lon[0]) * 111132. / 150.)
144 WARN(
"Violation of CFL criterion! Check DT_MOD!");
155 (
"Model configured for domain decomposition, but not compiled for it!");
173 LOG(1,
"SIZE_NP = %d", atm->
np);
174 LOG(1,
"SIZE_MPI_TASKS = %d", size);
175 LOG(1,
"SIZE_OMP_THREADS = %d", omp_get_max_threads());
178 LOG(1,
"MEMORY_ATM = %g MByte",
sizeof(
atm_t) / 1024. / 1024.);
179 LOG(1,
"MEMORY_CACHE = %g MByte",
sizeof(
cache_t) / 1024. / 1024.);
180 LOG(1,
"MEMORY_DEPO = %g MByte",
sizeof(
depo_t) / 1024. / 1024.);
181 LOG(1,
"MEMORY_CLIM = %g MByte",
sizeof(
clim_t) / 1024. / 1024.);
182 LOG(1,
"MEMORY_METEO = %g MByte",
sizeof(
met_t) / 1024. / 1024.);
185 mptrac_free(ctl, cache, clim, met0, met1, atm, depo, dd);
205 printf(
"\nMPTRAC trac tool.\n\n");
206 printf(
"Run forward or backward trajectory calculations.\n");
209 printf(
" trac <dirlist> <ctl> <atm_in> [KEY VALUE ...]\n");
211 printf(
"Arguments:\n");
212 printf(
" <dirlist> Text file containing work directories to process.\n");
213 printf(
" <ctl> Control file name relative to each work directory.\n");
215 (
" <atm_in> Atmospheric input file name relative to each work directory.\n");
216 printf(
" [KEY VALUE] Optional control parameters.\n");
217 printf(
"\nFurther information:\n");
218 printf(
" Manual: https://slcs-jsc.github.io/mptrac/\n");
void mptrac_free(ctl_t *ctl, cache_t *cache, clim_t *clim, met_t *met0, met_t *met1, atm_t *atm, depo_t *depo, dd_t *dd)
Frees memory resources allocated for MPTRAC.
void mptrac_write_output(const char *dirname, const ctl_t *ctl, met_t *met0, met_t *met1, atm_t *atm, depo_t *depo, const double t)
Writes various types of output data to files in a specified directory.
void mptrac_get_met(ctl_t *ctl, clim_t *clim, const double t, met_t **met0, met_t **met1, dd_t *dd)
Retrieves meteorological data for the specified time.
void mptrac_read_clim(const ctl_t *ctl, clim_t *clim)
Reads various climatological data and populates the given climatology structure.
void mptrac_init(ctl_t *ctl, cache_t *cache, clim_t *clim, atm_t *atm, depo_t *depo, const int ntask)
Initializes the MPTRAC model and its associated components.
int mptrac_read_atm(const char *filename, const ctl_t *ctl, atm_t *atm)
Reads air parcel data from a specified file into the given atmospheric structure.
void mptrac_alloc(ctl_t **ctl, cache_t **cache, clim_t **clim, met_t **met0, met_t **met1, atm_t **atm, depo_t **depo, dd_t **dd)
Allocates and initializes memory resources for MPTRAC.
void mptrac_run_timestep(ctl_t *ctl, cache_t *cache, clim_t *clim, met_t **met0, met_t **met1, atm_t *atm, depo_t *depo, double t, dd_t *dd)
Executes a single timestep of the MPTRAC model simulation.
void mptrac_read_ctl(const char *filename, int argc, char *argv[], ctl_t *ctl)
Reads control parameters from a configuration file and populates the given structure.
MPTRAC library declarations.
void dd_init(const ctl_t *ctl, dd_t *dd, atm_t *atm)
Initialize the domain decomposition infrastructure.
#define LEN
Maximum length of ASCII data lines.
#define ERRMSG(...)
Print an error message with contextual information and terminate the program.
#define USAGE
Print usage information on -h or --help.
#define WARN(...)
Print a warning message with contextual information.
#define PRINT_TIMERS
Print the current state of all timers.
#define LOG(level,...)
Print a log message with a specified logging level.
int np
Number of air parcels.
int direction
Direction flag (1=forward calculation, -1=backward calculation).
int dd
Domain decomposition (0=no, 1=yes, with 2x2 if not specified).
double t_stop
Stop time of simulation [s].
double dt_mod
Time step of simulation [s].
int dd_subdomains_zonal
Domain decomposition zonal subdomain number.
double t_start
Start time of simulation [s].
int dd_subdomains_meridional
Domain decomposition meridional subdomain number.
Domain decomposition data structure.
Ground inventories of deposited radionuclides.
double lon[EX]
Longitudes [deg].
int main(int argc, char *argv[])
void usage(void)
Print command-line help.