source: CONFIG_DEVT/IPSLCM6.5_work_ENSEMBLES/modeles/NEMO/src/OCE/OBS/obs_inter_z1d.F90 @ 5501

Last change on this file since 5501 was 5501, checked in by aclsce, 4 years ago

First import of IPSLCM6.5_work_ENSEMBLES working configuration

File size: 1.5 KB
Line 
1MODULE 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   !!----------------------------------------------------------------------
9   !!   obs_int_z1d     : Vertical interpolation to the observation point
10   !!   obs_int_z1d_spl : Compute the vertical 2nd derivative of the
11   !!                     interpolating function for a cubic spline (n1dint=1)
12   !!----------------------------------------------------------------------
13   !! * Modules used
14   USE par_kind, ONLY : &  ! Precision variables
15      & wp
16
17   IMPLICIT NONE
18
19   !! * Routine accessibility
20   PRIVATE
21
22   PUBLIC obs_int_z1d,    &  ! Vertical interpolation to the observation pt.
23      &   obs_int_z1d_spl    ! Compute the vertical 2nd derivative of the
24                             ! interpolating function used with a cubic spline
25
26   !!----------------------------------------------------------------------
27   !! NEMO/OCE 4.0 , NEMO Consortium (2018)
28   !! $Id: obs_inter_z1d.F90 10068 2018-08-28 14:09:04Z nicolasmartin $
29   !! Software governed by the CeCILL license (see ./LICENSE)
30   !!----------------------------------------------------------------------
31
32CONTAINS
33
34#include "obsinter_z1d.h90"
35
36END MODULE obs_inter_z1d
37
Note: See TracBrowser for help on using the repository browser.