1 | ! |
---|
2 | ! $Id: iniphysiq.F 1403 2010-07-01 09:02:53Z fairhead $ |
---|
3 | ! |
---|
4 | MODULE iniphysiq_mod |
---|
5 | |
---|
6 | CONTAINS |
---|
7 | |
---|
8 | SUBROUTINE iniphysiq(iim,jjm,nlayer, & |
---|
9 | nbp, communicator, & |
---|
10 | punjours, pdayref,ptimestep, & |
---|
11 | rlatu,rlatv,rlonu,rlonv,aire,cu,cv, & |
---|
12 | prad,pg,pr,pcpp,iflag_phys) |
---|
13 | USE iniprint_mod_h |
---|
14 | USE dimphy, ONLY: init_dimphy |
---|
15 | USE inigeomphy_mod, ONLY: inigeomphy |
---|
16 | USE mod_phys_lmdz_para, ONLY: klon_omp ! number of columns (on local omp grid) |
---|
17 | USE infotrac, ONLY: nqtot, type_trac |
---|
18 | USE infotrac_phy, ONLY: init_infotrac_phy |
---|
19 | USE inifis_mod, ONLY: inifis |
---|
20 | USE phyaqua_mod, ONLY: iniaqua |
---|
21 | USE nrtype, ONLY: pi |
---|
22 | IMPLICIT NONE |
---|
23 | ! |
---|
24 | !======================================================================= |
---|
25 | ! Initialisation of the physical constants and some positional and |
---|
26 | ! geometrical arrays for the physics |
---|
27 | !======================================================================= |
---|
28 | |
---|
29 | |
---|
30 | |
---|
31 | REAL,INTENT(IN) :: prad ! radius of the planet (m) |
---|
32 | REAL,INTENT(IN) :: pg ! gravitational acceleration (m/s2) |
---|
33 | REAL,INTENT(IN) :: pr ! ! reduced gas constant R/mu |
---|
34 | REAL,INTENT(IN) :: pcpp ! specific heat Cp |
---|
35 | REAL,INTENT(IN) :: punjours ! length (in s) of a standard day |
---|
36 | INTEGER, INTENT (IN) :: nlayer ! number of atmospheric layers |
---|
37 | INTEGER, INTENT (IN) :: iim ! number of atmospheric coulumns along longitudes |
---|
38 | INTEGER, INTENT (IN) :: jjm ! number of atompsheric columns along latitudes |
---|
39 | INTEGER, INTENT(IN) :: nbp ! number of physics columns for this MPI process |
---|
40 | INTEGER, INTENT(IN) :: communicator ! MPI communicator |
---|
41 | REAL, INTENT (IN) :: rlatu(jjm+1) ! latitudes of the physics grid |
---|
42 | REAL, INTENT (IN) :: rlatv(jjm) ! latitude boundaries of the physics grid |
---|
43 | REAL, INTENT (IN) :: rlonv(iim+1) ! longitudes of the physics grid |
---|
44 | REAL, INTENT (IN) :: rlonu(iim+1) ! longitude boundaries of the physics grid |
---|
45 | REAL, INTENT (IN) :: aire(iim+1,jjm+1) ! area of the dynamics grid (m2) |
---|
46 | REAL, INTENT (IN) :: cu((iim+1)*(jjm+1)) ! cu coeff. (u_covariant = cu * u) |
---|
47 | REAL, INTENT (IN) :: cv((iim+1)*jjm) ! cv coeff. (v_covariant = cv * v) |
---|
48 | INTEGER, INTENT (IN) :: pdayref ! reference day of for the simulation |
---|
49 | REAL,INTENT(IN) :: ptimestep !physics time step (s) |
---|
50 | INTEGER,INTENT(IN) :: iflag_phys ! type of physics to be called |
---|
51 | |
---|
52 | INTEGER :: ibegin,iend,offset |
---|
53 | INTEGER :: i,j,k |
---|
54 | CHARACTER (LEN=20) :: modname='iniphysiq' |
---|
55 | CHARACTER (LEN=80) :: abort_message |
---|
56 | |
---|
57 | |
---|
58 | ! --> initialize physics distribution, global fields and geometry |
---|
59 | ! (i.e. things in phy_common or dynphy_lonlat) |
---|
60 | CALL inigeomphy(iim,jjm,nlayer, & |
---|
61 | nbp, communicator, & |
---|
62 | rlatu,rlatv, & |
---|
63 | rlonu,rlonv, & |
---|
64 | aire,cu,cv) |
---|
65 | |
---|
66 | ! --> now initialize things specific to the phydev physics package |
---|
67 | |
---|
68 | !$OMP PARALLEL |
---|
69 | |
---|
70 | ! Initialize physical constants in physics: |
---|
71 | CALL inifis(prad,pg,pr,pcpp) |
---|
72 | |
---|
73 | ! Initialize tracer names, numbers, etc. for physics |
---|
74 | CALL init_infotrac_phy(nqtot,type_trac) |
---|
75 | |
---|
76 | ! Additional initializations for aquaplanets |
---|
77 | IF (iflag_phys>=100) THEN |
---|
78 | CALL iniaqua(klon_omp,iflag_phys) |
---|
79 | ENDIF |
---|
80 | !$OMP END PARALLEL |
---|
81 | |
---|
82 | END SUBROUTINE iniphysiq |
---|
83 | |
---|
84 | END MODULE iniphysiq_mod |
---|