| [524] | 1 | ! |
|---|
| [1279] | 2 | ! $Id: comconst_mod.F90 4519 2023-04-24 16:11:11Z fairhead $ |
|---|
| [524] | 3 | ! |
|---|
| 4 | |
|---|
| [2597] | 5 | MODULE comconst_mod |
|---|
| [524] | 6 | |
|---|
| [2597] | 7 | IMPLICIT NONE |
|---|
| [1279] | 8 | |
|---|
| [524] | 9 | INTEGER im,jm,lllm,imp1,jmp1,lllmm1,lllmp1,lcl |
|---|
| [1454] | 10 | REAL dtvr ! dynamical time step (in s) |
|---|
| 11 | REAL daysec !length (in s) of a standard day |
|---|
| 12 | REAL pi ! something like 3.14159.... |
|---|
| 13 | REAL dtphys ! (s) time step for the physics |
|---|
| 14 | REAL dtdiss ! (s) time step for the dissipation |
|---|
| 15 | REAL rad ! (m) radius of the planet |
|---|
| [1671] | 16 | REAL r ! Reduced Gas constant r=R/mu |
|---|
| 17 | ! with R=8.31.. J.K-1.mol-1, mu: mol mass of atmosphere (kg/mol) |
|---|
| 18 | REAL cpp ! Specific heat Cp (J.kg-1.K-1) |
|---|
| [1454] | 19 | REAL kappa ! kappa=R/Cp |
|---|
| 20 | REAL cotot |
|---|
| 21 | REAL unsim ! = 1./iim |
|---|
| 22 | REAL g ! (m/s2) gravity |
|---|
| 23 | REAL omeg ! (rad/s) rotation rate of the planet |
|---|
| [1279] | 24 | REAL dissip_factz,dissip_deltaz,dissip_zref |
|---|
| [1793] | 25 | ! top_bound sponge: |
|---|
| 26 | INTEGER iflag_top_bound ! sponge type |
|---|
| [2597] | 27 | INTEGER ngroup ! parameter to group points (along longitude) near poles |
|---|
| [4519] | 28 | REAL maxlatfilter ! maximum latitude (in degrees) above which filter is active |
|---|
| [1793] | 29 | INTEGER mode_top_bound ! sponge mode |
|---|
| 30 | REAL tau_top_bound ! inverse of sponge characteristic time scale (Hz) |
|---|
| [1454] | 31 | REAL daylen ! length of solar day, in 'standard' day length |
|---|
| 32 | REAL year_day ! Number of standard days in a year |
|---|
| 33 | REAL molmass ! (g/mol) molar mass of the atmosphere |
|---|
| [524] | 34 | |
|---|
| [1505] | 35 | REAL ihf ! (W/m2) Intrinsic heat flux (for giant planets) |
|---|
| [1279] | 36 | |
|---|
| [2597] | 37 | |
|---|
| 38 | END MODULE comconst_mod |
|---|