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.
julian.F90 in branches/2015/dev_r5021_UKMO1_CICE_coupling/NEMOGCM/NEMO/OPA_SRC/OBS – NEMO

source: branches/2015/dev_r5021_UKMO1_CICE_coupling/NEMOGCM/NEMO/OPA_SRC/OBS/julian.F90 @ 5443

Last change on this file since 5443 was 5443, checked in by davestorkey, 9 years ago

Update 2015/dev_r5021_UKMO1_CICE_coupling branch to revision 5442 of the trunk.

File size: 1011 bytes
RevLine 
[2128]1MODULE julian
2   !!======================================================================
3   !!                       ***  MODULE julian   ***
4   !! Ocean          : Julian data utilities
5   !!=====================================================================
6
7   !!----------------------------------------------------------------------
8   !!   jul2greg        : Convert relative time to date
9   !!   greg2jul        : Convert date to relative time
10   !!----------------------------------------------------------------------
11   !! * Modules used
12   USE par_kind, ONLY : &       ! Precision variables
13      & wp, &
14      & dp 
[2715]15   !USE in_out_manager           ! I/O manager
16   USE lib_mpp,  ONLY : &
17      & ctl_warn, ctl_stop
18
[2128]19   IMPLICIT NONE
20
21   !! * Routine accessibility
22   PRIVATE
23   PUBLIC jul2greg,        &  ! Convert relative time to date
24      &   greg2jul            ! Convert date to relative time
25 
[5443]26   !! $Id$
[2128]27CONTAINS
28 
29#include "jul2greg.h90"
30
31#include "greg2jul.h90"
32   
33END MODULE julian
Note: See TracBrowser for help on using the repository browser.