obs_inter_z1d.F90 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. MODULE obs_inter_z1d
  2. !!======================================================================
  3. !! *** MODULE obs_inter_z1d ***
  4. !! Observation diagnostics: Perform the vertical interpolation
  5. !! from model grid to observation location
  6. !!======================================================================
  7. !!----------------------------------------------------------------------
  8. !! obs_int_z1d : Vertical interpolation to the observation point
  9. !! obs_int_z1d_spl : Compute the vertical 2nd derivative of the
  10. !! interpolating function for a cubic spline (n1dint=1)
  11. !!----------------------------------------------------------------------
  12. !! * Modules used
  13. USE par_kind, ONLY : & ! Precision variables
  14. & wp
  15. IMPLICIT NONE
  16. !! * Routine accessibility
  17. PRIVATE
  18. PUBLIC obs_int_z1d, & ! Vertical interpolation to the observation pt.
  19. & obs_int_z1d_spl ! Compute the vertical 2nd derivative of the
  20. ! interpolating function used with a cubic spline
  21. !!----------------------------------------------------------------------
  22. !! NEMO/OPA 3.3 , NEMO Consortium (2010)
  23. !! $Id: obs_inter_z1d.F90 2287 2010-10-18 07:53:52Z smasson $
  24. !! Software governed by the CeCILL licence (NEMOGCM/NEMO_CeCILL.txt)
  25. !!----------------------------------------------------------------------
  26. CONTAINS
  27. #include "obsinter_z1d.h90"
  28. END MODULE obs_inter_z1d