spectral_radianceClearskyEmission
- Workspace.spectral_radianceClearskyEmission(self, spectral_radiance: pyarts.arts.StokvecVector | None = None, spectral_radiance_jacobian: pyarts.arts.StokvecMatrix | None = None, atmospheric_field: pyarts.arts.AtmField | None = None, frequency_grid: pyarts.arts.AscendingGrid | None = None, jacobian_targets: pyarts.arts.JacobianTargets | None = None, propagation_matrix_agenda: pyarts.arts.Agenda | None = None, ray_path: pyarts.arts.ArrayOfPropagationPathPoint | None = None, spectral_radiance_space_agenda: pyarts.arts.Agenda | None = None, spectral_radiance_surface_agenda: pyarts.arts.Agenda | None = None, surface_field: pyarts.arts.SurfaceField | None = None, hse_derivative: pyarts.arts.Index | None = None) None
Computes clearsky emission of spectral radiances
Wrapper calling Methods (in order):
Equivalent (mostly) Python code:
1ws = pyarts.Workspace() 2 3# ... 4 5 ws.ray_path_pointBackground() 6 ws.spectral_radiance_backgroundAgendasAtEndOfPath() 7 ws.ray_path_atmospheric_pointFromPath() 8 ws.ray_path_frequency_gridFromPath() 9 ws.ray_path_propagation_matrixFromPath() 10 ws.ray_path_transmission_matrixFromPath() 11 ws.ray_path_transmission_matrix_cumulativeFromPath() 12 ws.ray_path_spectral_radiance_sourceFromPropmat() 13 ws.transmission_matrix_backgroundFromPathPropagationBack() 14 ws.spectral_radianceStepByStepEmission() 15 ws.spectral_radiance_jacobianFromBackground() 16 ws.spectral_radiance_jacobianAddPathPropagation()
Author(s): Richard Larsson
- Parameters:
spectral_radiance (StokvecVector, optional) – A spectral radiance vector. See
spectral_radiance
, defaults toself.spectral_radiance
[OUT]spectral_radiance_jacobian (StokvecMatrix, optional) – Jacobian of
spectral_radiance
with respect tojacobian_targets
. Seespectral_radiance_jacobian
, defaults toself.spectral_radiance_jacobian
[OUT]atmospheric_field (AtmField, optional) – An atmospheric field in ARTS. See
atmospheric_field
, defaults toself.atmospheric_field
[IN]frequency_grid (AscendingGrid, optional) – A single path point’s frequency grid. See
frequency_grid
, defaults toself.frequency_grid
[IN]jacobian_targets (JacobianTargets, optional) – A list of targets for the Jacobian Matrix calculations. See
jacobian_targets
, defaults toself.jacobian_targets
[IN]propagation_matrix_agenda (Agenda, optional) – Compute the propagation matrix, the non-LTE source vector, and their derivatives. See
propagation_matrix_agenda
, defaults toself.propagation_matrix_agenda
[IN]ray_path (ArrayOfPropagationPathPoint, optional) – A list path points making up a propagation path. See
ray_path
, defaults toself.ray_path
[IN]spectral_radiance_space_agenda (Agenda, optional) – Spectral radiance as seen of space. See
spectral_radiance_space_agenda
, defaults toself.spectral_radiance_space_agenda
[IN]spectral_radiance_surface_agenda (Agenda, optional) – Spectral radiance as seen of the surface. See
spectral_radiance_surface_agenda
, defaults toself.spectral_radiance_surface_agenda
[IN]surface_field (SurfaceField, optional) – The surface field describes the surface properties. See
surface_field
, defaults toself.surface_field
[IN]hse_derivative (Index, optional) – Flag to compute the hypsometric distance derivatives. Defaults to
0
[IN]