Changes between Version 1 and Version 2 of PDAFomi_get_interp_coeff_lin1D
- Timestamp:
- Dec 18, 2021, 1:39:13 PM (3 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
PDAFomi_get_interp_coeff_lin1D
v1 v2 1 1 = PDAFomi_get_interp_coeff_lin1D = 2 2 3 This page documents the routine `PDAFomi_get_interp_coeff_l ne1D` of PDAF-OMI.3 This page documents the routine `PDAFomi_get_interp_coeff_lin1D` of PDAF-OMI. 4 4 5 5 The 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. … … 9 9 The interface is: 10 10 {{{ 11 SUBROUTINE PDAFomi_get_interp_coeff_lin1D(g pc, oc, icoeff)11 SUBROUTINE PDAFomi_get_interp_coeff_lin1D(gcoords, ocoord, icoeff) 12 12 13 REAL, INTENT(in) :: g pc(:)! Coordinates of grid points (dim=2)14 REAL, INTENT(in) :: oc 13 REAL, INTENT(in) :: gcoords(:) ! Coordinates of grid points (dim=2) 14 REAL, INTENT(in) :: ocoord ! Coordinate of observation 15 15 REAL, INTENT(inout) :: icoeff(:) ! Interpolation coefficients (dim=2) 16 16 }}}