source: LMDZ6/branches/Ocean_skin/libf/phylmd/infotrac_phy.F90 @ 3627

Last change on this file since 3627 was 3043, checked in by Ehouarn Millour, 7 years ago

Some fixes to enable compiling with the pgf compiler and updated arch files for pgf on Ciclad.
EM

File size: 8.0 KB
Line 
1
2! $Id: $
3
4MODULE 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!CR: on ajoute le nombre de traceurs de l eau
15  INTEGER, SAVE :: nqo
16!$OMP THREADPRIVATE(nqo)
17
18! nbtr : number of tracers not including higher order of moment or water vapor or liquid
19!        number of tracers used in the physics
20  INTEGER, SAVE :: nbtr
21!$OMP THREADPRIVATE(nbtr)
22
23! CRisi: nb traceurs pères= directement advectés par l'air
24  INTEGER, SAVE :: nqperes
25
26! Name variables
27  CHARACTER(len=20), ALLOCATABLE, DIMENSION(:), SAVE :: tname ! tracer short name for restart and diagnostics
28  CHARACTER(len=23), ALLOCATABLE, DIMENSION(:), SAVE :: ttext ! tracer long name for diagnostics
29!$OMP THREADPRIVATE(tname,ttext)
30
31!! iadv  : index of trasport schema for each tracer
32!  INTEGER, ALLOCATABLE, DIMENSION(:), SAVE    :: iadv
33
34! niadv : vector keeping the coorspondance between all tracers(nqtot) treated in the
35!         dynamic part of the code and the tracers (nbtr+2) used in the physics part of the code.
36  INTEGER, ALLOCATABLE, DIMENSION(:), SAVE    :: niadv ! equivalent dyn / physique
37!$OMP THREADPRIVATE(niadv)
38
39! CRisi: tableaux de fils
40  INTEGER, ALLOCATABLE, DIMENSION(:), SAVE    :: nqfils
41  INTEGER, ALLOCATABLE, DIMENSION(:), SAVE    :: nqdesc ! nombres de fils + nombre de tous les petits fils sur toutes les générations
42  INTEGER, SAVE :: nqdesc_tot
43  INTEGER, ALLOCATABLE, DIMENSION(:,:), SAVE    :: iqfils
44  INTEGER, ALLOCATABLE, DIMENSION(:), SAVE    :: iqpere
45!$OMP THREADPRIVATE(nqfils,nqdesc,nqdesc_tot,iqfils,iqpere)
46
47! conv_flg(it)=0 : convection desactivated for tracer number it
48  INTEGER, ALLOCATABLE, DIMENSION(:), SAVE  :: conv_flg
49!$OMP THREADPRIVATE(conv_flg)
50
51! pbl_flg(it)=0  : boundary layer diffusion desactivaded for tracer number it
52  INTEGER, ALLOCATABLE, DIMENSION(:), SAVE  :: pbl_flg
53!$OMP THREADPRIVATE(pbl_flg)
54
55  CHARACTER(len=4),SAVE :: type_trac
56!$OMP THREADPRIVATE(type_trac)
57  CHARACTER(len=8),DIMENSION(:),ALLOCATABLE, SAVE :: solsym
58!$OMP THREADPRIVATE(solsym)
59   
60    ! CRisi: cas particulier des isotopes
61    LOGICAL,SAVE :: ok_isotopes,ok_iso_verif,ok_isotrac,ok_init_iso
62!$OMP THREADPRIVATE(ok_isotopes,ok_iso_verif,ok_isotrac,ok_init_iso)
63    INTEGER :: niso_possibles   
64    PARAMETER ( niso_possibles=5)
65    real, DIMENSION (niso_possibles),SAVE :: tnat,alpha_ideal
66!$OMP THREADPRIVATE(tnat,alpha_ideal)
67    LOGICAL, DIMENSION(niso_possibles),SAVE ::  use_iso
68!$OMP THREADPRIVATE(use_iso)
69    INTEGER, ALLOCATABLE, DIMENSION(:,:), SAVE ::  iqiso ! donne indice iq en fn de (ixt,phase)
70!$OMP THREADPRIVATE(iqiso)
71    INTEGER, ALLOCATABLE, DIMENSION(:), SAVE ::  iso_num ! donne numéro iso entre 1 et niso_possibles en fn de nqtot
72!$OMP THREADPRIVATE(iso_num)
73    INTEGER, ALLOCATABLE, DIMENSION(:), SAVE ::  iso_indnum ! donne numéro iso entre 1 et niso effectif en fn de nqtot
74!$OMP THREADPRIVATE(iso_indnum)
75    INTEGER, ALLOCATABLE, DIMENSION(:), SAVE ::  zone_num ! donne numéro de la zone de tracage en fn de nqtot
76!$OMP THREADPRIVATE(zone_num)
77    INTEGER, ALLOCATABLE, DIMENSION(:), SAVE ::  phase_num ! donne numéro de la zone de tracage en fn de nqtot
78!$OMP THREADPRIVATE(phase_num)
79    INTEGER, DIMENSION(niso_possibles), SAVE :: indnum_fn_num ! donne indice entre entre 1 et niso en fonction du numéro d isotope entre 1 et niso_possibles
80!$OMP THREADPRIVATE(indnum_fn_num)
81    INTEGER, ALLOCATABLE, DIMENSION(:,:), SAVE ::  index_trac ! numéro ixt en fn izone, indnum entre 1 et niso
82!$OMP THREADPRIVATE(index_trac)
83    INTEGER,SAVE :: niso,ntraceurs_zone,ntraciso
84!$OMP THREADPRIVATE(niso,ntraceurs_zone,ntraciso)
85 
86CONTAINS
87
88  SUBROUTINE init_infotrac_phy(nqtot_,nqo_,nbtr_,tname_,ttext_,type_trac_,&
89                               niadv_,conv_flg_,pbl_flg_,solsym_,&
90                               nqfils_,nqdesc_,nqdesc_tot_,iqfils_,iqpere_,&
91                               ok_isotopes_,ok_iso_verif_,ok_isotrac_,&
92                               ok_init_iso_,niso_possibles_,tnat_,&
93                               alpha_ideal_,use_iso_,iqiso_,iso_num_,&
94                               iso_indnum_,zone_num_,phase_num_,&
95                               indnum_fn_num_,index_trac_,&
96                               niso_,ntraceurs_zone_,ntraciso_)
97
98    ! transfer information on tracers from dynamics to physics
99    USE print_control_mod, ONLY: prt_level, lunout
100    IMPLICIT NONE
101
102    INTEGER,INTENT(IN) :: nqtot_
103    INTEGER,INTENT(IN) :: nqo_
104    INTEGER,INTENT(IN) :: nbtr_
105    CHARACTER(len=20),INTENT(IN) :: tname_(nqtot_) ! tracer short name for restart and diagnostics
106    CHARACTER(len=23),INTENT(IN) :: ttext_(nqtot_) ! tracer long name for diagnostics
107    CHARACTER(len=4),INTENT(IN) :: type_trac_
108    INTEGER,INTENT(IN) :: niadv_ (nqtot_) ! equivalent dyn / physique
109    INTEGER,INTENT(IN) :: conv_flg_(nbtr_)
110    INTEGER,INTENT(IN) :: pbl_flg_(nbtr_)
111    CHARACTER(len=8),INTENT(IN) :: solsym_(nbtr_)
112    ! Isotopes:
113    INTEGER,INTENT(IN) :: nqfils_(nqtot_)
114    INTEGER,INTENT(IN) :: nqdesc_(nqtot_)
115    INTEGER,INTENT(IN) :: nqdesc_tot_
116    INTEGER,INTENT(IN) :: iqfils_(nqtot_,nqtot_)
117    INTEGER,INTENT(IN) :: iqpere_(nqtot_)
118    LOGICAL,INTENT(IN) :: ok_isotopes_
119    LOGICAL,INTENT(IN) :: ok_iso_verif_
120    LOGICAL,INTENT(IN) :: ok_isotrac_
121    LOGICAL,INTENT(IN) :: ok_init_iso_
122    INTEGER,INTENT(IN) :: niso_possibles_
123    REAL,INTENT(IN) :: tnat_(niso_possibles_)
124    REAL,INTENT(IN) :: alpha_ideal_(niso_possibles_)
125    LOGICAL,INTENT(IN) :: use_iso_(niso_possibles_)
126    INTEGER,INTENT(IN) :: iqiso_(ntraciso_,nqo_)
127    INTEGER,INTENT(IN) :: iso_num_(nqtot_)
128    INTEGER,INTENT(IN) :: iso_indnum_(nqtot_)
129    INTEGER,INTENT(IN) :: zone_num_(nqtot_)
130    INTEGER,INTENT(IN) :: phase_num_(nqtot_)
131    INTEGER,INTENT(IN) :: indnum_fn_num_(niso_possibles_)
132    INTEGER,INTENT(IN) :: index_trac_(ntraceurs_zone_,niso_)
133    INTEGER,INTENT(IN) :: niso_
134    INTEGER,INTENT(IN) :: ntraceurs_zone_
135    INTEGER,INTENT(IN) :: ntraciso_
136
137    CHARACTER(LEN=30) :: modname="init_infotrac_phy"
138
139    nqtot=nqtot_
140    nqo=nqo_
141    nbtr=nbtr_
142    ALLOCATE(tname(nqtot))
143    tname(:) = tname_(:)
144    ALLOCATE(ttext(nqtot))
145    ttext(:) = ttext_(:)
146    type_trac = type_trac_
147    ALLOCATE(niadv(nqtot))
148    niadv(:)=niadv_(:)
149    ALLOCATE(conv_flg(nbtr))
150    conv_flg(:)=conv_flg_(:)
151    ALLOCATE(pbl_flg(nbtr))
152    pbl_flg(:)=pbl_flg_(:)
153    ALLOCATE(solsym(nbtr))
154    solsym(:)=solsym_(:)
155 
156    IF(prt_level.ge.1) THEN
157      write(lunout,*) TRIM(modname)//": nqtot,nqo,nbtr",nqtot,nqo,nbtr
158    ENDIF
159   
160    ! Isotopes:
161   
162    ! First check that the "niso_possibles" has the correct value
163    IF (niso_possibles.ne.niso_possibles_) THEN
164      CALL abort_physic(modname,&
165           "wrong value for parameter niso_possibles in infotrac_phy",1)
166    ENDIF
167   
168    ok_isotopes=ok_isotopes_
169    ok_iso_verif=ok_iso_verif_
170    ok_isotrac=ok_isotrac_
171    ok_init_iso=ok_init_iso_
172   
173    niso=niso_
174    ntraceurs_zone=ntraceurs_zone_
175    ntraciso=ntraciso_
176   
177    IF (ok_isotopes) THEN
178      ALLOCATE(nqfils(nqtot))
179      nqfils(:)=nqfils_(:)
180      ALLOCATE(nqdesc(nqtot))
181      nqdesc(:)=nqdesc_(:)
182      nqdesc_tot=nqdesc_tot_
183      ALLOCATE(iqfils(nqtot,nqtot))
184      iqfils(:,:)=iqfils_(:,:)
185      ALLOCATE(iqpere(nqtot))
186      iqpere(:)=iqpere_(:)
187   
188      tnat(:)=tnat_(:)
189      alpha_ideal(:)=alpha_ideal_(:)
190      use_iso(:)=use_iso_(:)
191   
192      ALLOCATE(iqiso(ntraciso,nqo))
193      iqiso(:,:)=iqiso_(:,:)
194      ALLOCATE(iso_num(nqtot))
195      iso_num(:)=iso_num_(:)
196      ALLOCATE(iso_indnum(nqtot))
197      iso_indnum(:)=iso_indnum_(:)
198      ALLOCATE(zone_num(nqtot))
199      zone_num(:)=zone_num_(:)
200      ALLOCATE(phase_num(nqtot))
201      phase_num(:)=phase_num_(:)
202     
203      indnum_fn_num(:)=indnum_fn_num_(:)
204     
205      ALLOCATE(index_trac(ntraceurs_zone,niso))
206      index_trac(:,:)=index_trac_(:,:)
207    ENDIF ! of IF(ok_isotopes)
208 
209  END SUBROUTINE init_infotrac_phy
210
211END MODULE infotrac_phy
Note: See TracBrowser for help on using the repository browser.