New URL for NEMO forge!   http://forge.nemo-ocean.eu

Since March 2022 along with NEMO 4.2 release, the code development moved to a self-hosted GitLab.
This present forge is now archived and remained online for history.
obs_conv.F90 in branches/2017/dev_merge_2017/NEMOGCM/NEMO/OCE_SRC/OBS – NEMO

source: branches/2017/dev_merge_2017/NEMOGCM/NEMO/OCE_SRC/OBS/obs_conv.F90 @ 9570

Last change on this file since 9570 was 9570, checked in by nicolasmartin, 6 years ago

Global renaming for core routines (./NEMO)

  • Folders
    • LIM_SRC_3 -> ICE_SRC
    • OPA_SRC -> OCE_SRC
  • CPP key: key_lim3 -> key_si3
  • Modules, (sub)routines and variables names
    • MPI: mpi_comm_opa -> mpi_comm_oce, MPI_COMM_OPA -> MPI_COMM_OCE, mpi_init_opa -> mpi_init_oce
    • AGRIF: agrif_opa_* -> agrif_oce_*, agrif_lim3_* -> agrif_si3_* and few more
    • TOP-PISCES: p.zlim -> p.zice, namp.zlim -> namp.zice
  • Comments
    • NEMO/OPA -> NEMO/OCE
    • ESIM|LIM3 -> SI3
  • Property svn:keywords set to Id
File size: 1.7 KB
Line 
1MODULE obs_conv
2   !!=====================================================================
3   !!                       ***  MODULE  obs_conv  ***
4   !! Observation diagnostics: Various conversion functions
5   !!=====================================================================
6   !!
7   !!   potemp   : Compute potential temperature from insitu temperature,
8   !!              salinity and pressure
9   !!   fspott   : Compute potential temperature from insitu temperature,
10   !!              salinity and pressure
11   !!   atg      : Compute adiabatic temperature gradient deg c per decibar
12   !!   theta    : Compute potential temperature from insitu temperature,
13   !!              salinity and pressure
14   !!   depth    : Compute depth from pressure and latitude.
15   !!   p_to_dep : Compute depth from pressure and latitude
16   !!              (approximate version)
17   !!   dep_to_p : Compute pressure from depth and latitude
18   !!              (approximate version)
19   !!---------------------------------------------------------------------
20   !! * Modules used
21   USE par_kind, ONLY : & ! Precision variables
22      & wp   
23   IMPLICIT NONE
24 
25   !! * Function accessibility
26   PRIVATE
27   PUBLIC &
28      & potemp,   &
29      & fspott,   &
30      & atg,      &
31      & theta,    &
32      & depth,    &
33      & p_to_dep, &
34      & dep_to_p
35   
36   !!----------------------------------------------------------------------
37   !! NEMO/OCE 3.3 , NEMO Consortium (2010)
38   !! $Id$
39   !! Software governed by the CeCILL licence (NEMOGCM/NEMO_CeCILL.txt)
40   !!----------------------------------------------------------------------
41
42CONTAINS
43
44#include "obs_conv_functions.h90"
45
46END MODULE obs_conv
Note: See TracBrowser for help on using the repository browser.