Last change
on this file since 4500 was
4050,
checked in by dcugnet, 3 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:
797 bytes
|
Rev | Line | |
---|
[1632] | 1 | MODULE groupe_mod |
---|
| 2 | |
---|
| 3 | REAL,POINTER,SAVE :: zconvm(:,:,:) |
---|
| 4 | REAL,POINTER,SAVE :: zconvmm(:,:,:) |
---|
| 5 | |
---|
| 6 | CONTAINS |
---|
| 7 | |
---|
| 8 | SUBROUTINE groupe_allocate |
---|
| 9 | USE bands |
---|
[1810] | 10 | USE allocate_field_mod |
---|
[1823] | 11 | USE parallel_lmdz |
---|
[4050] | 12 | ! USE infotrac |
---|
[1632] | 13 | USE advtrac_mod, ONLY : advtrac_allocate |
---|
| 14 | IMPLICIT NONE |
---|
| 15 | INCLUDE "dimensions.h" |
---|
| 16 | INCLUDE "paramet.h" |
---|
| 17 | TYPE(distrib),POINTER :: d |
---|
| 18 | |
---|
| 19 | d=>distrib_caldyn |
---|
| 20 | CALL allocate2d_u(zconvm,llm,d) |
---|
| 21 | CALL allocate2d_u(zconvmm,llm,d) |
---|
| 22 | |
---|
| 23 | |
---|
| 24 | END SUBROUTINE groupe_allocate |
---|
| 25 | |
---|
| 26 | SUBROUTINE groupe_switch_caldyn(dist) |
---|
[1810] | 27 | USE allocate_field_mod |
---|
[1632] | 28 | USE bands |
---|
[1823] | 29 | USE parallel_lmdz |
---|
[1632] | 30 | IMPLICIT NONE |
---|
| 31 | TYPE(distrib),INTENT(IN) :: dist |
---|
| 32 | |
---|
| 33 | CALL switch2d_u(zconvm,distrib_caldyn,dist) |
---|
| 34 | CALL switch2d_u(zconvmm,distrib_caldyn,dist) |
---|
| 35 | |
---|
| 36 | END SUBROUTINE groupe_switch_caldyn |
---|
| 37 | |
---|
| 38 | |
---|
| 39 | |
---|
| 40 | END MODULE groupe_mod |
---|
Note: See
TracBrowser
for help on using the repository browser.