| 1 | MODULE comconst_mod |
|---|
| 2 | |
|---|
| 3 | IMPLICIT NONE |
|---|
| 4 | |
|---|
| 5 | INTEGER im,jm,lllm,imp1,jmp1,lllmm1,lllmp1,lcl |
|---|
| 6 | REAL dtvr ! dynamical time step (in s) |
|---|
| 7 | REAL daysec !length (in s) of a standard day |
|---|
| 8 | REAL pi ! something like 3.14159.... |
|---|
| 9 | REAL dtphys ! (s) time step for the physics |
|---|
| 10 | REAL dtdiss ! (s) time step for the dissipation |
|---|
| 11 | REAL rad ! (m) radius of the planet |
|---|
| 12 | REAL r ! Reduced Gas constant r=R/mu |
|---|
| 13 | ! with R=8.31.. J.K-1.mol-1, mu: mol mass of atmosphere (kg/mol) |
|---|
| 14 | REAL cpp ! Cp |
|---|
| 15 | REAL kappa ! kappa=R/Cp |
|---|
| 16 | REAL cotot |
|---|
| 17 | REAL unsim ! = 1./iim |
|---|
| 18 | REAL g ! (m/s2) gravity |
|---|
| 19 | REAL omeg ! (rad/s) rotation rate of the planet |
|---|
| 20 | ! Dissipation factors, for Earth model: |
|---|
| 21 | REAL dissip_factz,dissip_zref !dissip_deltaz |
|---|
| 22 | ! Dissipation factors, for other planets: |
|---|
| 23 | REAL dissip_fac_mid,dissip_fac_up,dissip_deltaz,dissip_hdelta |
|---|
| 24 | REAL dissip_pupstart |
|---|
| 25 | INTEGER iflag_top_bound,mode_top_bound |
|---|
| 26 | REAL tau_top_bound |
|---|
| 27 | REAL daylen ! length of solar day, in 'standard' day length |
|---|
| 28 | REAL molmass ! (g/mol) molar mass of the atmosphere |
|---|
| 29 | |
|---|
| 30 | REAL nu_venus,t0_venus ! coeffs needed for Cp(T), Venus atmosphere |
|---|
| 31 | REAL ihf ! (W/m2) intrinsic heat flux for giant planets |
|---|
| 32 | |
|---|
| 33 | |
|---|
| 34 | END MODULE comconst_mod |
|---|