29 {
30
32
33 atm_t *atm, *atm_filt;
34
35 FILE *out;
36
37 double latm, lonm, t, t0 = NAN, qm[
NQ], *work, zm, *zs;
38
39 int init = 0;
40
41
48
49
50 if (argc < 4)
51 ERRMSG(
"Give parameters: <ctl> <stat.tab> <param> <atm1> [<atm2> ...]");
52
53
55 const int ens =
56 (int)
scan_ctl(argv[1], argc, argv,
"STAT_ENS", -1,
"-999", NULL);
57 const double p0 =
58 P(
scan_ctl(argv[1], argc, argv,
"STAT_Z0", -1,
"-1000", NULL));
59 const double p1 =
60 P(
scan_ctl(argv[1], argc, argv,
"STAT_Z1", -1,
"1000", NULL));
61 const double lat0 =
62 scan_ctl(argv[1], argc, argv,
"STAT_LAT0", -1,
"-1000", NULL);
63 const double lat1 =
64 scan_ctl(argv[1], argc, argv,
"STAT_LAT1", -1,
"1000", NULL);
65 const double lon0 =
66 scan_ctl(argv[1], argc, argv,
"STAT_LON0", -1,
"-1000", NULL);
67 const double lon1 =
68 scan_ctl(argv[1], argc, argv,
"STAT_LON1", -1,
"1000", NULL);
69
70
71 LOG(1,
"Write air parcel statistics: %s", argv[2]);
72
73
74 if (!(out = fopen(argv[2], "w")))
75 ERRMSG(
"Cannot create file!");
76
77
78 fprintf(out,
79 "# $1 = time [s]\n"
80 "# $2 = time difference [s]\n"
81 "# $3 = altitude (%s) [km]\n"
82 "# $4 = longitude (%s) [deg]\n"
83 "# $5 = latitude (%s) [deg]\n", argv[3], argv[3], argv[3]);
84 for (
int iq = 0; iq < ctl.
nq; iq++)
85 fprintf(out, "# $%d = %s (%s) [%s]\n", iq + 6,
87 fprintf(out,
"# $%d = number of particles\n\n", ctl.
nq + 6);
88
89
90 for (int f = 4; f < argc; f++) {
91
92
94 continue;
95
96
98
99
100 if (!init) {
101 init = 1;
102 t0 = t;
103 }
104
105
107 for (
int ip = 0; ip < atm->
np; ip++) {
108
109
110 if (!isfinite(atm->
time[ip]))
111 continue;
112
113
115 continue;
116
117
118 if (atm->
p[ip] > p0 || atm->
p[ip] < p1
119 || atm->
lon[ip] < lon0 || atm->
lon[ip] > lon1
120 || atm->
lat[ip] < lat0 || atm->
lat[ip] > lat1)
121 continue;
122
123
125 atm_filt->
p[atm_filt->
np] = atm->
p[ip];
126 atm_filt->
lon[atm_filt->
np] = atm->
lon[ip];
127 atm_filt->
lat[atm_filt->
np] = atm->
lat[ip];
128 for (
int iq = 0; iq < ctl.
nq; iq++)
129 atm_filt->
q[iq][atm_filt->
np] = atm->
q[iq][ip];
131 }
132
133
134 for (
int ip = 0; ip < atm_filt->
np; ip++)
135 zs[ip] =
Z(atm_filt->
p[ip]);
136
137
138 if (strcasecmp(argv[3], "mean") == 0) {
139 zm = gsl_stats_mean(zs, 1, (
size_t) atm_filt->
np);
140 lonm = gsl_stats_mean(atm_filt->
lon, 1, (
size_t) atm_filt->
np);
141 latm = gsl_stats_mean(atm_filt->
lat, 1, (
size_t) atm_filt->
np);
142 for (
int iq = 0; iq < ctl.
nq; iq++)
143 qm[iq] = gsl_stats_mean(atm_filt->
q[iq], 1, (
size_t) atm_filt->
np);
144 } else if (strcasecmp(argv[3], "stddev") == 0) {
145 zm = gsl_stats_sd(zs, 1, (
size_t) atm_filt->
np);
146 lonm = gsl_stats_sd(atm_filt->
lon, 1, (
size_t) atm_filt->
np);
147 latm = gsl_stats_sd(atm_filt->
lat, 1, (
size_t) atm_filt->
np);
148 for (
int iq = 0; iq < ctl.
nq; iq++)
149 qm[iq] = gsl_stats_sd(atm_filt->
q[iq], 1, (
size_t) atm_filt->
np);
150 } else if (strcasecmp(argv[3], "min") == 0) {
151 zm = gsl_stats_min(zs, 1, (
size_t) atm_filt->
np);
152 lonm = gsl_stats_min(atm_filt->
lon, 1, (
size_t) atm_filt->
np);
153 latm = gsl_stats_min(atm_filt->
lat, 1, (
size_t) atm_filt->
np);
154 for (
int iq = 0; iq < ctl.
nq; iq++)
155 qm[iq] = gsl_stats_min(atm_filt->
q[iq], 1, (
size_t) atm_filt->
np);
156 } else if (strcasecmp(argv[3], "max") == 0) {
157 zm = gsl_stats_max(zs, 1, (
size_t) atm_filt->
np);
158 lonm = gsl_stats_max(atm_filt->
lon, 1, (
size_t) atm_filt->
np);
159 latm = gsl_stats_max(atm_filt->
lat, 1, (
size_t) atm_filt->
np);
160 for (
int iq = 0; iq < ctl.
nq; iq++)
161 qm[iq] = gsl_stats_max(atm_filt->
q[iq], 1, (
size_t) atm_filt->
np);
162 } else if (strcasecmp(argv[3], "skew") == 0) {
163 zm = gsl_stats_skew(zs, 1, (
size_t) atm_filt->
np);
164 lonm = gsl_stats_skew(atm_filt->
lon, 1, (
size_t) atm_filt->
np);
165 latm = gsl_stats_skew(atm_filt->
lat, 1, (
size_t) atm_filt->
np);
166 for (
int iq = 0; iq < ctl.
nq; iq++)
167 qm[iq] = gsl_stats_skew(atm_filt->
q[iq], 1, (
size_t) atm_filt->
np);
168 } else if (strcasecmp(argv[3], "kurt") == 0) {
169 zm = gsl_stats_kurtosis(zs, 1, (
size_t) atm_filt->
np);
170 lonm = gsl_stats_kurtosis(atm_filt->
lon, 1, (
size_t) atm_filt->
np);
171 latm = gsl_stats_kurtosis(atm_filt->
lat, 1, (
size_t) atm_filt->
np);
172 for (
int iq = 0; iq < ctl.
nq; iq++)
173 qm[iq] =
174 gsl_stats_kurtosis(atm_filt->
q[iq], 1, (
size_t) atm_filt->
np);
175 } else if (strcasecmp(argv[3], "median") == 0) {
176 zm = gsl_stats_median(zs, 1, (
size_t) atm_filt->
np);
177 lonm = gsl_stats_median(atm_filt->
lon, 1, (
size_t) atm_filt->
np);
178 latm = gsl_stats_median(atm_filt->
lat, 1, (
size_t) atm_filt->
np);
179 for (
int iq = 0; iq < ctl.
nq; iq++)
180 qm[iq] = gsl_stats_median(atm_filt->
q[iq], 1, (
size_t) atm_filt->
np);
181 } else if (strcasecmp(argv[3], "absdev") == 0) {
182 zm = gsl_stats_absdev(zs, 1, (
size_t) atm_filt->
np);
183 lonm = gsl_stats_absdev(atm_filt->
lon, 1, (
size_t) atm_filt->
np);
184 latm = gsl_stats_absdev(atm_filt->
lat, 1, (
size_t) atm_filt->
np);
185 for (
int iq = 0; iq < ctl.
nq; iq++)
186 qm[iq] = gsl_stats_absdev(atm_filt->
q[iq], 1, (
size_t) atm_filt->
np);
187 } else if (strcasecmp(argv[3], "mad") == 0) {
188 zm = gsl_stats_mad0(zs, 1, (
size_t) atm_filt->
np, work);
189 lonm = gsl_stats_mad0(atm_filt->
lon, 1, (
size_t) atm_filt->
np, work);
190 latm = gsl_stats_mad0(atm_filt->
lat, 1, (
size_t) atm_filt->
np, work);
191 for (
int iq = 0; iq < ctl.
nq; iq++)
192 qm[iq] =
193 gsl_stats_mad0(atm_filt->
q[iq], 1, (
size_t) atm_filt->
np, work);
194 } else
195 ERRMSG(
"Unknown parameter!");
196
197
198 fprintf(out, "%.2f %.2f %g %g %g", t, t - t0, zm, lonm, latm);
199 for (
int iq = 0; iq < ctl.
nq; iq++) {
200 fprintf(out, " ");
202 }
203 fprintf(out,
" %d\n", atm_filt->
np);
204 }
205
206
207 fclose(out);
208
209
210 free(atm);
211 free(atm_filt);
212 free(work);
213 free(zs);
214
215 return EXIT_SUCCESS;
216}
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.
double time_from_filename(const char *filename, const int offset)
Extracts and converts a timestamp from a filename to Julian seconds.
void read_ctl(const char *filename, int argc, char *argv[], ctl_t *ctl)
Reads control parameters from a configuration file and populates the given structure.
int 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.
#define ERRMSG(...)
Print an error message with contextual information and terminate the program.
#define Z(p)
Convert pressure to altitude.
#define P(z)
Compute pressure at given altitude.
#define NQ
Maximum number of quantities per data point.
#define ALLOC(ptr, type, n)
Allocate memory for a pointer with error handling.
#define NP
Maximum number of atmospheric data points.
#define LOG(level,...)
Print a log message with a specified logging level.
double lat[NP]
Latitude [deg].
double lon[NP]
Longitude [deg].
int np
Number of air parcels.
double q[NQ][NP]
Quantity data (for various, user-defined attributes).
double p[NP]
Pressure [hPa].
char qnt_format[NQ][LEN]
Quantity output format.
int atm_type
Type of atmospheric data files (0=ASCII, 1=binary, 2=netCDF, 3=CLaMS_traj, 4=CLaMS_pos).
char qnt_unit[NQ][LEN]
Quantity units.
char qnt_name[NQ][LEN]
Quantity names.
int qnt_ens
Quantity array index for ensemble IDs.
int nq
Number of quantities.