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.
Changeset 12080 for utils/tools/SIREN/src/phycst.f90 – NEMO

Ignore:
Timestamp:
2019-12-06T10:30:14+01:00 (4 years ago)
Author:
jpaul
Message:

update nemo trunk

File:
1 edited

Legend:

Unmodified
Added
Removed
  • utils/tools/SIREN/src/phycst.f90

    r9598 r12080  
    33!---------------------------------------------------------------------- 
    44! 
    5 ! MODULE: phycst 
    6 ! 
    75! DESCRIPTION: 
    86!> @brief This module defines physical constant. 
    9 ! 
     7!> 
    108!> @author 
    119!> J.paul 
     
    1412!> @date September, 2015 
    1513!> - add physical constant to compute meshmask 
    16 ! 
    17 !> @note Software governed by the CeCILL licence     (./LICENSE) 
     14!> @date January, 2019 
     15!> - half reduce epsilon value 
     16!> 
     17!> @note Software governed by the CeCILL licence     (NEMOGCM/NEMO_CeCILL.txt) 
    1818!---------------------------------------------------------------------- 
    1919MODULE phycst 
     20 
    2021   USE kind                         ! F90 kind parameter 
    2122 
     
    4041   REAL(dp), PARAMETER :: dp_pi = 3.14159274101257_dp 
    4142   REAL(dp), PARAMETER :: dp_eps = 0.5 * EPSILON(1._dp) 
    42    REAL(dp), PARAMETER :: dp_rearth = 6371229._dp 
     43   REAL(dp), PARAMETER :: dp_rearth = 6371229._dp !m 
    4344   REAL(dp), PARAMETER :: dp_deg2rad = dp_pi/180.0 
    4445   REAL(dp), PARAMETER :: dp_rad2deg = 180.0/dp_pi 
     
    4950   REAL(dp), PARAMETER :: dp_siday = dp_day / ( 1._dp + dp_day / dp_siyea ) 
    5051 
    51    REAL(dp), PARAMETER :: dp_delta=1.e-5 
     52   REAL(dp), PARAMETER :: dp_delta=1.e-6 
    5253   REAL(dp), PARAMETER :: dp_omega= 2._dp * dp_pi / dp_siday 
     54 
    5355END MODULE phycst 
    5456 
Note: See TracChangeset for help on using the changeset viewer.