41 {
42
47
48 FILE *out;
49
50 char filename[2 *
LEN], losbase[
LEN];
51
53
54
56
57
58 if (argc < 5)
59 ERRMSG(
"Missing or invalid command-line arguments.\n\n"
60 "Usage: raytrace <ctl> <obs> <atm> <raytrace.tab> [KEY VALUE ...]\n\n"
61 "Use -h for full help.");
62
63
65
66
67 scan_ctl(argc, argv,
"LOSBASE", -1,
"los", losbase);
68
69
70 read_obs(NULL, argv[2], &ctl, &obs, 0);
71
72
73 read_atm(NULL, argv[3], &ctl, &atm, 0);
74
75
76 LOG(1,
"Write raytrace data: %s", argv[4]);
77
78
79 if (!(out = fopen(argv[4], "w")))
80 ERRMSG(
"Cannot create file!");
81
82
83 fprintf(out,
84 "# $1 = time (seconds since 2000-01-01T00:00Z)\n"
85 "# $2 = observer altitude [km]\n"
86 "# $3 = observer longitude [deg]\n"
87 "# $4 = observer latitude [deg]\n"
88 "# $5 = view point altitude [km]\n"
89 "# $6 = view point longitude [deg]\n"
90 "# $7 = view point latitude [deg]\n"
91 "# $8 = tangent point altitude [km]\n"
92 "# $9 = tangent point longitude [deg]\n"
93 "# $10 = tangent point latitude [deg]\n"
94 "# $11 = ray path index\n" "# $12 = ray path length [km]\n");
95 for (
int ig = 0; ig < ctl.
ng; ig++)
96 fprintf(out, "# $%d = %s column density [molec/cm^2]\n",
98 fprintf(out, "\n");
99
100
101 for (
int ir = 0; ir < obs.
nr; ir++) {
102
103
104 raytrace(&ctl, &atm, &obs, &los, ir);
105
106
107 sprintf(filename, "%s.%d.tab", losbase, ir);
108
109
110 LOG(1,
"Write LOS data: %s", filename);
111
112
113 FILE *out2;
114 if (!(out2 = fopen(filename, "w")))
115 ERRMSG(
"Cannot create file!");
116
117
118 fprintf(out2,
119 "# $1 = time (seconds since 2000-01-01T00:00Z)\n"
120 "# $2 = altitude [km]\n"
121 "# $3 = longitude [deg]\n"
122 "# $4 = latitude [deg]\n"
123 "# $5 = pressure [hPa]\n" "# $6 = temperature [K]\n");
124 for (
int ig = 0; ig < ctl.
ng; ig++)
125 fprintf(out2, "# $%d = %s volume mixing ratio [ppv]\n",
127 for (
int iw = 0; iw < ctl.
nw; iw++)
128 fprintf(out2, "# $%d = extinction (window %d) [km^-1]\n",
129 7 + ctl.
ng + iw, iw);
130 fprintf(out2, "\n");
131
132
133 for (
int ip = 0; ip < los.
np; ip++) {
134 fprintf(out2,
"%.2f %g %g %g %g %g", obs.
time[ir], los.
z[ip],
135 los.
lon[ip], los.
lat[ip], los.
p[ip], los.
t[ip]);
136 for (
int ig = 0; ig < ctl.
ng; ig++)
137 fprintf(out2,
" %g", los.
q[ip][ig]);
138 for (
int iw = 0; iw < ctl.
nw; iw++)
139 fprintf(out2,
" %g", los.
k[ip][iw]);
140 fprintf(out2, "\n");
141 }
142
143
144 fclose(out2);
145
146
147 double s = 0;
148 for (
int ig = 0; ig < ctl.
ng; ig++)
149 u[ig] = 0;
150 for (
int ip = 0; ip < los.
np; ip++) {
152 for (
int ig = 0; ig < ctl.
ng; ig++)
153 u[ig] += los.
u[ip][ig];
154 }
155
156
157 fprintf(out, "%.2f %g %g %g %g %g %g %g %g %g %d %g",
161 for (
int ig = 0; ig < ctl.
ng; ig++)
162 fprintf(out, " %g", u[ig]);
163 fprintf(out, "\n");
164 }
165
166
167 fclose(out);
168
169 return EXIT_SUCCESS;
170}
void read_ctl(int argc, char *argv[], ctl_t *ctl)
Read model control parameters from command-line and configuration input.
void raytrace(const ctl_t *ctl, const atm_t *atm, obs_t *obs, los_t *los, const int ir)
Perform line-of-sight (LOS) ray tracing through the atmosphere.
void read_obs(const char *dirname, const char *filename, const ctl_t *ctl, obs_t *obs, int profile)
Read observation data from an input file.
void read_atm(const char *dirname, const char *filename, const ctl_t *ctl, atm_t *atm, int profile)
Read atmospheric input data from a file.
double scan_ctl(int argc, char *argv[], const char *varname, const int arridx, const char *defvalue, char *value)
Scan control file or command-line arguments for a configuration variable.
#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 NG
Maximum number of emitters.
#define LOG(level,...)
Print a log message with a specified logging level.
Atmospheric profile data.
int nw
Number of spectral windows.
int ng
Number of emitters.
char emitter[NG][LEN]
Name of each emitter.
double z[NLOS]
Altitude [km].
double q[NLOS][NG]
Volume mixing ratio [ppv].
double lon[NLOS]
Longitude [deg].
double ds[NLOS]
Segment length [km].
int np
Number of LOS points.
double u[NLOS][NG]
Column density [molecules/cm^2].
double lat[NLOS]
Latitude [deg].
double k[NLOS][ND]
Extinction [km^-1].
double t[NLOS]
Temperature [K].
double p[NLOS]
Pressure [hPa].
Observation geometry and radiance data.
double tplon[NR]
Tangent point longitude [deg].
double vpz[NR]
View point altitude [km].
double vplat[NR]
View point latitude [deg].
double obslon[NR]
Observer longitude [deg].
double obslat[NR]
Observer latitude [deg].
double obsz[NR]
Observer altitude [km].
double tplat[NR]
Tangent point latitude [deg].
double vplon[NR]
View point longitude [deg].
double time[NR]
Time (seconds since 2000-01-01T00:00Z).
double tpz[NR]
Tangent point altitude [km].
int nr
Number of ray paths.