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 15 for trunk/NEMO/OPA_SRC/phycst.F90 – NEMO

Ignore:
Timestamp:
2004-02-17T08:25:44+01:00 (20 years ago)
Author:
opalod
Message:

CT : UPDATE001 : First major NEMO update

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/NEMO/OPA_SRC/phycst.F90

    r3 r15  
    1515 
    1616   !! * Shared module variables 
    17    INTEGER, PUBLIC, DIMENSION(12) ::   & 
     17   INTEGER, PUBLIC, DIMENSION(12) ::   &  !: 
    1818      nbiss = (/ 31, 29, 31, 30, 31, 30,      &  !: number of days per month 
    1919         &       31, 31, 30, 31, 30, 31 /) ,  &  !  (leap-year) 
     
    2121         &       31, 31, 30, 31, 30, 31 /)       !  (365 days a year) 
    2222    
    23    REAL(wp), PUBLIC ::                        & 
     23   REAL(wp), PUBLIC ::                        &  !: 
    2424      rpi = 3.141592653589793_wp           ,  &  !: pi 
    2525      rad = 3.141592653589793_wp / 180._wp ,  &  !: conversion from degre into radian 
    2626      rsmall = 0.5 * EPSILON( 1. )               !: smallest real computer value 
    2727    
    28    REAL(wp), PUBLIC ::          & 
     28   REAL(wp), PUBLIC ::          & !: 
    2929      rday = 24.*60.*60.  ,     & !: day (s) 
    3030      rsiyea              ,     & !: sideral year (s) 
     
    4141      omega               ,    &  !: earth rotation parameter 
    4242      ra    = 6371229._wp ,    &  !: earth radius (meter) 
    43       g     = 9.80665_wp          !: gravity (m/s2) 
    44     
    45    REAL(wp), PUBLIC ::         & 
     43      grav  = 9.80665_wp          !: gravity (m/s2) 
     44    
     45   REAL(wp), PUBLIC ::         &  !: 
    4646      rtt      = 273.16_wp  ,  &  !: triple point of temperature (Kelvin) 
    4747      rt0      = 273.15_wp  ,  &  !: freezing point of water (Kelvin) 
     
    5353      ro0cpr                      !: = 1. / ( rau0 * rcp ) 
    5454 
    55    REAL(wp), PUBLIC ::            & 
     55   REAL(wp), PUBLIC ::            &  !: 
    5656      rcdsn   =   0.22_wp     ,   &  !: conductivity of the snow 
    5757      rcdic   =   2.034396_wp ,   &  !: conductivity of the ice 
     
    154154 
    155155      IF(lwp) WRITE(numout,*) 
    156       IF(lwp) WRITE(numout,*) ' earth radius ra = ', ra, ' m' 
    157       IF(lwp) WRITE(numout,*) ' gravity      g  = ', g , ' m/s2' 
     156      IF(lwp) WRITE(numout,*) ' earth radius ra   = ', ra, ' m' 
     157      IF(lwp) WRITE(numout,*) ' gravity      grav = ', grav , ' m/s2' 
    158158 
    159159      IF(lwp) WRITE(numout,*) 
Note: See TracChangeset for help on using the changeset viewer.