spectral_radClearskyEmission
- Workspace.spectral_radClearskyEmission(self, spectral_rad: pyarts3.arts.StokvecVector | None = None, spectral_rad_jac: pyarts3.arts.StokvecMatrix | None = None, atm_field: pyarts3.arts.AtmField | None = None, freq_grid: pyarts3.arts.AscendingGrid | None = None, jac_targets: pyarts3.arts.JacobianTargets | None = None, ray_path: pyarts3.arts.ArrayOfPropagationPathPoint | None = None, spectral_propmat_agenda: pyarts3.arts.Agenda | None = None, spectral_rad_space_agenda: pyarts3.arts.Agenda | None = None, spectral_rad_surface_agenda: pyarts3.arts.Agenda | None = None, subsurf_field: pyarts3.arts.SubsurfaceField | None = None, surf_field: pyarts3.arts.SurfaceField | None = None, hse_derivative: pyarts3.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_pointBackground() 6 ws.spectral_rad_bkgAgendasAtEndOfPath() 7 ws.atm_pathFromPath() 8 ws.freq_grid_pathFromPath() 9 ws.spectral_propmat_pathFromPath() 10 ws.spectral_tramat_pathFromPath() 11 ws.spectral_tramat_cumulative_pathFromPath() 12 ws.spectral_rad_srcvec_pathFromPropmat() 13 ws.spectral_tramat_bkgFromPathPropagationBack() 14 ws.spectral_radStepByStepEmission() 15 ws.spectral_rad_jacFromBackground() 16 ws.spectral_rad_jacAddPathPropagation()
Author: Richard Larsson
- Parameters:
spectral_rad (StokvecVector, optional) – A spectral radiance vector. See
spectral_rad, defaults toself.spectral_rad[OUT]spectral_rad_jac (StokvecMatrix, optional) – Jacobian of
spectral_radwith respect tojac_targets. Seespectral_rad_jac, defaults toself.spectral_rad_jac[OUT]atm_field (AtmField, optional) – An atmospheric field in ARTS. See
atm_field, defaults toself.atm_field[IN]freq_grid (AscendingGrid, optional) – A frequency grid. Unit: Hz. See
freq_grid, defaults toself.freq_grid[IN]jac_targets (JacobianTargets, optional) – A list of targets for the Jacobian Matrix calculations. See
jac_targets, defaults toself.jac_targets[IN]ray_path (ArrayOfPropagationPathPoint, optional) – A list path points making up a propagation path. See
ray_path, defaults toself.ray_path[IN]spectral_propmat_agenda (Agenda, optional) – Computes the propagation matrix, the non-LTE source vector, and their derivatives. See
spectral_propmat_agenda, defaults toself.spectral_propmat_agenda[IN]spectral_rad_space_agenda (Agenda, optional) – Gets spectral radiance as seen of space. See
spectral_rad_space_agenda, defaults toself.spectral_rad_space_agenda[IN]spectral_rad_surface_agenda (Agenda, optional) – Computes spectral radiance as seen of the surface. See
spectral_rad_surface_agenda, defaults toself.spectral_rad_surface_agenda[IN]subsurf_field (SubsurfaceField, optional) – The sub-surface field. See
subsurf_field, defaults toself.subsurf_field[IN]surf_field (SurfaceField, optional) – The surface field. See
surf_field, defaults toself.surf_field[IN]hse_derivative (Index, optional) – Flag to compute the hypsometric distance derivatives. Defaults to
0[IN]