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)))
430#define CLAMP(v, lo, hi) \
431 (((v) < (lo)) ? (lo) : (((v) > (hi)) ? (hi) : (v)))
447#define DEG2RAD(deg) ((deg) * (M_PI / 180.0))
465#define DIST(a, b) sqrt(DIST2(a, b))
483 ((a[0]-b[0])*(a[0]-b[0])+(a[1]-b[1])*(a[1]-b[1])+(a[2]-b[2])*(a[2]-b[2]))
500#define DOTP(a, b) (a[0]*b[0]+a[1]*b[1]+a[2]*b[2])
520#define FREAD(ptr, type, size, out) { \
521 if(fread(ptr, sizeof(type), size, out)!=size) \
522 ERRMSG("Error while reading!"); \
543#define FWRITE(ptr, type, size, out) { \
544 if(fwrite(ptr, sizeof(type), size, out)!=size) \
545 ERRMSG("Error while writing!"); \
566#define LIN(x0, y0, x1, y1, x) \
567 ((y0)+((y1)-(y0))/((x1)-(x0))*((x)-(x0)))
587#define LOGY(x0, y0, x1, y1, x) \
589 ? ((y0)*exp(log((y1)/(y0))/((x1)-(x0))*((x)-(x0)))) \
590 : LIN(x0, y0, x1, y1, x))
608#define MAX(a,b) (((a)>(b))?(a):(b))
626#define MIN(a,b) (((a)<(b))?(a):(b))
640 int nc_result=(cmd); \
641 if(nc_result!=NC_NOERR) \
642 ERRMSG("%s", nc_strerror(nc_result)); \
668#define NC_DEF_VAR(varname, type, ndims, dims, long_name, units, level, quant) { \
669 NC(nc_def_var(ncid, varname, type, ndims, dims, &varid)); \
670 NC(nc_put_att_text(ncid, varid, "long_name", strnlen(long_name, LEN), long_name)); \
671 NC(nc_put_att_text(ncid, varid, "units", strnlen(units, LEN), units)); \
673 NC(nc_def_var_quantize(ncid, varid, NC_QUANTIZE_GRANULARBR, quant)); \
675 NC(nc_def_var_deflate(ncid, varid, 1, 1, level)); \
698#define NC_GET_DOUBLE(varname, ptr, force) { \
700 NC(nc_inq_varid(ncid, varname, &varid)); \
701 NC(nc_get_var_double(ncid, varid, ptr)); \
703 if(nc_inq_varid(ncid, varname, &varid) == NC_NOERR) { \
704 NC(nc_get_var_double(ncid, varid, ptr)); \
706 WARN("netCDF variable %s is missing!", varname); \
728#define NC_INQ_DIM(dimname, ptr, min, max, check) { \
729 int dimid; size_t naux; \
730 NC(nc_inq_dimid(ncid, dimname, &dimid)); \
731 NC(nc_inq_dimlen(ncid, dimid, &naux)); \
734 if ((*ptr) < (min) || (*ptr) > (max)) \
735 ERRMSG("Dimension %s is out of range!", dimname); \
752#define NC_PUT_DOUBLE(varname, ptr, hyperslab) { \
753 NC(nc_inq_varid(ncid, varname, &varid)); \
755 NC(nc_put_vara_double(ncid, varid, start, count, ptr)); \
757 NC(nc_put_var_double(ncid, varid, ptr)); \
776#define NC_PUT_FLOAT(varname, ptr, hyperslab) { \
777 NC(nc_inq_varid(ncid, varname, &varid)); \
779 NC(nc_put_vara_float(ncid, varid, start, count, ptr)); \
781 NC(nc_put_var_float(ncid, varid, ptr)); \
799#define NC_PUT_INT(varname, ptr, hyperslab) { \
800 NC(nc_inq_varid(ncid, varname, &varid)); \
802 NC(nc_put_vara_int(ncid, varid, start, count, ptr)); \
804 NC(nc_put_var_int(ncid, varid, ptr)); \
821#define NC_PUT_ATT(varname, attname, text) { \
822 NC(nc_inq_varid(ncid, varname, &varid)); \
823 NC(nc_put_att_text(ncid, varid, attname, strnlen(text, LEN), text)); \
838#define NC_PUT_ATT_GLOBAL(attname, text) \
839 NC(nc_put_att_text(ncid, NC_GLOBAL, attname, strnlen(text, LEN), text));
870#define NEDT(t_bg, nesr, nu) \
871 (BRIGHT(PLANCK((t_bg), (nu)) + (nesr), (nu)) - (t_bg))
899#define NESR(t_bg, nedt, nu) \
900 (PLANCK((t_bg) + (nedt), (nu)) - PLANCK((t_bg), (nu)))
916#define NORM(a) sqrt(DOTP(a, a))
947#define PLANCK(T, nu) \
948 (C1 * POW3(nu) / gsl_expm1(C2 * (nu) / (T)))
961#define POW2(x) ((x)*(x))
974#define POW3(x) ((x)*(x)*(x))
990#define RAD2DEG(rad) ((rad) * (180.0 / M_PI))
1006#define REFRAC(p, T) (7.753e-05 * (p) / (T))
1022#define TBL_LOG(tbl, id, ig) \
1024 for (int ip = 0; ip < (tbl)->np[(id)][(ig)]; ip++) \
1026 "p[%2d]= %.5e hPa | T[0:%2d]= %.2f ... %.2f K | " \
1027 "u[0:%3d]= %.5e ... %.5e molec/cm^2 | " \
1028 "eps[0:%3d]= %.5e ... %.5e", \
1030 (tbl)->p[(id)][(ig)][(ip)], \
1031 (tbl)->nt[(id)][(ig)][(ip)] - 1, \
1032 (tbl)->t[(id)][(ig)][(ip)][0], \
1033 (tbl)->t[(id)][(ig)][(ip)] \
1034 [(tbl)->nt[(id)][(ig)][(ip)] - 1], \
1035 (tbl)->nu[(id)][(ig)][(ip)][0] - 1, \
1036 exp((tbl)->logu[(id)][(ig)][(ip)][0][0]), \
1037 exp((tbl)->logu[(id)][(ig)][(ip)][0] \
1038 [(tbl)->nu[(id)][(ig)][(ip)][0] - 1]), \
1039 (tbl)->nu[(id)][(ig)][(ip)][0] - 1, \
1040 exp((tbl)->logeps[(id)][(ig)][(ip)][0][0]), \
1041 exp((tbl)->logeps[(id)][(ig)][(ip)][0] \
1042 [(tbl)->nu[(id)][(ig)][(ip)][0] - 1])); \
1058#define TIMER(name, mode) \
1059 {timer(name, __FILE__, __func__, __LINE__, mode);}
1079#define TOK(line, tok, format, var) { \
1080 if(((tok)=strtok((line), " \t"))) { \
1081 if(sscanf(tok, format, &(var))!=1) continue; \
1082 } else ERRMSG("Error while reading!"); \
1123#define LOG(level, ...) { \
1126 if(level <= LOGLEV) { \
1127 printf(__VA_ARGS__); \
1160#define WARN(...) { \
1161 printf("\nWarning (%s, %s, l%d): ", __FILE__, __func__, __LINE__); \
1162 LOG(0, __VA_ARGS__); \
1193#define ERRMSG(...) { \
1194 printf("\nError (%s, %s, l%d): ", __FILE__, __func__, __LINE__); \
1195 LOG(0, __VA_ARGS__); \
1196 exit(EXIT_FAILURE); \
1228#define PRINT(format, var) \
1229 printf("Print (%s, %s, l%d): %s= "format"\n", \
1230 __FILE__, __func__, __LINE__, #var, var);
1760 const gsl_matrix * avk);
1818 const gsl_matrix * avk,
1882 const int value_iqa,
1997 const gsl_vector * dx,
1998 const gsl_vector * dy,
1999 const gsl_matrix * s_a_inv,
2000 const gsl_vector * sig_eps_inv);
2120 const atm_t * atm_src,
2150 const obs_t * obs_src,
2228 const char *emitter);
2635 double tau_path[
ND][
NG],
2636 double tau_seg[
ND]);
2681 double tau_path[
ND][
NG],
2682 double tau_seg[
ND]);
2754 const double logeps);
3018 const gsl_matrix * a,
3019 const gsl_vector * b,
3020 const int transpose,
3208 const char *dirname,
3209 const char *filename,
3260 const char *filename,
3314 const char *filename,
3358 const char *filename,
3440 const char *dirname,
3441 const char *filename,
3442 gsl_matrix * matrix);
3479 const char *dirname,
3480 const char *filename,
3521 const char *filename,
3566 const char *filename,
3602 const char *filename,
3647 const char *basename,
3764 const char *filename,
3803 const char *filename,
4030 const char *varname,
4032 const char *defvalue,
4153 gsl_vector * sig_noise,
4154 gsl_vector * sig_formod,
4155 gsl_vector * sig_eps_inv);
4311 size_t *bytes_used);
4370 const uint8_t * buf);
4404 const double remain,
4500 const char *dirname,
4501 const char *filename,
4557 const char *filename,
4615 const char *filename,
4663 const char *filename,
4720 const char *filename,
4772 const char *dirname,
4773 const char *filename,
4775 const gsl_matrix * matrix,
4778 const char *rowspace,
4779 const char *colspace,
4815 const char *dirname,
4816 const char *filename,
4859 const char *filename,
4900 const char *filename,
4940 const char *filename,
4980 const char *filename,
5031 const char *quantity,
5035 const gsl_matrix * s);
5226 const gsl_vector * x,
5259 const gsl_vector * x,
5296 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 formod_rfm(const ctl_t *ctl, const tbl_t *tbl, const atm_t *atm, obs_t *obs)
Forward-model radiance and transmittance with the Reference Forward Model (RFM).
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).
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.