source: LMDZ6/branches/Amaury_dev/libf/phylmd/infotrac_phy.F90 @ 5225

Last change on this file since 5225 was 5223, checked in by abarral, 7 weeks ago

Merge r5200

File size: 31.3 KB
RevLine 
[4325]1!$Id: infotrac.F90 4301 2022-10-20 11:57:21Z dcugnet $
[5099]2
[2320]3MODULE infotrac_phy
4
[5117]5  USE       lmdz_strings, ONLY: msg, fmsg, maxlen, cat, dispTable, int2str, bool2str, strStack, strParse, strIdx
6  USE lmdz_readTracFiles, ONLY: trac_type, readTracersFiles, tracers, setGeneration, itZonIso, nzone, tran0, isoZone, &
[5098]7          delPhase, niso, getKey, isot_type, processIsotopes, isotope, maxTableWidth, iqIsoPha, nphas, ixIso, isoPhas, &
[5221]8          addPhase, iH2O, addKey, isoSelect, testTracersFiles, isoKeys, indexUpdate, iqWIsoPha, nbIso, ntiso, isoName, isoCheck, new2oldH2O
[5098]9  IMPLICIT NONE
[4046]10
[5098]11  PRIVATE
[2320]12
[5098]13  !=== FOR TRACERS:
14  PUBLIC :: init_infotrac_phy                             !--- Initialization of the tracers
15  PUBLIC :: tracers, type_trac                            !--- Full tracers database, tracers type keyword
16  PUBLIC :: nqtot, nbtr, nqo, nqCO2, nqtottr      !--- Main dimensions
17  PUBLIC :: conv_flg, pbl_flg                             !--- Convection & boundary layer activation keys
[5221]18  PUBLIC :: new2oldH2O                                    !--- For backwards compatibility in phyetat0
19   PUBLIC :: addPhase, delPhase                            !--- Add/remove the phase from the name of a tracer
[5098]20  PUBLIC :: nbtr_bin, nbtr_sulgas                         !--- Number of aerosols bins and sulfur gases for StratAer model
21  PUBLIC :: id_OCS_strat, id_SO2_strat, id_H2SO4_strat, id_BIN01_strat, id_TEST_strat
[2320]22
[5221]23  !===  FOR ISOTOPES: General
[5098]24  PUBLIC :: isot_type, nbIso                              !--- Derived type, full isotopes families database + nb of families
25  PUBLIC :: isoSelect, ixIso                              !--- Isotopes family selection tool + selected family index
26  !=== FOR ISOTOPES: Specific to water
[5221]27  PUBLIC :: iH2O                                          !--- Value of "ixIso" for "H2O" isotopes class
28   PUBLIC :: ivap, iliq, isol
[5098]29  !=== FOR ISOTOPES: Depending on the selected isotopes family
[5221]30  PUBLIC :: isotope                              !--- Selected isotopes database (argument of getKey)
31  PUBLIC :: isoKeys, isoName, isoZone, isoPhas            !--- Isotopes keys & names, tagging zones names, phases
32  PUBLIC :: niso, ntiso,nzone, nphas!--- Number of   "   "
33  PUBLIC :: itZonIso                                      !--- Index "it" in "isoName(1:niso)" = f(tagging idx, isotope idx)
34  PUBLIC :: iqIsoPha                                      !--- Index "iq" in "qx"              = f(isotope idx,   phase idx)
[5098]35  PUBLIC :: iqWIsoPha                                      !--- Same as iqIsoPha but with normal water phases
[4984]36
[5098]37  PUBLIC :: isoCheck                                      !--- Run isotopes checking routines
38  !=== FOR BOTH TRACERS AND ISOTOPES
39  PUBLIC :: getKey                                        !--- Get a key from "tracers" or "isotope"
[2320]40
[5098]41  !=== CONVENTIONS FOR TRACERS NUMBERS:
42  !  |--------------------+-----------------------+-----------------+---------------+----------------------------|
43  !  | water in different |    water tagging      |  water isotopes | other tracers | additional tracers moments |
[5221]44  !  | phases: H2O_[glsrb]  |      isotopes         |                 |               |  for higher order schemes  |
[5098]45  !  |--------------------+-----------------------+-----------------+---------------+----------------------------|
46  !  |                    |                       |                 |               |                            |
47  !  |<--     nqo      -->|<-- nqo*niso* nzone -->|<-- nqo*niso  -->|<--  nbtr   -->|<--        (nmom)        -->|
48  !  |                    |                                         |                                            |
49  !  |                    |<-- nqo*niso*(nzone+1)  =   nqo*ntiso -->|<--    nqtottr = nbtr + nmom             -->|
50  !  |                                                                              = nqtot - nqo*(ntiso+1)      |
51  !  |                                                                                                           |
52  !  |<--                        nqtrue  =  nbtr + nqo*(ntiso+1)                 -->|                            |
53  !  |                                                                                                           |
54  !  |<--                        nqtot   =  nqtrue + nmom                                                     -->|
55  !  |                                                                                                           |
56  !  |-----------------------------------------------------------------------------------------------------------|
57  !  NOTES FOR THIS TABLE:
58  !  * Used "niso", "nzone" and "ntiso" are components of "isotopes(ip)" for water (isotopes(ip)%parent == 'H2O'),
59  !    since water is so far the sole tracers family, except passive CO2, removed from the main tracers table.
60  !  * For water, "nqo" is equal to the more general field "isotopes(ip)%nphas".
61  !  * "niso", "nzone", "ntiso", "nphas" are defined for other isotopic tracers families, if any.
[5099]62
[5098]63  !=== DERIVED TYPE EMBEDDING MOST OF THE TRACERS-RELATED QUANTITIES (LENGTH: nqtot)
64  !    Each entry is accessible using "%" sign.
65  !  |-------------+------------------------------------------------------+-------------+------------------------+
66  !  |  entry      | Meaning                                              | Former name | Possible values        |
67  !  |-------------+------------------------------------------------------+-------------+------------------------+
68  !  | name        | Name (short)                                         | tname       |                        |
[5221]69  !  | keys        | key/val pairs accessible with "getKey" routine       | /           |                        |
70!  |gen0Name    | Name of the 1st generation ancestor                  | /           |                        |
[5098]71  !  | parent      | Name of the parent                                   | /           |                        |
72  !  | longName    | Long name (with adv. scheme suffix) for outputs      | ttext       |                        |
73  !  | type        | Type (so far: tracer or tag)                         | /           | tracer,tag             |
[5221]74  !  | phase       | Phases list ("g"as / "l"iquid / "s"olid             |             | [g|l|s|r|b]            |
75!  |             |              "r"(cloud) / "b"lowing)                 | /           |              |
[5098]76  !  | component   | Name(s) of the merged/cumulated section(s)           | /           | coma-separated names   |
77  !  | iGeneration | Generation (>=1)                                     | /           |                        |
78  !  | iqParent    | Index of the parent tracer                           | iqpere      | 1:nqtot                |
79  !  | iqDescen    | Indexes of the childs       (all generations)        | iqfils      | 1:nqtot                |
80  !  | nqDescen    | Number of the descendants   (all generations)        | nqdesc      | 1:nqtot                |
81  !  | nqChildren  | Number of childs            (1st generation only)    | nqfils      | 1:nqtot                |
[5221]82
83  !  | isAdvected  | Advected tracers flag (.TRUE. if iadv >= 0)          | /           | nqtrue  .TRUE. values  |
84  !  | isInPhysics | Tracers not extracted from the main table in physics | /           | nqtottr .TRUE. values  |
[5098]85  !  | iso_iGroup  | Isotopes group index in isotopes(:)                  | /           | 1:nbIso                |
86  !  | iso_iName   | Isotope  name  index in isotopes(iso_iGroup)%trac(:) | iso_indnum  | 1:niso                 |
87  !  | iso_iZone   | Isotope  zone  index in isotopes(iso_iGroup)%zone(:) | zone_num    | 1:nzone                |
88  !  | iso_iPhas   | Isotope  phase index in isotopes(iso_iGroup)%phas(:) | phase_num   | 1:nphas                |
89  !  +-------------+------------------------------------------------------+-------------+------------------------+
[5099]90
[5098]91  !=== DERIVED TYPE EMBEDDING MOST OF THE ISOTOPES-RELATED QUANTITIES (LENGTH: nbIso, NUMBER OF ISOTOPES FAMILIES)
92  !    Each entry is accessible using "%" sign.
93  !  |-----------------+--------------------------------------------------+--------------------+-----------------+
94  !  |  entry | length | Meaning                                          |    Former name     | Possible values |
95  !  |-----------------+--------------------------------------------------+--------------------+-----------------+
96  !  | parent          | Parent tracer (isotopes family name)             |                    |                 |
97  !  | keys   | niso   | Isotopes keys/values pairs list + number         |                    |                 |
98  !  | trac   | ntiso  | Isotopes + tagging tracers list + number         | / | ntraciso       |                 |
99  !  | zone   | nzone  | Geographic tagging zones   list + number         | / | ntraceurs_zone |                 |
[5221]100  !  | phase  | nphas  | Phases                     list + number         |                    | [g|l|s|r|b] 1:5  |
[5098]101  !  | iqIsoPha        | Index in "qx"           = f(name(1:ntiso)),phas) | iqiso              | 1:nqtot         |
[5221]102  !  | iqWIsoPha       | Index in "qx"           = f(name(1:ntiso+nqo)),phas) |   /              | 1:nqtot         |
[5098]103  !  | itZonIso        | Index in "trac(1:ntiso)"= f(zone, name(1:niso))  | index_trac         | 1:ntiso         |
104  !  +-----------------+--------------------------------------------------+--------------------+-----------------+
[4120]105
[5221]106  !=== INDICES FOR WATER
107   INTEGER, SAVE :: ivap, iliq, isol
108!$OMP THREADPRIVATE(ivap, iliq, isol)
109
110   !===DIMENSIONS OF THE TRACERS TABLES AND OTHER SCALAR VARIABLES
[5098]111  INTEGER, SAVE :: nqtot, &                     !--- Tracers nb in dynamics (incl. higher moments + H2O)
112          nbtr, &                     !--- Tracers nb in physics  (excl. higher moments + H2O)
113          nqo, &                     !--- Number of water phases
114          nqtottr, &                    !--- Number of tracers passed to phytrac (TO BE DELETED ?)
115          nqCO2                         !--- Number of tracers of CO2  (ThL)
116  CHARACTER(LEN = maxlen), SAVE :: type_trac                     !--- Keyword for tracers type(s)
117  !$OMP THREADPRIVATE(nqtot, nbtr, nqo, nqtottr, nqCO2, type_trac)
[4170]118
[5221]119  !===  VARIABLES FOR INCA
120  INTEGER, DIMENSION(:), SAVE, ALLOCATABLE :: &
121                    conv_flg, pbl_flg                           !--- Convection / boundary layer activation (nbtr)
[5098]122  !$OMP THREADPRIVATE(conv_flg, pbl_flg)
[4120]123
[4056]124  !=== SPECIFIC TO STRATOSPHERIC AEROSOLS (CK/OB)
[5098]125  INTEGER, SAVE :: nbtr_bin, nbtr_sulgas         !--- number of aerosols bins and sulfur gases for StratAer model
126  !$OMP THREADPRIVATE(nbtr_bin, nbtr_sulgas)
127  INTEGER, SAVE :: id_OCS_strat, id_SO2_strat, id_H2SO4_strat, id_BIN01_strat, id_TEST_strat
128  !$OMP THREADPRIVATE(id_OCS_strat, id_SO2_strat, id_H2SO4_strat, id_BIN01_strat, id_TEST_strat)
[3677]129
[4120]130CONTAINS
[2320]131
[5098]132  SUBROUTINE init_infotrac_phy
[5112]133    USE lmdz_ioipsl_getin_p, ONLY: getin_p
[5185]134    USE lmdz_reprobus_wrappers, ONLY: Init_chem_rep_trac
135    USE lmdz_cppkeys_wrapper, ONLY: CPPKEY_INCA, CPPKEY_STRATAER, CPPKEY_REPROBUS
[5111]136    USE lmdz_abort_physic, ONLY: abort_physic
[5118]137    USE lmdz_iniprint, ONLY: lunout, prt_level
[5128]138
[5185]139    USE lmdz_dimensions, ONLY: iim, jjm, llm, ndm
[5098]140    IMPLICIT NONE
141    !==============================================================================================================================
[5099]142
[5098]143    !   Auteur:  P. Le Van /L. Fairhead/F.Hourdin
144    !   -------
[5099]145
[5098]146    !   Modifications:
147    !   --------------
148    !   05/94: F.Forget      Modif special traceur
149    !   02/02: M-A Filiberti Lecture de traceur.def
150    !   01/22: D. Cugnet     Nouveaux tracer.def et tracer_*.def + encapsulation (types trac_type et isot_type)
[5099]151
[5098]152    !   Objet:
153    !   ------
154    !   GCM LMD nouvelle grille
[5099]155
[5098]156    !==============================================================================================================================
157    !   ... modification de l'integration de q ( 26/04/94 ) ....
158    !------------------------------------------------------------------------------------------------------------------------------
159    ! Declarations:
[3924]160
[5159]161
[5098]162    !------------------------------------------------------------------------------------------------------------------------------
163    ! Local variables
164    INTEGER, ALLOCATABLE :: hadv(:), vadv(:)                          !--- Horizontal/vertical transport scheme number
165    INTEGER, ALLOCATABLE :: had (:), hadv_inca(:), conv_flg_inca(:), &!--- Variables specific to INCA
166            vad (:), vadv_inca(:), pbl_flg_inca(:)
167    CHARACTER(LEN = 8), ALLOCATABLE :: solsym_inca(:)                   !--- Tracers names for INCA
168    INTEGER :: nqINCA
169    CHARACTER(LEN = maxlen), ALLOCATABLE :: tnames(:)
170    CHARACTER(LEN = 2) :: suff(9)                                !--- Suffixes for schemes of order 3 or 4 (Prather)
171    CHARACTER(LEN = 3) :: descrq(30)                               !--- Advection scheme description tags
[5221]172    CHARACTER(LEN = maxlen) :: msg1, texp, ttp                          !--- Strings for messages and expanded tracers type
[5098]173    INTEGER :: fType                                                  !--- Tracers description file type ; 0: none
174    !--- 1/2/3: "traceur.def"/"tracer.def"/"tracer_*.def"
175    INTEGER :: nqtrue                                                 !--- Tracers nb from tracer.def (no higher order moments)
176    INTEGER :: iad                                                    !--- Advection scheme number
[5221]177    INTEGER :: iq, jq, nt, im, nm                                 !--- Indexes and temporary variables
[5098]178    LOGICAL :: lerr, lInit
179    TYPE(trac_type), ALLOCATABLE, TARGET :: ttr(:)
180    TYPE(trac_type), POINTER :: t1, t(:)
[5221]181    CHARACTER(LEN = maxlen), ALLOCATABLE :: types_trac(:)  !--- Keywords for tracers type(s), parsed version
[2690]182
[5098]183    CHARACTER(LEN = *), PARAMETER :: modname = "init_infotrac_phy"
184    !------------------------------------------------------------------------------------------------------------------------------
185    ! Initialization :
186    !------------------------------------------------------------------------------------------------------------------------------
187    suff = ['x ', 'y ', 'z ', 'xx', 'xy', 'xz', 'yy', 'yz', 'zz']
188    descrq(1:30) = '   '
189    descrq(1:2) = ['LMV', 'BAK']
190    descrq(10:20) = ['VL1', 'VLP', 'FH1', 'FH2', 'VLH', '   ', 'PPM', 'PPS', 'PPP', '   ', 'SLP']
191    descrq(30) = 'PRA'
[4638]192
[5098]193    CALL getin_p('type_trac', type_trac)
194
195    lerr = strParse(type_trac, '|', types_trac, n = nt)
196    IF (nt > 1) THEN
[5082]197      IF (nt > 2) CALL abort_physic(modname, 'you need to modify type_trac, this version is not supported by lmdz', 1)
[5098]198      IF (nt == 2) type_trac = types_trac(2)
199    ENDIF
[4638]200
[5098]201    CALL msg('type_trac = "' // TRIM(type_trac) // '"', modname)
202    lInit = .NOT.ALLOCATED(tracers)
[4325]203
[5098]204    !##############################################################################################################################
205    IF(lInit) THEN                                                    !=== SKIPED IF ALREADY DONE IN dyn3d_common/infotrac  ####
206      !##############################################################################################################################
207      !--- MESSAGE ABOUT THE CHOSEN CONFIGURATION
208      msg1 = 'For type_trac = "' // TRIM(type_trac) // '":'
209      SELECT CASE(type_trac)
210      CASE('inca'); CALL msg(TRIM(msg1) // ' coupling with INCA chemistry model', modname)
211      CASE('inco'); CALL msg(TRIM(msg1) // ' coupling jointly with INCA and CO2 cycle', modname)
212      CASE('repr'); CALL msg(TRIM(msg1) // ' coupling with REPROBUS chemistry model', modname)
213      CASE('co2i'); CALL msg(TRIM(msg1) // ' you have chosen to run with CO2 cycle', modname)
214      CASE('coag'); CALL msg(TRIM(msg1) // ' tracers are treated for COAGULATION tests', modname)
215      CASE('lmdz'); CALL msg(TRIM(msg1) // ' tracers are treated in LMDZ only', modname)
216      CASE DEFAULT; CALL abort_physic(modname, 'type_trac=' // TRIM(type_trac) // ' not possible yet.', 1)
217      END SELECT
[4325]218
[5098]219      !--- COHERENCE TEST BETWEEN "type_trac" AND PREPROCESSING KEYS
220      SELECT CASE(type_trac)
[4389]221      CASE('inca', 'inco')
[5103]222        IF (.NOT. CPPKEY_INCA) THEN
[5098]223          CALL abort_physic(modname, 'You must add cpp key INCA and compile with INCA code', 1)
224        END IF
[4389]225      CASE('repr')
[5185]226        IF (.NOT. CPPKEY_REPROBUS) THEN
227          CALL abort_physic(modname, 'You must add cpp key REPROBUS and compile with REPROBUS code', 1)
228        END IF
[4389]229      CASE('coag')
[5098]230        IF (.NOT. CPPKEY_STRATAER) THEN
231          CALL abort_physic(modname, 'You must add cpp key StratAer and compile with StratAer code', 1)
232        END IF
233      END SELECT
234      !##############################################################################################################################
235    END IF
236    !##############################################################################################################################
[2690]237
[5098]238    nqCO2 = COUNT([type_trac == 'inco', type_trac == 'co2i'])
[4325]239
[5098]240    !==============================================================================================================================
[5221]241    ! 0) DETERMINE THE TYPE OF THE INPUT TRACERS DESCRIPTION FILE AND READ IT
[5098]242    !==============================================================================================================================
[5221]243    texp = type_trac                                                  !=== EXPANDED (WITH "|" SEPARATOR) "type_trac"
[5098]244    IF(texp == 'inco') texp = 'co2i|inca'
245    IF(texp /= 'lmdz') texp = 'lmdz|' // TRIM(texp)
[4389]246
[5221]247
[5098]248    IF(testTracersFiles(modname, texp, fType, lInit)) CALL abort_physic(modname, 'problem with tracers file(s)', 1)
[4500]249
[5098]250    ttp = type_trac; IF(fType /= 1) ttp = texp
[4389]251
[5098]252    !##############################################################################################################################
253    IF(lInit) THEN
254      IF(readTracersFiles(ttp, lRepr = type_trac=='repr')) CALL abort_physic(modname, 'problem with tracers file(s)', 1)
255    ELSE
[4389]256      CALL msg('No tracers description file(s) reading needed: already done in the dynamics', modname)
[5098]257    END IF
258    !##############################################################################################################################
[4325]259
[5221]260    !==============================================================================================================================
261! 1) Get various numbers: "nqtrue" (first order only tracers), "nqo" (water phases), 'nbtr' (tracers passed to physics), etc.
262!==============================================================================================================================
263   !---------------------------------------------------------------------------------------------------------------------------
264    IF(fType == 0) CALL abort_physic(modname, 'Missing "traceur.def", "tracer.def" or "tracer_<keyword>.def tracersfile.', 1)
[5098]265    !---------------------------------------------------------------------------------------------------------------------------
266    IF(fType == 1 .AND. ANY(['inca', 'inco']==type_trac) .AND. lInit) THEN  !=== FOUND OLD STYLE INCA "traceur.def"
267      !---------------------------------------------------------------------------------------------------------------------------
[5221]268      IF (CPPKEY_INCA) THEN
[5118]269      nqo = SIZE(tracers) - nqCO2
270      CALL Init_chem_inca_trac(nqINCA)                               !--- Get nqINCA from INCA
271      nbtr = nqINCA + nqCO2                                          !--- Number of tracers passed to phytrac
272      nqtrue = nbtr + nqo                                            !--- Total number of "true" tracers
273      IF(ALL([2, 3] /= nqo)) CALL abort_physic(modname, 'Only 2 or 3 water phases allowed ; found nqo=' // TRIM(int2str(nqo)), 1)
274      ALLOCATE(hadv(nqtrue), hadv_inca(nqINCA), conv_flg_inca(nqINCA), solsym_inca(nqINCA))
275      ALLOCATE(vadv(nqtrue), vadv_inca(nqINCA), pbl_flg_inca(nqINCA))
276      CALL init_transport(solsym_inca, conv_flg_inca, pbl_flg_inca, hadv_inca, vadv_inca)
277      ALLOCATE(ttr(nqtrue))
278      ttr(1:nqo + nqCO2) = tracers
279      ttr(1:nqo)%component = 'lmdz'
280      ttr(1 + nqo:nqCO2 + nqo)%component = 'co2i'
281      ttr(1 + nqo + nqCO2:nqtrue)%component = 'inca'
[5221]282      ttr(1 + nqo:nqtrue)%name = [('CO2     ', iq = 1, nqCO2), solsym_inca]
[5118]283      ttr(1 + nqo + nqCO2:nqtrue)%parent = tran0
284      ttr(1 + nqo + nqCO2:nqtrue)%phase = 'g'
285      lerr = getKey('hadv', had, ky = tracers(:)%keys)
286      lerr = getKey('vadv', vad, ky = tracers(:)%keys)
287      hadv(1:nqo + nqCO2) = had(:); hadv(1 + nqo + nqCO2:nqtrue) = hadv_inca
288      vadv(1:nqo + nqCO2) = vad(:); vadv(1 + nqo + nqCO2:nqtrue) = vadv_inca
289      CALL MOVE_ALLOC(FROM = ttr, TO = tracers)
290      DO iq = 1, nqtrue
291        t1 => tracers(iq)
292        CALL addKey('name', t1%name, t1%keys)
293        CALL addKey('component', t1%component, t1%keys)
294        CALL addKey('parent', t1%parent, t1%keys)
295        CALL addKey('phase', t1%phase, t1%keys)
296      END DO
297      IF(setGeneration(tracers)) CALL abort_physic(modname, 'See below', 1) !- SET FIELDS %iGeneration, %gen0Name
298      DEALLOCATE(had, hadv_inca, vad, vadv_inca, conv_flg_inca, pbl_flg_inca, solsym_inca)
[5221]299 END IF
[5098]300      !---------------------------------------------------------------------------------------------------------------------------
301    ELSE                                                              !=== OTHER CASES (OLD OR NEW FORMAT, NO INCA MODULE)
302      !---------------------------------------------------------------------------------------------------------------------------
[5221]303      nqtrue = SIZE(tracers)                                                                               !--- "true" tracers
304   nqo    =      COUNT(tracers(:)%component == 'lmdz' .AND. delPhase(tracers(:)%name)     == 'H2O')     !--- Water phases
305   nbtr = nqtrue-COUNT(tracers(:)%component == 'lmdz' .AND. delPhase(tracers(:)%gen0Name) == 'H2O')     !--- Passed to phytrac
306   nqCO2  =      COUNT( [type_trac == 'inco', type_trac == 'co2i'] )
307      IF (CPPKEY_INCA) THEN
308        nqINCA = COUNT(tracers(:)%component == 'inca')
309      END IF
310      IF(getKey('hadv', hadv, ky=tracers(:)%keys)) CALL abort_physic(modname, 'missing key "hadv"', 1)
311   IF(getKey('vadv', vadv, ky=tracers(:)%keys)) CALL abort_physic(modname, 'missing key "vadv"', 1)
[5098]312      !---------------------------------------------------------------------------------------------------------------------------
313    END IF
314    !---------------------------------------------------------------------------------------------------------------------------
[4325]315
[5098]316    !--- Transfert the number of tracers to Reprobus
[5185]317    IF (CPPKEY_REPROBUS) THEN
[5223]318      CALL Init_chem_rep_trac(nbtr, nqo, tracers(:)%name)                         !--- Transfert the number of tracers to Reprobus
[5185]319    END IF
[4325]320
[5098]321    !##############################################################################################################################
322    IF(lInit) THEN                                                    !=== SKIPED IF ALREADY DONE IN dyn3d_common/infotrac  ####
323      !##############################################################################################################################
[4325]324
[5098]325      !==============================================================================================================================
326      ! 2) Calculate nqtot, number of tracers needed (greater if advection schemes 20 or 30 have been chosen).
327      !==============================================================================================================================
328      DO iq = 1, nqtrue
329        IF(hadv(iq)<20 .OR. (ANY(hadv(iq)==[20, 30]) .AND. hadv(iq)==vadv(iq))) CYCLE
330        WRITE(msg1, '("The choice hadv=",i0,", vadv=",i0,a)')hadv(iq), vadv(iq), ' for "' // TRIM(tracers(iq)%name) // '" is not available'
331        CALL abort_physic(modname, TRIM(msg1), 1)
332      END DO
333      nqtot = COUNT(hadv< 20 .AND. vadv< 20) &                     !--- No additional tracer
334              + 4 * COUNT(hadv==20 .AND. vadv==20) &                     !--- 3  additional tracers
335              + 10 * COUNT(hadv==30 .AND. vadv==30)                       !--- 9  additional tracers
[4325]336
[5098]337      !--- More tracers due to the choice of advection scheme => assign total number of tracers
338      IF(nqtot /= nqtrue) THEN
339        CALL msg('The choice of advection scheme for one or more tracers makes it necessary to add tracers')
340        CALL msg('The number of true tracers is ' // TRIM(int2str(nqtrue)))
341        CALL msg('The total number of tracers needed is ' // TRIM(int2str(nqtot)))
342      END IF
[4325]343
[5098]344      !==============================================================================================================================
345      ! 3) Determine the advection scheme ; needed to compute the full tracers list, the long names, nqtot and %isAdvected
346      !==============================================================================================================================
347      ALLOCATE(ttr(nqtot))
348      jq = nqtrue + 1; tracers(:)%iadv = -1
349      DO iq = 1, nqtrue
350        t1 => tracers(iq)
[4325]351
[5098]352        !--- VERIFY THE CHOICE OF ADVECTION SCHEME
353        iad = -1
354        IF(hadv(iq)     ==    vadv(iq)) iad = hadv(iq)
355        IF(hadv(iq)==10 .AND. vadv(iq)==16) iad = 11
356        WRITE(msg1, '("Bad choice of advection scheme for ",a,": hadv = ",i0,", vadv = ",i0)')TRIM(t1%name), hadv(iq), vadv(iq)
357        IF(iad == -1) CALL abort_physic(modname, msg1, 1)
[4325]358
[5221]359        !--- SET FIELDS longName, isAdvected, isInPhysics
[5098]360        t1%longName = t1%name; IF(iad > 0) t1%longName = TRIM(t1%name) // descrq(iad)
361        t1%isAdvected = iad >= 0
[5221]362        t1%isInPhysics= delPhase(t1%gen0Name) /= 'H2O' .OR. t1%component /= 'lmdz' !=== MORE EXCEPTIONS ? CO2i, SURSAT CLOUD H2O
[5098]363        ttr(iq) = t1
[4325]364
[5098]365        !--- DEFINE THE HIGHER ORDER TRACERS, IF ANY
366        nm = 0
367        IF(iad == 20) nm = 3                                           !--- 2nd order scheme
368        IF(iad == 30) nm = 9                                           !--- 3rd order scheme
369        IF(nm == 0) CYCLE                                              !--- No higher moments
370        ttr(jq + 1:jq + nm) = t1
371        ttr(jq + 1:jq + nm)%name = [(TRIM(t1%name) // '-' // TRIM(suff(im)), im = 1, nm) ]
[5221]372        ttr(jq+1:jq+nm)%gen0Name    = [ (TRIM(t1%name)    //'-'//TRIM(suff(im)), im=1, nm) ]
[5098]373        ttr(jq + 1:jq + nm)%parent = [(TRIM(t1%parent) // '-' // TRIM(suff(im)), im = 1, nm) ]
374        ttr(jq + 1:jq + nm)%longName = [(TRIM(t1%longName) // '-' // TRIM(suff(im)), im = 1, nm) ]
[5221]375        ttr(jq + 1:jq + nm)%isAdvected = [(.FALSE., im=1, nm) ]
376      ttr(jq+1:jq+nm)%isInPhysics = [ (.FALSE., im = 1, nm) ]
[5098]377        jq = jq + nm
378      END DO
379      DEALLOCATE(hadv, vadv)
380      CALL MOVE_ALLOC(FROM = ttr, TO = tracers)
[4325]381
[5221]382      !--- SET FIELDS iqParent, iqDescen, nqDescen, nqChildren, iGeneration
383      IF(indexUpdate(tracers)) CALL abort_physic(modname, 'problem with tracers indices update', 1)
[4325]384
[5098]385      !##############################################################################################################################
386    END IF
387    !##############################################################################################################################
[4325]388
[5098]389    !##############################################################################################################################
390    IF(.NOT.lInit) THEN
391      !##############################################################################################################################
392      nqtot = SIZE(tracers)
393      !##############################################################################################################################
394    ELSE
395      !##############################################################################################################################
[4325]396
[5098]397      !=== READ PHYSICAL PARAMETERS FOR ISOTOPES
398      niso = 0; nzone = 0; nphas = nqo; ntiso = 0; isoCheck = .FALSE.
399      IF(processIsotopes()) CALL abort_physic(modname, 'Problem when processing isotopes parameters', 1)
[4325]400
[5098]401      !##############################################################################################################################
402    END IF
403    !##############################################################################################################################
404    !--- Convection / boundary layer activation for all tracers
[5221]405    IF(.NOT.ALLOCATED(conv_flg)) ALLOCATE(conv_flg(nbtr)); conv_flg(1:nbtr) = 1
406    IF(.NOT.ALLOCATED( pbl_flg)) ALLOCATE(pbl_flg(nbtr));  pbl_flg(1:nbtr) = 1
[4325]407
[5098]408    !--- Note: nqtottr can differ from nbtr when nmom/=0
409    nqtottr = nqtot - COUNT(delPhase(tracers%gen0Name) == 'H2O' .AND. tracers%component == 'lmdz')
410    IF(COUNT(tracers%iso_iName == 0) - COUNT(delPhase(tracers%name) == 'H2O' .AND. tracers%component == 'lmdz') /= nqtottr) &
411            CALL abort_physic(modname, 'problem with the computation of nqtottr', 1)
[4325]412
[5098]413    !=== DISPLAY THE RESULTS
414    CALL msg('nqo    = ' // TRIM(int2str(nqo)), modname)
415    CALL msg('nbtr   = ' // TRIM(int2str(nbtr)), modname)
416    CALL msg('nqtrue = ' // TRIM(int2str(nqtrue)), modname)
417    CALL msg('nqtot  = ' // TRIM(int2str(nqtot)), modname)
418    CALL msg('niso   = ' // TRIM(int2str(niso)), modname)
419    CALL msg('ntiso  = ' // TRIM(int2str(ntiso)), modname)
420    IF (CPPKEY_INCA) THEN
421      CALL msg('nqCO2  = ' // TRIM(int2str(nqCO2)), modname)
422      CALL msg('nqINCA = ' // TRIM(int2str(nqINCA)), modname)
423    END IF
424    t => tracers
[5221]425    CALL msg('Information stored in '//TRIM(modname)//' :', modname)
426    IF(dispTable('isssssssssiiiiiiii', ['iq  ', 'name', 'lNam', 'g0Nm', 'prnt', 'type', 'phas', 'comp', &
427            'isPh', 'isAd', 'iGen', 'iqPr', 'nqDe', 'nqCh', 'iGrp', 'iNam', 'iZon', 'iPha'], &
428            cat(t%name, t%longName, t%gen0Name, t%parent, t%type, t%phase, t%component, &
429                                                         bool2str(t%isInPhysics), bool2str(t%isAdvected)), &
[5098]430            cat([(iq, iq = 1, nqtot)], t%iGeneration, t%iqParent, t%nqDescen, t%nqChildren, t%iso_iGroup, &
431                    t%iso_iName, t%iso_iZone, t%iso_iPhase), nColMax = maxTableWidth, nHead = 2, sub = modname))   &
432            CALL abort_physic(modname, "problem with the tracers table content", 1)
433    IF(niso > 0) THEN
434      CALL msg('Where, for isotopes family "' // TRIM(isotope%parent) // '":', modname)
435      CALL msg('  isoKeys%name = ' // strStack(isoKeys%name), modname)
436      CALL msg('  isoName = ' // strStack(isoName), modname)
437      CALL msg('  isoZone = ' // strStack(isoZone), modname)
438      CALL msg('  isoPhas = ' // TRIM(isoPhas), modname)
439    ELSE
[4325]440      CALL msg('No isotopes identified.', modname)
[5098]441    END IF
[4325]442
443#ifdef ISOVERIF
444   CALL msg('iso_iName = '//strStack(int2str(PACK(tracers(:)%iso_iName, MASK=tracers(:)%iso_iGroup==iH2O))), modname)
445#endif
[5098]446    IF (CPPKEY_STRATAER) THEN
447      IF (type_trac == 'coag') THEN
448        nbtr_bin = COUNT([(tracers(iq)%name(1:3)=='BIN', iq = 1, nqtot)])
449        nbtr_sulgas = COUNT([(tracers(iq)%name(1:3)=='GAS', iq = 1, nqtot)])
450        tnames = PACK(tracers(:)%name, MASK = tracers(:)%isInPhysics)
451        id_BIN01_strat = strIdx(tnames, 'BIN01')
452        id_OCS_strat = strIdx(tnames, 'GASOCS')
453        id_SO2_strat = strIdx(tnames, 'GASSO2')
454        id_H2SO4_strat = strIdx(tnames, 'GASH2SO4')
455        id_TEST_strat = strIdx(tnames, 'GASTEST')
456        CALL msg('nbtr_bin       =' // TRIM(int2str(nbtr_bin)), modname)
457        CALL msg('nbtr_sulgas    =' // TRIM(int2str(nbtr_sulgas)), modname)
458        CALL msg('id_BIN01_strat =' // TRIM(int2str(id_BIN01_strat)), modname)
459        CALL msg('id_OCS_strat   =' // TRIM(int2str(id_OCS_strat)), modname)
460        CALL msg('id_SO2_strat   =' // TRIM(int2str(id_SO2_strat)), modname)
461        CALL msg('id_H2SO4_strat =' // TRIM(int2str(id_H2SO4_strat)), modname)
462        CALL msg('id_TEST_strat  =' // TRIM(int2str(id_TEST_strat)), modname)
463      END IF
464    END IF
465    CALL msg('end', modname)
[4056]466
[5098]467  END SUBROUTINE init_infotrac_phy
[2320]468
469END MODULE infotrac_phy
Note: See TracBrowser for help on using the repository browser.