source: LMDZ6/branches/Amaury_dev/libf/dyn3d_common/comconst_mod.F90 @ 5209

Last change on this file since 5209 was 5099, checked in by abarral, 2 months ago

Replace most uses of CPP_DUST by the corresponding logical defined in lmdz_cppkeys_wrapper.F90
Convert several files from .F to .f90 to allow Dust to compile w/o rrtm/ecrad
Create lmdz_yoerad.f90
(lint) Remove "!" on otherwise empty line

  • Property copyright set to
    Name of program: LMDZ
    Creation date: 1984
    Version: LMDZ5
    License: CeCILL version 2
    Holder: Laboratoire de m\'et\'eorologie dynamique, CNRS, UMR 8539
    See the license file in the root directory
  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 1.4 KB
Line 
1
2! $Id: comconst_mod.F90 5099 2024-07-22 19:29:09Z fairhead $
3
4MODULE comconst_mod
5
6IMPLICIT NONE 
7
8      INTEGER im,jm,lllm,imp1,jmp1,lllmm1,lllmp1,lcl
9      REAL dtvr ! dynamical time step (in s)
10      REAL daysec !length (in s) of a standard day
11      REAL pi    ! something like 3.14159....
12      REAL dtphys ! (s) time step for the physics
13      REAL dtdiss ! (s) time step for the dissipation
14      REAL rad ! (m) radius of the planet
15      REAL r ! Reduced Gas constant r=R/mu
16             ! with R=8.31.. J.K-1.mol-1, mu: mol mass of atmosphere (kg/mol)
17      REAL cpp   ! Specific heat Cp (J.kg-1.K-1)
18      REAL kappa ! kappa=R/Cp
19      REAL cotot
20      REAL unsim ! = 1./iim
21      REAL g ! (m/s2) gravity
22      REAL omeg ! (rad/s) rotation rate of the planet
23      REAL dissip_factz,dissip_deltaz,dissip_zref
24! top_bound sponge:
25      INTEGER iflag_top_bound ! sponge type
26      INTEGER ngroup ! parameter to group points (along longitude) near poles
27      REAL maxlatfilter ! maximum latitude (in degrees) above which filter is active
28      INTEGER mode_top_bound  ! sponge mode
29      REAL tau_top_bound ! inverse of sponge characteristic time scale (Hz)
30      REAL daylen ! length of solar day, in 'standard' day length
31      REAL year_day ! Number of standard days in a year
32      REAL molmass ! (g/mol) molar mass of the atmosphere
33
34      REAL ihf ! (W/m2) Intrinsic heat flux (for giant planets)
35
36
37END MODULE comconst_mod
Note: See TracBrowser for help on using the repository browser.