108#include <gsl/gsl_math.h>
109#include <gsl/gsl_blas.h>
110#include <gsl/gsl_linalg.h>
111#include <gsl/gsl_randist.h>
112#include <gsl/gsl_rng.h>
113#include <gsl/gsl_statistics.h>
129#define C1 1.19104259e-8
159#define KB 1.3806504e-23
169#define NA 6.02214199e23
278#define N ((2 + NG + NW) * NP + NCL + NSF + 3)
283#define NQ (5 + NG + NW + NCL + NSF)
323#define RFMNPTS 10000000
337#define IDXQ(ig) (2 + (ig))
340#define IDXK(iw) (2 + (ctl->ng) + (iw))
343#define IDXCLZ (2 + (ctl->ng) + (ctl->nw))
346#define IDXCLDZ (3 + (ctl->ng) + (ctl->nw))
349#define IDXCLK(icl) (4 + (ctl->ng) + (ctl->nw) + (icl))
352#define IDXSFT (4 + (ctl->ng) + (ctl->nw) + (ctl->ncl))
355#define IDXSFEPS(isf) (5 + (ctl->ng) + (ctl->nw) + (ctl->ncl) + (isf))
378#define ALLOC(ptr, type, n) \
379 if((ptr=calloc((size_t)(n), sizeof(type)))==NULL) \
380 ERRMSG("Out of memory!");
408#define BRIGHT(rad, nu) \
409 (C2 * (nu) / gsl_log1p(C1 * POW3(nu) / (rad)))
425#define DEG2RAD(deg) ((deg) * (M_PI / 180.0))
443#define DIST(a, b) sqrt(DIST2(a, b))
461 ((a[0]-b[0])*(a[0]-b[0])+(a[1]-b[1])*(a[1]-b[1])+(a[2]-b[2])*(a[2]-b[2]))
478#define DOTP(a, b) (a[0]*b[0]+a[1]*b[1]+a[2]*b[2])
498#define FREAD(ptr, type, size, out) { \
499 if(fread(ptr, sizeof(type), size, out)!=size) \
500 ERRMSG("Error while reading!"); \
521#define FWRITE(ptr, type, size, out) { \
522 if(fwrite(ptr, sizeof(type), size, out)!=size) \
523 ERRMSG("Error while writing!"); \
544#define LIN(x0, y0, x1, y1, x) \
545 ((y0)+((y1)-(y0))/((x1)-(x0))*((x)-(x0)))
565#define LOGX(x0, y0, x1, y1, x) \
566 (((x)/(x0)>0 && (x1)/(x0)>0) \
567 ? ((y0)+((y1)-(y0))*log((x)/(x0))/log((x1)/(x0))) \
568 : LIN(x0, y0, x1, y1, x))
588#define LOGY(x0, y0, x1, y1, x) \
590 ? ((y0)*exp(log((y1)/(y0))/((x1)-(x0))*((x)-(x0)))) \
591 : LIN(x0, y0, x1, y1, x))
609#define MAX(a,b) (((a)>(b))?(a):(b))
627#define MIN(a,b) (((a)<(b))?(a):(b))
641 int nc_result=(cmd); \
642 if(nc_result!=NC_NOERR) \
643 ERRMSG("%s", nc_strerror(nc_result)); \
669#define NC_DEF_VAR(varname, type, ndims, dims, long_name, units, level, quant) { \
670 NC(nc_def_var(ncid, varname, type, ndims, dims, &varid)); \
671 NC(nc_put_att_text(ncid, varid, "long_name", strnlen(long_name, LEN), long_name)); \
672 NC(nc_put_att_text(ncid, varid, "units", strnlen(units, LEN), units)); \
674 NC(nc_def_var_quantize(ncid, varid, NC_QUANTIZE_GRANULARBR, quant)); \
676 NC(nc_def_var_deflate(ncid, varid, 1, 1, level)); \
699#define NC_GET_DOUBLE(varname, ptr, force) { \
701 NC(nc_inq_varid(ncid, varname, &varid)); \
702 NC(nc_get_var_double(ncid, varid, ptr)); \
704 if(nc_inq_varid(ncid, varname, &varid) == NC_NOERR) { \
705 NC(nc_get_var_double(ncid, varid, ptr)); \
707 WARN("netCDF variable %s is missing!", varname); \
729#define NC_INQ_DIM(dimname, ptr, min, max, check) { \
730 int dimid; size_t naux; \
731 NC(nc_inq_dimid(ncid, dimname, &dimid)); \
732 NC(nc_inq_dimlen(ncid, dimid, &naux)); \
735 if ((*ptr) < (min) || (*ptr) > (max)) \
736 ERRMSG("Dimension %s is out of range!", dimname); \
753#define NC_PUT_DOUBLE(varname, ptr, hyperslab) { \
754 NC(nc_inq_varid(ncid, varname, &varid)); \
756 NC(nc_put_vara_double(ncid, varid, start, count, ptr)); \
758 NC(nc_put_var_double(ncid, varid, ptr)); \
777#define NC_PUT_FLOAT(varname, ptr, hyperslab) { \
778 NC(nc_inq_varid(ncid, varname, &varid)); \
780 NC(nc_put_vara_float(ncid, varid, start, count, ptr)); \
782 NC(nc_put_var_float(ncid, varid, ptr)); \
800#define NC_PUT_INT(varname, ptr, hyperslab) { \
801 NC(nc_inq_varid(ncid, varname, &varid)); \
803 NC(nc_put_vara_int(ncid, varid, start, count, ptr)); \
805 NC(nc_put_var_int(ncid, varid, ptr)); \
822#define NC_PUT_ATT(varname, attname, text) { \
823 NC(nc_inq_varid(ncid, varname, &varid)); \
824 NC(nc_put_att_text(ncid, varid, attname, strnlen(text, LEN), text)); \
839#define NC_PUT_ATT_GLOBAL(attname, text) \
840 NC(nc_put_att_text(ncid, NC_GLOBAL, attname, strnlen(text, LEN), text));
871#define NEDT(t_bg, nesr, nu) \
872 (BRIGHT(PLANCK((t_bg), (nu)) + (nesr), (nu)) - (t_bg))
900#define NESR(t_bg, nedt, nu) \
901 (PLANCK((t_bg) + (nedt), (nu)) - PLANCK((t_bg), (nu)))
917#define NORM(a) sqrt(DOTP(a, a))
948#define PLANCK(T, nu) \
949 (C1 * POW3(nu) / gsl_expm1(C2 * (nu) / (T)))
962#define POW2(x) ((x)*(x))
975#define POW3(x) ((x)*(x)*(x))
991#define RAD2DEG(rad) ((rad) * (180.0 / M_PI))
1007#define REFRAC(p, T) (7.753e-05 * (p) / (T))
1023#define TBL_LOG(tbl, id, ig) \
1025 for (int ip = 0; ip < (tbl)->np[(id)][(ig)]; ip++) \
1027 "p[%2d]= %.5e hPa | T[0:%2d]= %.2f ... %.2f K | " \
1028 "u[0:%3d]= %.5e ... %.5e molec/cm^2 | " \
1029 "eps[0:%3d]= %.5e ... %.5e", \
1031 (tbl)->p[(id)][(ig)][(ip)], \
1032 (tbl)->nt[(id)][(ig)][(ip)] - 1, \
1033 (tbl)->t[(id)][(ig)][(ip)][0], \
1034 (tbl)->t[(id)][(ig)][(ip)] \
1035 [(tbl)->nt[(id)][(ig)][(ip)] - 1], \
1036 (tbl)->nu[(id)][(ig)][(ip)][0] - 1, \
1037 exp((tbl)->logu[(id)][(ig)][(ip)][0][0]), \
1038 exp((tbl)->logu[(id)][(ig)][(ip)][0] \
1039 [(tbl)->nu[(id)][(ig)][(ip)][0] - 1]), \
1040 (tbl)->nu[(id)][(ig)][(ip)][0] - 1, \
1041 exp((tbl)->logeps[(id)][(ig)][(ip)][0][0]), \
1042 exp((tbl)->logeps[(id)][(ig)][(ip)][0] \
1043 [(tbl)->nu[(id)][(ig)][(ip)][0] - 1])); \
1059#define TIMER(name, mode) \
1060 {timer(name, __FILE__, __func__, __LINE__, mode);}
1080#define TOK(line, tok, format, var) { \
1081 if(((tok)=strtok((line), " \t"))) { \
1082 if(sscanf(tok, format, &(var))!=1) continue; \
1083 } else ERRMSG("Error while reading!"); \
1124#define LOG(level, ...) { \
1127 if(level <= LOGLEV) { \
1128 printf(__VA_ARGS__); \
1161#define WARN(...) { \
1162 printf("\nWarning (%s, %s, l%d): ", __FILE__, __func__, __LINE__); \
1163 LOG(0, __VA_ARGS__); \
1194#define ERRMSG(...) { \
1195 printf("\nError (%s, %s, l%d): ", __FILE__, __func__, __LINE__); \
1196 LOG(0, __VA_ARGS__); \
1197 exit(EXIT_FAILURE); \
1229#define PRINT(format, var) \
1230 printf("Print (%s, %s, l%d): %s= "format"\n", \
1231 __FILE__, __func__, __LINE__, #var, var);
1758 const gsl_matrix * avk);
1816 const gsl_matrix * avk,
1880 const int value_iqa,
1995 const gsl_vector * dx,
1996 const gsl_vector * dy,
1997 const gsl_matrix * s_a_inv,
1998 const gsl_vector * sig_eps_inv);
2118 const atm_t * atm_src,
2148 const obs_t * obs_src,
2226 const char *emitter);
2619 double tau_path[
ND][
NG],
2620 double tau_seg[
ND]);
2665 double tau_path[
ND][
NG],
2666 double tau_seg[
ND]);
2738 const double logeps);
3002 const gsl_matrix * a,
3003 const gsl_vector * b,
3004 const int transpose,
3192 const char *dirname,
3193 const char *filename,
3244 const char *filename,
3298 const char *filename,
3342 const char *filename,
3424 const char *dirname,
3425 const char *filename,
3426 gsl_matrix * matrix);
3463 const char *dirname,
3464 const char *filename,
3505 const char *filename,
3550 const char *filename,
3586 const char *filename,
3631 const char *basename,
3748 const char *filename,
3787 const char *filename,
4014 const char *varname,
4016 const char *defvalue,
4137 gsl_vector * sig_noise,
4138 gsl_vector * sig_formod,
4139 gsl_vector * sig_eps_inv);
4295 size_t *bytes_used);
4354 const uint8_t * buf);
4388 const double remain,
4484 const char *dirname,
4485 const char *filename,
4541 const char *filename,
4599 const char *filename,
4647 const char *filename,
4704 const char *filename,
4756 const char *dirname,
4757 const char *filename,
4759 const gsl_matrix * matrix,
4762 const char *rowspace,
4763 const char *colspace,
4799 const char *dirname,
4800 const char *filename,
4843 const char *filename,
4884 const char *filename,
4924 const char *filename,
4964 const char *filename,
5015 const char *quantity,
5019 const gsl_matrix * s);
5210 const gsl_vector * x,
5243 const gsl_vector * x,
5280 const gsl_vector * y,
double intpol_tbl_eps(const tbl_t *tbl, const int ig, const int id, const int ip, const int it, const double logu)
Interpolate gas emissivity as a function of column amount.
void analyze_avk(const ret_t *ret, const ctl_t *ctl, const atm_t *atm, const int *iqa, const int *ipa, const gsl_matrix *avk)
Analyze averaging kernel (AVK) matrix for retrieval diagnostics.
void read_tbl_bin(const ctl_t *ctl, tbl_t *tbl, const int id, const int ig)
Read a single compact binary emissivity lookup table.
#define LEN
Maximum length of ASCII data lines.
double cost_function(const gsl_vector *dx, const gsl_vector *dy, const gsl_matrix *s_a_inv, const gsl_vector *sig_eps_inv)
Compute the normalized quadratic cost function for optimal estimation.
double read_obs_rfm(const char *basename, const double z, const double *nu, const double *f, const int n)
Read and spectrally convolve an RFM output spectrum.
void read_matrix(const char *dirname, const char *filename, gsl_matrix *matrix)
Read a numerical matrix from an ASCII file.
void timer(const char *name, const char *file, const char *func, int line, int mode)
Simple wall-clock timer for runtime diagnostics.
void read_rfm_spec(const char *filename, double *nu, double *rad, int *npts)
Read a Reference Forward Model (RFM) ASCII spectrum.
void tbl_pack(const tbl_t *tbl, int id, int ig, uint8_t *buf, size_t *bytes_used)
Pack a lookup table into a contiguous binary buffer.
double cos_sza(const double sec, const double lon, const double lat)
Calculates the cosine of the solar zenith angle.
void read_atm_bin(const char *filename, const ctl_t *ctl, atm_t *atm)
Read atmospheric data in binary format.
void write_obs_asc(const char *filename, const ctl_t *ctl, const obs_t *obs)
Write observation data to an ASCII text file.
void write_atm(const char *dirname, const char *filename, const ctl_t *ctl, const atm_t *atm)
Write atmospheric data to a file.
int locate_reg(const double *xx, const int n, const double x)
Locate index for interpolation on a regular (uniform) grid.
void intpol_tbl_ega(const ctl_t *ctl, const tbl_t *tbl, const los_t *los, const int ip, double tau_path[ND][NG], double tau_seg[ND])
Interpolate emissivities and transmittances using the Emissivity Growth Approximation (EGA).
void formod_rfm(const ctl_t *ctl, const atm_t *atm, obs_t *obs)
Interface routine for the Reference Forward Model (RFM).
double ctmo2(const double nu, const double p, const double t)
Compute O₂ collision-induced absorption coefficient.
void write_obs_nc(const char *filename, const ctl_t *ctl, const obs_t *obs, const int profile)
Write one observation profile to a NetCDF file.
void tbl_free(const ctl_t *ctl, tbl_t *tbl)
Free lookup table and all internally allocated memory.
void write_tbl_asc(const ctl_t *ctl, const tbl_t *tbl, const int id, const int ig)
Write one emissivity lookup table in human-readable ASCII format.
void write_tbl_nc(const ctl_t *ctl, const tbl_t *tbl, const int id, const int ig)
Write one packed lookup table to a NetCDF file.
void idx2name(const ctl_t *ctl, const int idx, char *quantity)
Convert a quantity index to a descriptive name string.
void read_ctl(int argc, char *argv[], ctl_t *ctl)
Read model control parameters from command-line and configuration input.
void formod_continua(const ctl_t *ctl, const los_t *los, const int ip, double *beta)
Compute total extinction including gaseous continua.
void read_obs_bin(const char *filename, const ctl_t *ctl, obs_t *obs)
Read binary-formatted observation data from a file.
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 matrix_product(const gsl_matrix *a, const gsl_vector *b, const int transpose, gsl_matrix *c)
Compute structured matrix products of the form or .
int locate_irr(const double *xx, const int n, const double x)
Locate index for interpolation on an irregular grid.
void day2doy(int year, int mon, int day, int *doy)
Convert a calendar date to day-of-year.
void write_atm_nc(const char *filename, const ctl_t *ctl, const atm_t *atm, int profile)
Write one atmospheric profile to a netCDF file.
void time2jsec(const int year, const int mon, const int day, const int hour, const int min, const int sec, const double remain, double *jsec)
Converts time components to seconds since January 1, 2000, 12:00:00 UTC.
void x2atm(const ctl_t *ctl, const gsl_vector *x, atm_t *atm)
Map retrieval state vector back to atmospheric structure.
void atm2x_help(const double value, const int value_iqa, const int value_ip, gsl_vector *x, int *iqa, int *ipa, size_t *n)
Append a single atmospheric value to the state vector.
double ctmh2o(const double nu, const double p, const double t, const double q, const double u)
Compute water vapor continuum (optical depth).
void write_tbl_bin(const ctl_t *ctl, const tbl_t *tbl, const int id, const int ig)
Write one emissivity lookup table in compact binary format.
void intpol_tbl_cga(const ctl_t *ctl, const tbl_t *tbl, const los_t *los, const int ip, double tau_path[ND][NG], double tau_seg[ND])
Interpolate emissivities and transmittances using the Curtis–Godson approximation (CGA).
void write_atm_rfm(const char *filename, const ctl_t *ctl, const atm_t *atm)
Write atmospheric profile in RFM-compatible format.
#define ND
Maximum number of radiance channels.
void set_cov_meas(const ret_t *ret, const ctl_t *ctl, const obs_t *obs, gsl_vector *sig_noise, gsl_vector *sig_formod, gsl_vector *sig_eps_inv)
Construct measurement error standard deviations and their inverse.
#define NSHAPE
Maximum number of shape function grid points.
void write_tbl(const ctl_t *ctl, const tbl_t *tbl)
Write emissivity lookup tables to disk.
size_t tbl_unpack(tbl_t *tbl, int id, int ig, const uint8_t *buf)
Unpack a lookup table from a contiguous binary buffer.
void intpol_atm(const ctl_t *ctl, const atm_t *atm, const double z, double *p, double *t, double *q, double *k)
Interpolate atmospheric state variables at a given altitude.
int find_emitter(const ctl_t *ctl, const char *emitter)
Find gas species index by name.
void optimal_estimation(ret_t *ret, ctl_t *ctl, tbl_t *tbl, obs_t *obs_meas, obs_t *obs_i, atm_t *atm_apr, atm_t *atm_i, double *chisq)
Perform optimal estimation retrieval using Levenberg–Marquardt minimization.
double intpol_tbl_u(const tbl_t *tbl, const int ig, const int id, const int ip, const int it, const double logeps)
Interpolate column amount as a function of emissivity.
void tangent_point(const los_t *los, double *tpz, double *tplon, double *tplat)
Determine the tangent point along a line of sight (LOS).
void formod_pencil(const ctl_t *ctl, const tbl_t *tbl, const atm_t *atm, obs_t *obs, const int ir)
Compute line-of-sight radiances using the pencil-beam forward model.
double ctmco2(const double nu, const double p, const double t, const double u)
Compute carbon dioxide continuum (optical depth).
void write_atm_asc(const char *filename, const ctl_t *ctl, const atm_t *atm)
Write atmospheric data to an ASCII file.
void read_atm(const char *dirname, const char *filename, const ctl_t *ctl, atm_t *atm)
Read atmospheric input data from a file.
void copy_obs(const ctl_t *ctl, obs_t *obs_dest, const obs_t *obs_src, const int init)
Copy or initialize observation geometry and radiance data.
void read_obs(const char *dirname, const char *filename, const ctl_t *ctl, obs_t *obs)
Read observation data from an input file.
void write_obs(const char *dirname, const char *filename, const ctl_t *ctl, const obs_t *obs)
Write observation data to an output file in ASCII or binary format.
#define TBLNT
Maximum number of temperatures in emissivity tables.
void write_obs_bin(const char *filename, const ctl_t *ctl, const obs_t *obs)
Write observation data in binary format to a file.
void x2atm_help(double *value, const gsl_vector *x, size_t *n)
Helper function to extract a single value from the retrieval state vector.
void cart2geo(const double *x, double *z, double *lon, double *lat)
Converts Cartesian coordinates to geographic coordinates.
#define NP
Maximum number of atmospheric data points.
void formod_fov(const ctl_t *ctl, obs_t *obs)
Apply field-of-view (FOV) convolution to modeled radiances.
void doy2day(int year, int doy, int *mon, int *day)
Convert a day-of-year value to a calendar date.
void kernel(const ctl_t *ctl, const tbl_t *tbl, atm_t *atm, obs_t *obs, gsl_matrix *k)
Compute the Jacobian (kernel) matrix by finite differences.
void read_obs_nc(const char *filename, const ctl_t *ctl, obs_t *obs, const int profile)
Read one observation profile from a NetCDF file.
void init_srcfunc(const ctl_t *ctl, tbl_t *tbl)
Initialize source function lookup tables from emissivity data.
void matrix_invert(gsl_matrix *a)
Invert a square matrix, optimized for diagonal or symmetric positive-definite matrices.
void read_ret(int argc, char *argv[], const ctl_t *ctl, ret_t *ret)
Read retrieval configuration and error parameters.
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.
void write_shape(const char *filename, const double *x, const double *y, const int n)
Write tabulated shape function data to a text file.
void formod(const ctl_t *ctl, const tbl_t *tbl, atm_t *atm, obs_t *obs)
Execute the selected forward model.
void read_atm_asc(const char *filename, const ctl_t *ctl, atm_t *atm)
Read atmospheric data in ASCII format.
#define NG
Maximum number of emitters.
void read_tbl_asc(const ctl_t *ctl, tbl_t *tbl, const int id, const int ig)
Read a single ASCII emissivity lookup table.
void formod_srcfunc(const ctl_t *ctl, const tbl_t *tbl, const double t, double *src)
Interpolate the source function (Planck radiance) at a given temperature.
void analyze_avk_quantity(const gsl_matrix *avk, const int iq, const int *ipa, const size_t *n0, const size_t *n1, double *cont, double *res)
Analyze averaging kernel submatrix for a specific retrieved quantity.
void jsec2time(const double jsec, int *year, int *mon, int *day, int *hour, int *min, int *sec, double *remain)
Converts Julian seconds to calendar date and time components.
#define TBLNS
Maximum number of source function temperature levels.
tbl_t * read_tbl(const ctl_t *ctl)
Read emissivity lookup tables from disk.
double sza(double sec, double lon, double lat)
Compute the solar zenith angle for a given time and location.
void read_tbl_nc_channel(const ctl_t *ctl, tbl_t *tbl, int id, int ig, int ncid)
Read one packed emissivity lookup table from an open NetCDF file.
void read_atm_nc(const char *filename, const ctl_t *ctl, atm_t *atm, int profile)
Read one atmospheric profile from a netCDF file.
void copy_atm(const ctl_t *ctl, atm_t *atm_dest, const atm_t *atm_src, const int init)
Copy or initialize atmospheric profile data.
size_t obs2y(const ctl_t *ctl, const obs_t *obs, gsl_vector *y, int *ida, int *ira)
Convert observation radiances into a measurement vector.
void y2obs(const ctl_t *ctl, const gsl_vector *y, obs_t *obs)
Copy elements from the measurement vector y into the observation structure.
void hydrostatic(const ctl_t *ctl, atm_t *atm)
Adjust pressure profile using the hydrostatic equation.
void read_shape(const char *filename, double *x, double *y, int *n)
Read a two-column shape function from an ASCII file.
double ctmn2(const double nu, const double p, const double t)
Compute N₂ collision-induced absorption coefficient.
size_t atm2x(const ctl_t *ctl, const atm_t *atm, gsl_vector *x, int *iqa, int *ipa)
Convert atmospheric data to state vector elements.
#define TBLNP
Maximum number of pressure levels in emissivity tables.
void climatology(const ctl_t *ctl, atm_t *atm)
Initializes atmospheric climatology profiles.
void geo2cart(const double z, const double lon, const double lat, double *x)
Converts geographic coordinates (longitude, latitude, altitude) to Cartesian coordinates.
#define NSF
Maximum number of surface layer spectral grid points.
void write_matrix(const char *dirname, const char *filename, const ctl_t *ctl, const gsl_matrix *matrix, const atm_t *atm, const obs_t *obs, const char *rowspace, const char *colspace, const char *sort)
Write a fully annotated matrix (e.g., Jacobian or gain matrix) to file.
#define NCL
Maximum number of cloud layer spectral grid points.
void set_cov_apr(const ret_t *ret, const ctl_t *ctl, const atm_t *atm, const int *iqa, const int *ipa, gsl_matrix *s_a)
Construct the a priori covariance matrix for retrieval parameters.
void write_stddev(const char *quantity, const ret_t *ret, const ctl_t *ctl, const atm_t *atm, const gsl_matrix *s)
Write retrieval standard deviation profiles to disk.
#define NLOS
Maximum number of LOS points.
size_t tbl_packed_size(const tbl_t *tbl, int id, int ig)
Compute required buffer size (in bytes) for tbl_pack().
#define NR
Maximum number of ray paths.
int locate_tbl(const float *xx, const int n, const double x)
Locate index for interpolation within emissivity table grids.
void write_atm_bin(const char *filename, const ctl_t *ctl, const atm_t *atm)
Write atmospheric data to a binary file.
void read_obs_asc(const char *filename, const ctl_t *ctl, obs_t *obs)
Read ASCII-formatted observation data from a file.
#define NW
Maximum number of spectral windows.
Atmospheric profile data.
double clz
Cloud layer height [km].
int np
Number of data points.
double cldz
Cloud layer depth [km].
double sft
Surface temperature [K].
int write_matrix
Write matrix file (0=no, 1=yes).
int nw
Number of spectral windows.
int atmfmt
Atmospheric data file format (1=ASCII, 2=binary, 3=netCDF).
double retp_zmin
Minimum altitude for pressure retrieval [km].
int ig_co2
Emitter index of CO2.
double hydz
Reference height for hydrostatic pressure profile (-999 to skip) [km].
int ctm_co2
Compute CO2 continuum (0=no, 1=yes).
double rett_zmax
Maximum altitude for temperature retrieval [km].
int ret_sfeps
Retrieve surface layer emissivity (0=no, 1=yes).
int ret_sft
Retrieve surface layer temperature (0=no, 1=yes).
int ret_clz
Retrieve cloud layer height (0=no, 1=yes).
int ctm_n2
Compute N2 continuum (0=no, 1=yes).
int ctm_h2o
Compute H2O continuum (0=no, 1=yes).
int formod
Forward model (0=CGA, 1=EGA, 2=RFM).
int ng
Number of emitters.
int refrac
Take into account refractivity (0=no, 1=yes).
int ig_o2
Emitter index of O2.
double rett_zmin
Minimum altitude for temperature retrieval [km].
double sfsza
Solar zenith angle at the surface [deg] (-999=auto).
int nd
Number of radiance channels.
int fov_n
Field-of-view number of data points.
int sftype
Surface treatment (0=none, 1=emissions, 2=downward, 3=solar).
int ncl
Number of cloud layer spectral grid points.
int ig_n2
Emitter index of N2.
int obsfmt
Observation data file format (1=ASCII, 2=binary, 3=netCDF).
int ctm_o2
Compute O2 continuum (0=no, 1=yes).
int ret_clk
Retrieve cloud layer extinction (0=no, 1=yes).
int nsf
Number of surface layer spectral grid points.
double rayds
Maximum step length for raytracing [km].
int ret_cldz
Retrieve cloud layer depth (0=no, 1=yes).
int ig_h2o
Emitter index of H2O.
int tblfmt
Look-up table file format (1=ASCII, 2=binary, 3=netCDF).
double raydz
Vertical step length for raytracing [km].
int write_bbt
Use brightness temperature instead of radiance (0=no, 1=yes).
double retp_zmax
Maximum altitude for pressure retrieval [km].
double sft
Surface temperature [K].
int np
Number of LOS points.
Observation geometry and radiance data.
int nr
Number of ray paths.
Retrieval control parameters.
double err_press_cz
Vertical correlation length for pressure error [km].
double err_press
Pressure error [%].
int err_ana
Carry out error analysis (0=no, 1=yes).
double err_temp_cz
Vertical correlation length for temperature error [km].
double conv_dmin
Minimum normalized step size in state space.
double err_temp
Temperature error [K].
double err_clz
Cloud height error [km].
double err_sft
Surface temperature error [K].
double err_temp_ch
Horizontal correlation length for temperature error [km].
int kernel_recomp
Re-computation of kernel matrix (number of iterations).
int conv_itmax
Maximum number of iterations.
double err_cldz
Cloud depth error [km].
double err_press_ch
Horizontal correlation length for pressure error [km].
Emissivity look-up tables.