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