LMDZ
infotrac_phy.F90
Go to the documentation of this file.
1 
2 ! $Id: $
3 
4 MODULE infotrac_phy
5 
6 ! Infotrac for physics; for now contains the same information as infotrac for
7 ! the dynamics (could be further cleaned) and is initialized using values
8 ! provided by the dynamics
9 
10 ! nqtot : total number of tracers and higher order of moment, water vapor and liquid included
11  INTEGER, SAVE :: nqtot
12 !$OMP THREADPRIVATE(nqtot)
13 
14 CONTAINS
15 
16  SUBROUTINE init_infotrac_phy(nqtot_)
17  ! transfer information on tracers from dynamics to physics
19  IMPLICIT NONE
20  INTEGER,INTENT(IN) :: nqtot_
21 
22  CHARACTER(LEN=30) :: modname="init_infotrac_phy"
23 
24  nqtot=nqtot_
25 
26  IF(prt_level.ge.1) THEN
27  write(lunout,*) trim(modname)//": nqtot",nqtot
28  ENDIF
29 
30  END SUBROUTINE init_infotrac_phy
31 
32 END MODULE infotrac_phy
integer, save nqtot
Definition: infotrac_phy.F90:8
!FH On elimine toutes les clefs physiques dans la dynamique prt_level
subroutine init_infotrac_phy(nqtot_, type_trac_)
!$Header!gestion des impressions de sorties et de débogage la sortie standard prt_level COMMON comprint lunout
Definition: iniprint.h:7