source: LMDZ5/trunk/libf/dynphy_lonlat/phymar/callphysiq_mod.F90 @ 2418

Last change on this file since 2418 was 2418, checked in by Ehouarn Millour, 8 years ago

Improving the physics/dynamics interface:

  • added module callphysiq_mod.F90 in dynphy_lonlat/phy* which contains the routine "call_physiq" which is called by calfis* and calls the physics. This way different "physiq" routine from different physics packages may be called: The calfis* routines now exposes all available fields that might be transmitted to physiq but which is actually send (ie: expected/needed by physiq) is decided in call_physiq.
  • turned "physiq.F90" into module "physiq_mod.F90" for better control of "physiq" arguments. Extracted embeded "gr_fi_ecrit" as self-standing routine (but note that this routine actually only works in serial mode).

EM

File size: 3.8 KB
Line 
1!
2! $Id: $
3!
4MODULE callphysiq_mod
5
6IMPLICIT NONE
7
8CONTAINS
9
10SUBROUTINE call_physiq(klon,llm,nqtot,tname,                              &
11                       debut_split,lafin_split,                           &
12                       jD_cur,jH_cur_split,zdt_split,                     &
13                       zplev_omp,zplay_omp,                               &
14                       zphi_omp,zphis_omp,                                &
15                       presnivs_omp,                                      &
16                       zufi_omp,zvfi_omp,zrfi_omp,ztfi_omp,zqfi_omp,      &
17                       flxwfi_omp,pducov,                                 &
18                       zdufi_omp,zdvfi_omp,zdtfi_omp,zdqfi_omp,zdpsrf_omp)
19
20
21  USE mod_grid_phy_lmdz, ONLY: nbp_lon, nbp_lat
22  USE control_mod, ONLY: planet_type
23  USE physiq_mod, ONLY: physiq
24  IMPLICIT NONE
25
26  INTEGER,INTENT(IN) :: klon ! (local) number of atmospheric columns
27  INTEGER,INTENT(IN) :: llm  ! number of atmospheric layers
28  INTEGER,INTENT(IN) :: nqtot ! number of tracers
29  CHARACTER(len=*),INTENT(IN) :: tname(nqtot) ! tracer names
30  LOGICAL,INTENT(IN) :: debut_split ! .true. if very first call to physics
31  LOGICAL,INTENT(IN) :: lafin_split ! .true. if last call to physics
32  REAL,INTENT(IN) :: JD_cur ! Julian day
33  REAL,INTENT(IN) :: JH_cur_split ! Julian hour (fraction of day)
34  REAL,INTENT(IN) :: zdt_split ! time step over which the physics are evaluated
35  REAL,INTENT(IN) :: zplev_omp(klon,llm+1) ! interlayer pressure (Pa)
36  REAL,INTENT(IN) :: zplay_omp(klon,llm) ! mid-layer pressure (Pa)
37  REAL,INTENT(IN) :: zphi_omp(klon,llm) ! geopotential at midlayer
38  REAL,INTENT(IN) :: zphis_omp(klon) ! surface geopotential
39  REAL,INTENT(IN) :: presnivs_omp(llm) ! approximate pressure of atm. layers
40  REAL,INTENT(IN) :: zufi_omp(klon,llm) ! zonal wind (m/s)
41  REAL,INTENT(IN) :: zvfi_omp(klon,llm) ! meridional wind (m/s)
42  REAL,INTENT(IN) :: zrfi_omp(klon,llm) ! relative wind vorticity, in s-1
43  REAL,INTENT(IN) :: ztfi_omp(klon,llm) ! temperature (K)
44  REAL,INTENT(IN) :: zqfi_omp(klon,llm,nqtot) ! tracers (*/kg of air)
45  REAL,INTENT(IN) :: flxwfi_omp(klon,llm) ! Vertical mass flux on lower mesh interfaces (kg/s)
46  REAL,INTENT(IN) :: pducov(nbp_lon+1,nbp_lat,llm) ! dynamical tendency on ucov
47  ! tendencies (in */s) from the physics:
48  REAL,INTENT(OUT) :: zdufi_omp(klon,llm) ! tendency on zonal winds
49  REAL,INTENT(OUT) :: zdvfi_omp(klon,llm) ! tendency on meridional winds
50  REAL,INTENT(OUT) :: zdtfi_omp(klon,llm) ! tendency on temperature
51  REAL,INTENT(OUT) :: zdqfi_omp(klon,llm,nqtot) ! tendency on tracers
52  REAL,INTENT(OUT) :: zdpsrf_omp(klon) ! tendency on surface pressure
53 
54  ! Local variables
55  CHARACTER(len=11) :: modname="call_physiq"
56  LOGICAL,SAVE :: firstcall=.true.
57!$OMP THREADPRIVATE(firstcall)
58
59! Sanity check on physics package type
60  IF (firstcall) THEN
61    IF (planet_type.ne."earth") THEN
62      CALL abort_gcm(modname,"wrong planet_type for this physics package",1)
63    ENDIF
64    firstcall=.false.
65  ENDIF
66
67
68! Call physics package with required inputs/outputs
69  CALL physiq(klon,           &
70              llm,            &
71              debut_split,    &
72              lafin_split,    &
73              jD_cur,         &
74              jH_cur_split,   &
75              zdt_split,      &
76              zplev_omp,      &
77              zplay_omp,      &
78              zphi_omp,       &
79              zphis_omp,      &
80              presnivs_omp,   &
81              zufi_omp,       &
82              zvfi_omp,       &
83              zrfi_omp,       &
84              ztfi_omp,       &
85              zqfi_omp,       &
86              flxwfi_omp,     &
87              zdufi_omp,      &
88              zdvfi_omp,      &
89              zdtfi_omp,      &
90              zdqfi_omp,      &
91              zdpsrf_omp,     &
92              pducov)
93
94
95END SUBROUTINE call_physiq
96
97END MODULE callphysiq_mod
Note: See TracBrowser for help on using the repository browser.