41 {
42
44
46
48
50
53
54 static int init, nx, ny, nt, ncid, varid, dims[3];
55
56 static size_t count[10], start[10];
57
58
60
61
62 if (argc < 4)
63 ERRMSG(
"Missing or invalid command-line arguments.\n\n"
64 "Usage: tropo <ctl> <tropo.nc> <met0> [<met1> ...]\n\n"
65 "Use -h for full help.");
66
67
68 mptrac_alloc(NULL, NULL, &clim, &met, NULL, NULL, NULL, &dd);
69
70
72 double lon0 =
scan_ctl(argv[1], argc, argv,
"TROPO_LON0", -1,
"-180", NULL);
73 double lon1 =
scan_ctl(argv[1], argc, argv,
"TROPO_LON1", -1,
"180", NULL);
74 double dlon =
scan_ctl(argv[1], argc, argv,
"TROPO_DLON", -1,
"-999", NULL);
75 double lat0 =
scan_ctl(argv[1], argc, argv,
"TROPO_LAT0", -1,
"-90", NULL);
76 double lat1 =
scan_ctl(argv[1], argc, argv,
"TROPO_LAT1", -1,
"90", NULL);
77 double dlat =
scan_ctl(argv[1], argc, argv,
"TROPO_DLAT", -1,
"-999", NULL);
78 int h2o = (int)
scan_ctl(argv[1], argc, argv,
"TROPO_H2O", -1,
"1", NULL);
79 int o3 = (int)
scan_ctl(argv[1], argc, argv,
"TROPO_O3", -1,
"1", NULL);
80
81
83
84
85 for (int i = 3; i < argc; i++) {
86
87
89
90
92 continue;
93
94
95 if (!init) {
96 init = 1;
97
98
99 if (dlon <= 0)
100 dlon = fabs(met->
lon[1] - met->
lon[0]);
101 if (dlat <= 0)
102 dlat = fabs(met->
lat[1] - met->
lat[0]);
103 if (lon0 < -360 && lon1 > 360) {
104 lon0 = gsl_stats_min(met->
lon, 1, (
size_t) met->
nx);
105 lon1 = gsl_stats_max(met->
lon, 1, (
size_t) met->
nx);
106 }
107 nx = ny = 0;
108 for (lon = lon0; lon <= lon1 + 0.001; lon += dlon) {
109 lons[nx] = round(lon * 1e3) / 1e3;
111 ERRMSG(
"Too many longitudes!");
112 }
113 if (lat0 < -90 && lat1 > 90) {
114 lat0 = gsl_stats_min(met->
lat, 1, (
size_t) met->
ny);
115 lat1 = gsl_stats_max(met->
lat, 1, (
size_t) met->
ny);
116 }
117 for (lat = lat0; lat <= lat1 + 0.001; lat += dlat) {
118 lats[ny] = round(lat * 1e3) / 1e3;
120 ERRMSG(
"Too many latitudes!");
121 }
122
123
124 LOG(1,
"Write tropopause data file: %s", argv[2]);
125 NC(nc_create(argv[2], NC_NETCDF4, &ncid));
126
127
128 NC(nc_def_dim(ncid,
"time", (
size_t) NC_UNLIMITED, &dims[0]));
129 NC(nc_def_dim(ncid,
"lat", (
size_t) ny, &dims[1]));
130 NC(nc_def_dim(ncid,
"lon", (
size_t) nx, &dims[2]));
131
132
133 NC_DEF_VAR(
"time", NC_DOUBLE, 1, &dims[0],
"time",
134 "seconds since 2000-01-01 00:00:00 UTC", 0, 0);
135 NC_DEF_VAR(
"lat", NC_DOUBLE, 1, &dims[1],
"latitude",
"degrees_north",
136 0, 0);
137 NC_DEF_VAR(
"lon", NC_DOUBLE, 1, &dims[2],
"longitude",
"degrees_east",
138 0, 0);
139
140 NC_DEF_VAR(
"clp_z", NC_FLOAT, 3, &dims[0],
"cold point height",
"km", 0,
141 0);
142 NC_DEF_VAR(
"clp_p", NC_FLOAT, 3, &dims[0],
"cold point pressure",
"hPa",
143 0, 0);
144 NC_DEF_VAR(
"clp_t", NC_FLOAT, 3, &dims[0],
"cold point temperature",
145 "K", 0, 0);
146 if (h2o)
147 NC_DEF_VAR(
"clp_q", NC_FLOAT, 3, &dims[0],
"cold point water vapor",
148 "ppv", 0, 0);
149 if (o3)
150 NC_DEF_VAR(
"clp_o3", NC_FLOAT, 3, &dims[0],
"cold point ozone",
151 "ppv", 0, 0);
152
154 "dynamical tropopause height", "km", 0, 0);
156 "dynamical tropopause pressure", "hPa", 0, 0);
158 "dynamical tropopause temperature", "K", 0, 0);
159 if (h2o)
161 "dynamical tropopause water vapor", "ppv", 0, 0);
162 if (o3)
164 "dynamical tropopause ozone", "ppv", 0, 0);
165
166 NC_DEF_VAR(
"wmo_1st_z", NC_FLOAT, 3, &dims[0],
167 "WMO 1st tropopause height", "km", 0, 0);
168 NC_DEF_VAR(
"wmo_1st_p", NC_FLOAT, 3, &dims[0],
169 "WMO 1st tropopause pressure", "hPa", 0, 0);
170 NC_DEF_VAR(
"wmo_1st_t", NC_FLOAT, 3, &dims[0],
171 "WMO 1st tropopause temperature", "K", 0, 0);
172 if (h2o)
173 NC_DEF_VAR(
"wmo_1st_q", NC_FLOAT, 3, &dims[0],
174 "WMO 1st tropopause water vapor", "ppv", 0, 0);
175 if (o3)
176 NC_DEF_VAR(
"wmo_1st_o3", NC_FLOAT, 3, &dims[0],
177 "WMO 1st tropopause ozone", "ppv", 0, 0);
178
179 NC_DEF_VAR(
"wmo_2nd_z", NC_FLOAT, 3, &dims[0],
180 "WMO 2nd tropopause height", "km", 0, 0);
181 NC_DEF_VAR(
"wmo_2nd_p", NC_FLOAT, 3, &dims[0],
182 "WMO 2nd tropopause pressure", "hPa", 0, 0);
183 NC_DEF_VAR(
"wmo_2nd_t", NC_FLOAT, 3, &dims[0],
184 "WMO 2nd tropopause temperature", "K", 0, 0);
185 if (h2o)
186 NC_DEF_VAR(
"wmo_2nd_q", NC_FLOAT, 3, &dims[0],
187 "WMO 2nd tropopause water vapor", "ppv", 0, 0);
188 if (o3)
189 NC_DEF_VAR(
"wmo_2nd_o3", NC_FLOAT, 3, &dims[0],
190 "WMO 2nd tropopause ozone", "ppv", 0, 0);
191
192 NC_DEF_VAR(
"ps", NC_FLOAT, 3, &dims[0],
"surface pressure",
"hPa", 0,
193 0);
194 NC_DEF_VAR(
"zs", NC_FLOAT, 3, &dims[0],
"surface height",
"km", 0, 0);
195
196
198
199
202 }
203
204
205 start[0] = (size_t) nt;
206 count[0] = 1;
207 start[1] = 0;
208 count[1] = (size_t) ny;
209 start[2] = 0;
210 count[2] = (size_t) nx;
212
213
214 get_tropo(2, &ctl, clim, met, lons, nx, lats, ny, pt, zt, tt, qt, o3t, ps,
215 zs);
219 if (h2o)
221 if (o3)
223
224
225 get_tropo(5, &ctl, clim, met, lons, nx, lats, ny, pt, zt, tt, qt, o3t, ps,
226 zs);
230 if (h2o)
232 if (o3)
234
235
236 get_tropo(3, &ctl, clim, met, lons, nx, lats, ny, pt, zt, tt, qt, o3t, ps,
237 zs);
241 if (h2o)
243 if (o3)
245
246
247 get_tropo(4, &ctl, clim, met, lons, nx, lats, ny, pt, zt, tt, qt, o3t, ps,
248 zs);
252 if (h2o)
254 if (o3)
256
257
260
261
262 nt++;
263 }
264
265
267
268
269 mptrac_free(NULL, NULL, clim, met, NULL, NULL, NULL, dd);
270
271 return EXIT_SUCCESS;
272}
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.
double scan_ctl(const char *filename, int argc, char *argv[], const char *varname, const int arridx, const char *defvalue, char *value)
Scans a control file or command-line arguments for a specified variable.
void mptrac_read_clim(const ctl_t *ctl, clim_t *clim)
Reads various climatological data and populates the given climatology 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.
int mptrac_read_met(const char *filename, const ctl_t *ctl, const clim_t *clim, met_t *met, dd_t *dd)
Reads meteorological data from a file, supporting multiple formats and MPI broadcasting.
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.
void get_tropo(const int met_tropo, ctl_t *ctl, const clim_t *clim, met_t *met, const double *lons, const int nx, const double *lats, const int ny, double *pt, double *zt, double *tt, double *qt, double *o3t, double *ps, double *zs)
Calculate tropopause data.
#define NC(cmd)
Execute a NetCDF command and check for errors.
#define ERRMSG(...)
Print an error message with contextual information and terminate the program.
#define EY
Maximum number of latitudes for meteo data.
#define USAGE
Print usage information on -h or --help.
#define EX
Maximum number of longitudes for meteo data.
#define LOG(level,...)
Print a log message with a specified logging level.
#define NC_DEF_VAR(varname, type, ndims, dims, long_name, units, level, quant)
Define a NetCDF variable with attributes.
#define NC_PUT_DOUBLE(varname, ptr, hyperslab)
Write double precision data to a NetCDF variable.
int met_tropo
Tropopause definition (0=none, 1=clim, 2=cold point, 3=WMO_1st, 4=WMO_2nd, 5=dynamical).
Domain decomposition data structure.
int nx
Number of longitudes.
int ny
Number of latitudes.
double lon[EX]
Longitudes [deg].
double lat[EY]
Latitudes [deg].