source: LMDZ6/trunk/libf/dyn3dmem/vlz_mod.F90 @ 4050

Last change on this file since 4050 was 4050, checked in by dcugnet, 2 years ago

Second commit for new tracers.

  • include most of the keys in the tracers descriptor vector "tracers(:)".
  • fix in phylmdiso/cv3_routines: fq_* variables were used where their fxt_* counterparts were expected.
  • multiple IF(nqdesc(iq)>0) and IF(nqfils(iq)>0) tests suppressed, because they are not needed: "do ... enddo" loops with 0 upper bound are not executed.
  • remove French accents from comments (encoding problem) in phylmdiso/cv3_routines and phylmdiso/cv30_routines.
  • modifications in "isotopes_verif_mod", where the call to function "iso_verif_tag17_q_deltad_chn" in "iso_verif_tag17_q_deltad_chn" was not detected at linking stage, although defined in the same module (?).
  • Property copyright set to
    Name of program: LMDZ
    Creation date: 1984
    Version: LMDZ5
    License: CeCILL version 2
    Holder: Laboratoire de m\'et\'eorologie dynamique, CNRS, UMR 8539
    See the license file in the root directory
File size: 1.1 KB
Line 
1MODULE vlz_mod
2
3  REAL,POINTER,SAVE :: wq(:,:,:)
4  REAL,POINTER,SAVE :: dzq(:,:)
5  REAL,POINTER,SAVE :: dzqw(:,:)
6  REAL,POINTER,SAVE :: adzqw(:,:)
7  ! CRisi: pour les traceurs:
8  REAL,POINTER,SAVE :: Ratio(:,:,:)
9 
10CONTAINS
11
12  SUBROUTINE vlz_allocate
13  USE bands
14  USE allocate_field_mod
15  USE parallel_lmdz
16  USE infotrac
17  USE dimensions_mod
18  IMPLICIT NONE
19  TYPE(distrib),POINTER :: d
20   
21    d=>distrib_vanleer
22    CALL allocate_u(wq,llm+1,nqtot,d)
23    CALL allocate_u(dzq,llm,d)
24    CALL allocate_u(dzqw,llm,d)
25    CALL allocate_u(adzqw,llm,d)
26    IF(ANY(tracers(:)%nqDescen > 0)) CALL allocate_u(Ratio,llm,nqtot,d)
27
28  END SUBROUTINE vlz_allocate
29 
30  SUBROUTINE vlz_switch_vanleer(dist)
31  USE allocate_field_mod
32  USE bands
33  USE parallel_lmdz
34  USE infotrac
35  IMPLICIT NONE
36    TYPE(distrib),INTENT(IN) :: dist
37 
38    CALL switch_u(wq,distrib_vanleer,dist)
39    CALL switch_u(dzq,distrib_vanleer,dist)
40    CALL switch_u(dzqw,distrib_vanleer,dist)
41    CALL switch_u(adzqw,distrib_vanleer,dist)
42    IF(ANY(tracers(:)%nqDescen > 0)) CALL switch_u(Ratio,distrib_vanleer,dist)
43
44  END SUBROUTINE vlz_switch_vanleer 
45 
46END MODULE vlz_mod 
Note: See TracBrowser for help on using the repository browser.