/[lmdze]/trunk/libf/dyn3d/comconst.f90
ViewVC logotype

Contents of /trunk/libf/dyn3d/comconst.f90

Parent Directory Parent Directory | Revision Log Revision Log


Revision 26 - (show annotations)
Tue Mar 9 15:27:15 2010 UTC (14 years, 2 months ago) by guez
File size: 771 byte(s)
Moved variable "dtdiss" from module "comconst", variable "idissip"
from module "conf_gcm_m" and all variables from module "comdissipn" to
module "inidissip_m". "inidissip" creates file
"inidissip.csv". "idissip" is no longer read from a namelist. Removed
useless computation of "dtdiss" in procedure "iniconst".

1 module comconst
2
3 use dimens_m, only: jjm
4
5 implicit none
6
7 INTEGER im, jm, lllm, imp1
8 integer, parameter:: jmp1 = jjm + 1
9 integer lllmm1, lllmp1, lcl
10 REAL dtvr ! time step for dynamics (in s)
11 real, parameter:: daysec = 86400. ! number of seconds per day
12 REAL pi, dtphys
13 real, parameter:: rad = 6371229. ! radius of the Earth (in m)
14 real r
15 real, parameter:: cpp = 1004.70885, kappa = 0.2857143
16 REAL cotot, unsim
17 real, parameter:: g = 9.8 ! acceleration of gravity (in m s-2)
18 real omeg ! angular speed of rotation of the Earth (in rad s-1)
19
20 private jjm
21
22 contains
23
24 subroutine initialize
25
26 print *, "Call sequence information: initialize"
27 pi = Acos(-1.)
28 omeg = 2 * pi / daysec
29
30 end subroutine initialize
31
32 end module comconst

  ViewVC Help
Powered by ViewVC 1.1.21