Newer
Older
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
MODULE obs_inter_z1d
!!======================================================================
!! *** MODULE obs_inter_z1d ***
!! Observation diagnostics: Perform the vertical interpolation
!! from model grid to observation location
!!======================================================================
!!----------------------------------------------------------------------
!! obs_int_z1d : Vertical interpolation to the observation point
!! obs_int_z1d_spl : Compute the vertical 2nd derivative of the
!! interpolating function for a cubic spline (n1dint=1)
!!----------------------------------------------------------------------
!! * Modules used
USE par_kind, ONLY : & ! Precision variables
& wp
IMPLICIT NONE
!! * Routine accessibility
PRIVATE
PUBLIC obs_int_z1d, & ! Vertical interpolation to the observation pt.
& obs_int_z1d_spl ! Compute the vertical 2nd derivative of the
! interpolating function used with a cubic spline
!!----------------------------------------------------------------------
!! NEMO/OCE 4.0 , NEMO Consortium (2018)
!! $Id: obs_inter_z1d.F90 10068 2018-08-28 14:09:04Z nicolasmartin $
!! Software governed by the CeCILL license (see ./LICENSE)
!!----------------------------------------------------------------------
CONTAINS
#include "obsinter_z1d.h90"
END MODULE obs_inter_z1d