spectral_flux_profilePseudo2D
- Workspace.spectral_flux_profilePseudo2D(self, spectral_flux_profile: pyarts.arts.Matrix | None = None, altitude_grid: pyarts.arts.AscendingGrid | None = None, atmospheric_profile: pyarts.arts.ArrayOfAtmPoint | None = None, frequency_grid: pyarts.arts.AscendingGrid | None = None, latitude: pyarts.arts.Numeric | None = None, longitude: pyarts.arts.Numeric | None = None, propagation_matrix_agenda: pyarts.arts.Agenda | None = None, surface_field: pyarts.arts.SurfaceField | None = None, pol: pyarts.arts.Stokvec | None = None, dza: pyarts.arts.Numeric | None = None, consider_limb: pyarts.arts.Index | None = None, azimuth: pyarts.arts.Numeric | None = None) None
Computes the spectral flux profile using pseudo-2D geometry
Wrapper calling Methods (in order):
Equivalent (mostly) Python code:
1ws = pyarts.Workspace() 2 3# ... 4 5 ws.zenith_gridProfilePseudo2D() 6 ws.spectral_radiance_fieldProfilePseudo2D() 7 ws.spectral_flux_profileFromSpectralRadianceField()
Author(s): Richard Larsson
- Parameters:
spectral_flux_profile (Matrix, optional) – An altitude profile of spectral flux. See
spectral_flux_profile
, defaults toself.spectral_flux_profile
[OUT]altitude_grid (AscendingGrid, optional) – An ascending list of
altitude
. Often related to a field or a profile. Seealtitude_grid
, defaults toself.altitude_grid
[IN]atmospheric_profile (ArrayOfAtmPoint, optional) – An atmospheric point in ARTS. See
atmospheric_profile
, defaults toself.atmospheric_profile
[IN]frequency_grid (AscendingGrid, optional) – A single frequency grid. See
frequency_grid
, defaults toself.frequency_grid
[IN]latitude (Numeric, optional) – A single latitude. See
latitude
, defaults toself.latitude
[IN]longitude (Numeric, optional) – A single longitude. See
longitude
, defaults toself.longitude
[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]surface_field (SurfaceField, optional) – The surface field describes the surface properties. See
surface_field
, defaults toself.surface_field
[IN]pol (Stokvec, optional) – Polarization vector for the spectral flux profile. Defaults to
1 0 0 0
[IN]dza (Numeric, optional) – The zenith grid max step size. Defaults to
1
[IN]consider_limb (Index, optional) – Whether or not special care is given to the limb. Defaults to
1
[IN]azimuth (Numeric, optional) – The azimuth. Defaults to
0
[IN]