ARTS 2.5.11 (git: 725533f0)
|
Functions related to sensor modelling. More...
#include "sensor.h"
#include <cmath>
#include <list>
#include <stdexcept>
#include "arts.h"
#include "arts_constants.h"
#include "arts_conversions.h"
#include "auto_md.h"
#include "gridded_fields.h"
#include "logic.h"
#include "matpack_data.h"
#include "matpack_math.h"
#include "messages.h"
#include "rte.h"
#include "sorting.h"
Go to the source code of this file.
Functions | |
void | antenna1d_matrix (Sparse &H, const Index &antenna_dim, ConstVectorView antenna_dza, const GriddedField4 &antenna_response, ConstVectorView za_grid, ConstVectorView f_grid, const Index n_pol, const Index do_norm) |
antenna1d_matrix | |
void | antenna2d_gridded_dlos (Sparse &H, const Index &antenna_dim, ConstMatrixView antenna_dlos, const GriddedField4 &antenna_response, ConstMatrixView mblock_dlos, ConstVectorView f_grid, const Index n_pol) |
antenna2d_interp_gridded_dlos | |
void | antenna2d_interp_response (Sparse &H, const Index &antenna_dim, ConstMatrixView antenna_dlos, const GriddedField4 &antenna_response, ConstMatrixView mblock_dlos, ConstVectorView solid_angles, ConstVectorView f_grid, const Index n_pol) |
antenna2d_interp_response | |
void | mixer_matrix (Sparse &H, Vector &f_mixer, const Numeric &lo, const GriddedField1 &filter, ConstVectorView f_grid, const Index &n_pol, const Index &n_sp, const Index &do_norm) |
mixer_matrix | |
void | met_mm_polarisation_hmatrix (Sparse &H, const ArrayOfString &mm_pol, const Numeric dza, const Index stokes_dim, const String &iy_unit) |
Calculate polarisation H-matrix. | |
void | sensor_aux_vectors (Vector &sensor_response_f, ArrayOfIndex &sensor_response_pol, Matrix &sensor_response_dlos, ConstVectorView sensor_response_f_grid, const ArrayOfIndex &sensor_response_pol_grid, ConstMatrixView sensor_response_dlos_grid) |
sensor_aux_vectors | |
void | spectrometer_matrix (Sparse &H, ConstVectorView ch_f, const ArrayOfGriddedField1 &ch_response, ConstVectorView sensor_f, const Index &n_pol, const Index &n_sp, const Index &do_norm) |
spectrometer_matrix | |
void | stokes2pol (VectorView w, const Index &stokes_dim, const Index &ipol_1based, const Numeric nv) |
stokes2pol | |
bool | test_and_merge_two_channels (Vector &fmin, Vector &fmax, Index i, Index j) |
Test if two instrument channels overlap, and if so, merge them. | |
void | find_effective_channel_boundaries (Vector &fmin, Vector &fmax, const Vector &f_backend, const ArrayOfGriddedField1 &backend_channel_response, const Numeric &delta, const Verbosity &verbosity) |
Calculate channel boundaries from instrument response functions. | |
void | integration_func_by_vecmult (VectorView h, ConstVectorView f, ConstVectorView x_f_in, ConstVectorView x_g_in) |
integration_func_by_vecmult | |
void | integration_bin_by_vecmult (VectorView h, ConstVectorView x_g_in, const Numeric &limit1, const Numeric &limit2) |
integration_bin_by_vecmult | |
void | summation_by_vecmult (VectorView h, ConstVectorView f, ConstVectorView x_f, ConstVectorView x_g, const Numeric x1, const Numeric x2) |
summation_by_vecmult | |
Variables | |
constexpr Numeric | PI =Constant::pi |
constexpr Numeric | NAT_LOG_2 =Constant::ln_2 |
constexpr Numeric | DEG2RAD =Conversion::deg2rad(1) |
Functions related to sensor modelling.
Functions to model sensor behaviour and integration calculated as vector multiplication.
Definition in file sensor.cc.
void antenna1d_matrix | ( | Sparse & | H, |
const Index & | antenna_dim, | ||
ConstVectorView | antenna_dza, | ||
const GriddedField4 & | antenna_response, | ||
ConstVectorView | za_grid, | ||
ConstVectorView | f_grid, | ||
const Index | n_pol, | ||
const Index | do_norm | ||
) |
antenna1d_matrix
Core function for setting up the response matrix for 1D antenna cases.
Main task is to extract correct antenna pattern, including frequency interpolation. Actual weights are calculated in integration_func_by_vectmult.
H | The antenna transfer matrix |
antenna_dim | As the WSV with the same name |
antenna_dza | The zenith angle column of antenna_dlos. |
antenna_response | As the WSV with the same name |
za_grid | Zenith angle grid for pencil beam calculations |
f_grid | Frequency grid for monochromatic calculations |
n_pol | Number of polarisation states |
do_norm | Flag whether response should be normalised |
Definition at line 47 of file sensor.cc.
References ARTS_ASSERT, GriddedField4::data, DEBUG_ONLY, GriddedField::get_numeric_grid(), GriddedField::get_string_grid(), gridpos(), integration_func_by_vecmult(), interp(), interpweights(), and Array< base >::nelem().
void antenna2d_gridded_dlos | ( | Sparse & | H, |
const Index & | antenna_dim, | ||
ConstMatrixView | antenna_dlos, | ||
const GriddedField4 & | antenna_response, | ||
ConstMatrixView | mblock_dlos, | ||
ConstVectorView | f_grid, | ||
const Index | n_pol | ||
) |
antenna2d_interp_gridded_dlos
The radiances are treated as a bi-linear function, but the antenna response is treated as step-wise constant function (in contrast to 1D). See also built-in doc.
H | The antenna transfer matrix |
antenna_dim | As the WSV with the same name |
antenna_dlos | As the WSV with the same name |
antenna_response | As the WSV with the same name |
mblock_dlos | As the WSV with the same name |
f_grid | Frequency grid for monochromatic calculations |
n_pol | Number of polarisation states |
Definition at line 188 of file sensor.cc.
References a, ARTS_ASSERT, ARTS_USER_ERROR_IF, b, GriddedField4::data, DEG2RAD, GriddedField::get_numeric_grid(), GriddedField::get_string_grid(), gridpos(), interp(), interpweights(), and Array< base >::nelem().
void antenna2d_interp_response | ( | Sparse & | H, |
const Index & | antenna_dim, | ||
ConstMatrixView | antenna_dlos, | ||
const GriddedField4 & | antenna_response, | ||
ConstMatrixView | mblock_dlos, | ||
ConstVectorView | solid_angles, | ||
ConstVectorView | f_grid, | ||
const Index | n_pol | ||
) |
antenna2d_interp_response
The antenna pattern is interpolated to the dlos directions and solid beam angles are applied. See also built-in doc.
H | The antenna transfer matrix |
antenna_dim | As the WSV with the same name |
antenna_dlos | As the WSV with the same name |
antenna_response | As the WSV with the same name |
mblock_dlos | As the WSV with the same name |
solid_angles | The solid angle of each dlos |
f_grid | Frequency grid for monochromatic calculations |
n_pol | Number of polarisation states |
Definition at line 430 of file sensor.cc.
References ARTS_ASSERT, GriddedField4::data, DEG2RAD, GriddedField::get_numeric_grid(), GriddedField::get_string_grid(), gridpos(), interp(), interpweights(), and Array< base >::nelem().
void find_effective_channel_boundaries | ( | Vector & | fmin, |
Vector & | fmax, | ||
const Vector & | f_backend, | ||
const ArrayOfGriddedField1 & | backend_channel_response, | ||
const Numeric & | delta, | ||
const Verbosity & | verbosity | ||
) |
Calculate channel boundaries from instrument response functions.
This function finds out the unique channel boundaries from f_backend and backend_channel_response. This is not a trivial task, since channels may overlap, or may be sorted in a strange way. The function tries to take care of all that. If channels overlap, they are combined to one continuous frequency region. therefore the number of elements in the output vectors fmin and fmax can be lower than the number of elements in f_backend and backend_channel_response.
The function also does consistency checking on the two input variables.
The output vectors fmin and fmax will be monotonically increasing.
[out] | fmin | Vector of lower boundaries of instrument channels. |
[out] | fmax | Vector of upper boundaries of instrument channels. |
[in] | f_backend | Nominal backend frequencies. |
[in] | backend_channel_response | Channel response, relative to nominal frequencies. |
[in] | delta | Extra margin on both sides of each band. Has a default value of 0. |
delta;
Definition at line 1086 of file sensor.cc.
References ARTS_USER_ERROR_IF, CREATE_OUT2, get_sorted_indexes(), last(), Array< base >::nelem(), and test_and_merge_two_channels().
void integration_bin_by_vecmult | ( | VectorView | h, |
ConstVectorView | x_g_in, | ||
const Numeric & | limit1, | ||
const Numeric & | limit2 | ||
) |
integration_bin_by_vecmult
Calculates the (row) vector that multiplied with an unknown (column) vector, g, approximates the integral between limit1 and limit2, where limit1 >= limit2.
This can be seen as a special case of what is handled by integration_func_by_vecmult*, where the function f is a boxcar function. Or expressed differently, the function g is "binned" between limit1 and limit2.
The limits must be inside the range the x_g.
h | The multiplication (row) vector. |
x_g_in | The grid points of function g(x). Can be increasing or decreasing. Must cover a wider range than the boxcar function (in both ends). |
limit1 | The lower integration limit. |
limit2 | The upper integration limit. |
Definition at line 1419 of file sensor.cc.
References ARTS_ASSERT, max(), and min().
Referenced by yRadar().
void integration_func_by_vecmult | ( | VectorView | h, |
ConstVectorView | f, | ||
ConstVectorView | x_f_in, | ||
ConstVectorView | x_g_in | ||
) |
integration_func_by_vecmult
Calculates the (row) vector that multiplied with an unknown (column) vector approximates the integral of the product between the functions represented by the two vectors: h*g = integral( f(x)*g(x) dx )
Basic principle follows Eriksson et al., Efficient forward modelling by matrix representation of sensor responses, Int. J. Remote Sensing, 27, 1793-1808, 2006. However, while in Eriksson et al. the product between f*g is assumed to vary linearly between the grid point, the expressions applied here are more advanced and are completly exact as long as f and g are piece-wise linear functions. The product f*g is then a quadratic funtion between the grid points.
h | The multiplication (row) vector. |
f | The values of function f(x). |
x_f_in | The grid points of function f(x). Must be increasing. |
x_g_in | The grid points of function g(x). Can be increasing or decreasing. Must cover a wider range than x_f (in both ends). |
Definition at line 1284 of file sensor.cc.
References ARTS_ASSERT, ARTS_USER_ERROR_IF, and min().
Referenced by antenna1d_matrix(), and spectrometer_matrix().
void met_mm_polarisation_hmatrix | ( | Sparse & | H, |
const ArrayOfString & | pol, | ||
const Numeric | dza, | ||
const Index | stokes_dim, | ||
const String & | iy_unit | ||
) |
Calculate polarisation H-matrix.
Takes into account instrument channel polarisation and zenith angle.
[out] | H | Polarisation matrix |
[in] | mm_pol | Instrument channel polarisations |
[in] | dza | Zenith angle, from reference direction |
[in] | stokes_dim | Workspace variable |
[in] | iy_unit | Workspace variable |
Definition at line 714 of file sensor.cc.
References ARTS_ASSERT, ARTS_USER_ERROR, muellersparse_rotation(), mult(), Array< base >::nelem(), stokes2pol(), and w.
Referenced by sensor_responseMetMM().
void mixer_matrix | ( | Sparse & | H, |
Vector & | f_mixer, | ||
const Numeric & | lo, | ||
const GriddedField1 & | filter, | ||
ConstVectorView | f_grid, | ||
const Index & | n_pol, | ||
const Index & | n_sp, | ||
const Index & | do_norm | ||
) |
mixer_matrix
Sets up the sparse matrix that models the response from sideband filtering and the mixer.
The size of the transfer matrix is changed in the function as follows: nrows = f_mixer.nelem() ncols = f_grid.nelem()
The returned frequencies are given in IF, so both primary and mirror band is converted down.
H | The mixer/sideband filter transfer matrix |
f_mixer | The frequency grid of the mixer |
lo | The local oscillator frequency |
filter | The sideband filter data. See sideband_response for format and constraints. |
f_grid | The original frequency grid of the spectrum |
n_pol | The number of polarisations to consider |
n_sp | The number of spectra (viewing directions) |
do_norm | Flag whether rows should be normalised |
Definition at line 613 of file sensor.cc.
References a, ARTS_ASSERT, GriddedField1::data, DEBUG_ONLY, GriddedField::get_numeric_grid(), last(), and summation_by_vecmult().
Referenced by sensor_responseMixer().
void sensor_aux_vectors | ( | Vector & | sensor_response_f, |
ArrayOfIndex & | sensor_response_pol, | ||
Matrix & | sensor_response_dlos, | ||
ConstVectorView | sensor_response_f_grid, | ||
const ArrayOfIndex & | sensor_response_pol_grid, | ||
ConstMatrixView | sensor_response_dlos_grid | ||
) |
sensor_aux_vectors
Sets up the the auxiliary vectors for sensor_response.
The function assumes that all grids are common, and the full vectors are just the grids repeated.
sensor_response_f | As the WSV with same name |
sensor_response_pol | As the WSV with same name |
sensor_response_za | As the WSV with same name |
sensor_response_aa | As the WSV with same name |
sensor_response_f_grid | As the WSV with same name |
sensor_response_pol_grid | As the WSV with same name |
sensor_response_dlos_grid | As the WSV with same name |
Definition at line 875 of file sensor.cc.
References Array< base >::nelem().
Referenced by sensor_responseFillFgrid(), sensor_responseGenericAMSU(), sensor_responseInit(), sensor_responseMetMM(), sensor_responseMixer(), sensor_responseMixerBackendPrecalcWeights(), sensor_responseMultiMixerBackend(), sensor_responsePolarisation(), and sensor_responseWMRF().
void spectrometer_matrix | ( | Sparse & | H, |
ConstVectorView | ch_f, | ||
const ArrayOfGriddedField1 & | ch_response, | ||
ConstVectorView | sensor_f, | ||
const Index & | n_pol, | ||
const Index & | n_sp, | ||
const Index & | do_norm | ||
) |
spectrometer_matrix
Constructs the sparse matrix that multiplied with the spectral values gives the spectra from the spectrometer.
The input to the function corresponds mainly to WSVs. See f_backend and backend_channel_response for how the backend response is specified.
H | The response matrix. |
ch_f | Corresponds directly to WSV f_backend. |
ch_response | Corresponds directly to WSV backend_channel_response. |
sensor_f | Corresponds directly to WSV sensor_response_f_grid. |
n_pol | The number of polarisations. |
n_sp | The number of spectra (viewing directions). |
do_norm | Corresponds directly to WSV sensor_norm. |
Definition at line 912 of file sensor.cc.
References ARTS_ASSERT, integration_func_by_vecmult(), and Array< base >::nelem().
void stokes2pol | ( | VectorView | w, |
const Index & | stokes_dim, | ||
const Index & | ipol_1based, | ||
const Numeric | nv = 1 |
||
) |
stokes2pol
Sets up a vector to convert the Stokes vector to different polarsiations.
The measured value is the sum of the element product of the conversion vector and the Stokes vector. Schematically:
y[iout] = sum( w.*iy(iin,joker)
Vectors for I, Q, U and V are always normalised to have unit length (one value is 1, the remaining ones zero). The first element of remaining vectors is set to nv (and other values normalised accordingly), to allow that calibartion and other normalisation effects can be incorporated.
s2p | Array of conversion vectors. |
nv | Norm value for polarisations beside I, Q, U and V. |
Definition at line 978 of file sensor.cc.
References ARTS_ASSERT, ARTS_USER_ERROR_IF, and w.
Referenced by iy_transmitterMultiplePol(), iy_transmitterSinglePol(), met_mm_polarisation_hmatrix(), sensor_responsePolarisation(), and yRadar().
void summation_by_vecmult | ( | VectorView | h, |
ConstVectorView | f, | ||
ConstVectorView | x_f, | ||
ConstVectorView | x_g, | ||
const Numeric | x1, | ||
const Numeric | x2 | ||
) |
summation_by_vecmult
Calculates the (row) vector that multiplied with an unknown (column) vector approximates the sum of the product between the functions at two points.
E.g. h*g = f(x1)*g(x1) + f(x2)*g(x2)
The typical application is to set up the combined response matrix for mixer and sideband filter.
See Eriksson et al., Efficient forward modelling by matrix representation of sensor responses, Int. J. Remote Sensing, 27, 1793-1808, 2006, for details.
No normalisation of the response is made.
h | The summation (row) vector. |
f | Sideband response. |
x_f | The grid points of function f(x). |
x_g | The grid for spectral values (normally equal to f_grid) |
x1 | Point 1 |
x2 | Point 2 |
Definition at line 1517 of file sensor.cc.
References ARTS_ASSERT, gridpos(), interp(), interpweights(), and last().
Referenced by mixer_matrix().
bool test_and_merge_two_channels | ( | Vector & | fmin, |
Vector & | fmax, | ||
Index | i, | ||
Index | j | ||
) |
Test if two instrument channels overlap, and if so, merge them.
The channels boundaries are specified in two separate vectors, fmin and fmax. These vectors are both input and output. If merging has happened, they will each be one element shorter.
The positions of the channels to compare is given by the input parameters i and j. It is assumed that the minimum frequency of i is lower than or equal to that of j.
Furthermore, it is assumed that i itself is lower than j.
The range of the first channel (i) will have been extended to accomodate the second channel (j). The second channel will have been removed.
The function also handles the updating of index j: If the two channels do not overlap, j is increased by one.
Function returns true if merging has happened.
fmin | Lower channel boundaries. |
fmax | Upper channel boundaries. |
i | Index of first channel. |
j | Index of second channel. |
Definition at line 1044 of file sensor.cc.
References ARTS_ASSERT.
Referenced by find_effective_channel_boundaries().
|
inlineconstexpr |
Definition at line 35 of file sensor.cc.
Referenced by antenna2d_gridded_dlos(), and antenna2d_interp_response().
|
inlineconstexpr |
|
inlineconstexpr |