Last change
on this file since 5304 was
4482,
checked in by lguez, 19 months ago
|
Sync latest trunk changes to branch LMDZ_ECRad
|
File size:
645 bytes
|
Line | |
---|
1 | |
---|
2 | ! $Id: $ |
---|
3 | |
---|
4 | MODULE infotrac_phy |
---|
5 | |
---|
6 | USE strings_mod, ONLY: maxlen |
---|
7 | INTEGER, SAVE :: nqtot !--- Tracers nb in dynamics (incl. higher moments + H2O) |
---|
8 | CHARACTER(LEN=maxlen), SAVE :: type_trac !--- Keyword for tracers type |
---|
9 | !$OMP THREADPRIVATE(nqtot, type_trac) |
---|
10 | |
---|
11 | CONTAINS |
---|
12 | |
---|
13 | SUBROUTINE init_infotrac_phy(nqtot_, type_trac_) |
---|
14 | IMPLICIT NONE |
---|
15 | INTEGER, INTENT(IN) :: nqtot_ |
---|
16 | CHARACTER(LEN=*), INTENT(IN) :: type_trac_ |
---|
17 | CHARACTER(LEN=maxlen) :: modname='init_infotrac_phy' |
---|
18 | |
---|
19 | nqtot = nqtot_ |
---|
20 | type_trac = type_trac_ |
---|
21 | |
---|
22 | END SUBROUTINE init_infotrac_phy |
---|
23 | |
---|
24 | END MODULE infotrac_phy |
---|
Note: See
TracBrowser
for help on using the repository browser.