WindFieldsCalcExpand1D

Workspace.WindFieldsCalcExpand1D(self: pyarts.arts._Workspace, wind_u_field: pyarts.arts.WorkspaceVariable | pyarts.arts.Tensor3 | None = self.wind_u_field, wind_v_field: pyarts.arts.WorkspaceVariable | pyarts.arts.Tensor3 | None = self.wind_v_field, wind_w_field: pyarts.arts.WorkspaceVariable | pyarts.arts.Tensor3 | None = self.wind_w_field, p_grid: pyarts.arts.WorkspaceVariable | pyarts.arts.Vector | None = self.p_grid, lat_grid: pyarts.arts.WorkspaceVariable | pyarts.arts.Vector | None = self.lat_grid, lon_grid: pyarts.arts.WorkspaceVariable | pyarts.arts.Vector | None = self.lon_grid, wind_u_field_raw: pyarts.arts.WorkspaceVariable | pyarts.arts.GriddedField3 | None = self.wind_u_field_raw, wind_v_field_raw: pyarts.arts.WorkspaceVariable | pyarts.arts.GriddedField3 | None = self.wind_v_field_raw, wind_w_field_raw: pyarts.arts.WorkspaceVariable | pyarts.arts.GriddedField3 | None = self.wind_w_field_raw, atmosphere_dim: pyarts.arts.WorkspaceVariable | pyarts.arts.Index | None = self.atmosphere_dim, interp_order: pyarts.arts.WorkspaceVariable | pyarts.arts.Index | None = 1, verbosity: pyarts.arts.WorkspaceVariable | pyarts.arts.Verbosity | None = self.verbosity) None

Interpolation of 1D raw atmospheric fields to create 2D or 3D homogeneous wind fields. Derived from AtmFieldsCalcExpand1D()

The method works as WindFieldsCalc(), but accepts only raw 1D wind fields. The raw data is interpolated to p_grid and the obtained values are applied for all latitudes, and also longitudes for 3D, to create a homogeneous atmosphere.

Author(s): Richard Larsson

Parameters:
  • wind_u_field (Tensor3, optional) – Zonal component of the wind field. See wind_u_field, defaults to self.wind_u_field [OUT]

  • wind_v_field (Tensor3, optional) – Meridional component of the magnetic field. See wind_v_field, defaults to self.wind_v_field [OUT]

  • wind_w_field (Tensor3, optional) – Vertical wind component field. See wind_w_field, defaults to self.wind_w_field [OUT]

  • p_grid (Vector, optional) – The pressure grid. See p_grid, defaults to self.p_grid [IN]

  • lat_grid (Vector, optional) – The latitude grid. See lat_grid, defaults to self.lat_grid [IN]

  • lon_grid (Vector, optional) – The longitude grid. See lon_grid, defaults to self.lon_grid [IN]

  • wind_u_field_raw (GriddedField3, optional) – Raw zonal component of the wind field. See wind_u_field_raw, defaults to self.wind_u_field_raw [IN]

  • wind_v_field_raw (GriddedField3, optional) – Raw meridional component of the magnetic field. See wind_v_field_raw, defaults to self.wind_v_field_raw [IN]

  • wind_w_field_raw (GriddedField3, optional) – Raw vertical wind component field. See wind_w_field_raw, defaults to self.wind_w_field_raw [IN]

  • atmosphere_dim (Index, optional) – The atmospheric dimensionality (1-3). See atmosphere_dim, defaults to self.atmosphere_dim [IN]

  • interp_order (Index, optional) – Interpolation order (1=linear interpolation). Defaults to 1 [IN]

  • verbosity (Verbosity) – ARTS verbosity. See verbosity, defaults to self.verbosity [IN]