Changes between Version 1 and Version 2 of PDAFomi_get_interp_coeff_lin1D


Ignore:
Timestamp:
Dec 18, 2021, 1:39:13 PM (2 years ago)
Author:
lnerger
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • PDAFomi_get_interp_coeff_lin1D

    v1 v2  
    11= PDAFomi_get_interp_coeff_lin1D =
    22
    3 This page documents the routine `PDAFomi_get_interp_coeff_lne1D` of PDAF-OMI.
     3This page documents the routine `PDAFomi_get_interp_coeff_lin1D` of PDAF-OMI.
    44
    55The routine is called in `init_dim_obs_OBSTYPE of an obseration module to initialize interpolation coefficients in one dimension. It is used if the observation operator performs linear interpolation in 1D.
     
    99The interface is:
    1010{{{
    11   SUBROUTINE PDAFomi_get_interp_coeff_lin1D(gpc, oc, icoeff)
     11  SUBROUTINE PDAFomi_get_interp_coeff_lin1D(gcoords, ocoord, icoeff)
    1212
    13     REAL, INTENT(in)    :: gpc(:)      ! Coordinates of grid points (dim=2)
    14     REAL, INTENT(in)    :: oc          ! Coordinate of observation
     13    REAL, INTENT(in)    :: gcoords(:)  ! Coordinates of grid points (dim=2)
     14    REAL, INTENT(in)    :: ocoord      ! Coordinate of observation
    1515    REAL, INTENT(inout) :: icoeff(:)   ! Interpolation coefficients (dim=2)
    1616}}}