Changeset 5237 for LMDZ6/trunk
- Timestamp:
- Oct 13, 2024, 8:10:20 PM (2 months ago)
- Location:
- LMDZ6/trunk/libf
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
LMDZ6/trunk/libf/dyn3d_common/infotrac.F90
r5216 r5237 3 3 MODULE infotrac 4 4 5 USE strings_mod, ONLY: msg, maxlen, cat, dispTable, int2str, bool2str, strStack, strParse, strCount 6 USE readTracFiles_mod, ONLY: readTracersFiles, maxTableWidth, isot_type, addPhase, addKey, iH2O, & 7 indexUpdate, trac_type, testTracersFiles, processIsotopes, tracers, delPhase, getKey, tran0, & 8 isoKeys, isoName, isoZone, isoPhas, isoSelect, itZonIso, nbIso, isotope, & 9 niso, ntiso, nzone, nphas, iqIsoPha, ixIso, isoCheck 5 USE strings_mod, ONLY: msg, fmsg, maxlen, cat, dispTable, int2str, bool2str, strStack, strParse 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 10 9 USE readTracFiles_mod, ONLY: new2oldH2O, newHNO3, oldHNO3 11 12 10 IMPLICIT NONE 13 11 … … 32 30 PUBLIC :: isoKeys, isoName, isoZone, isoPhas !--- Isotopes keys & names, tagging zones names, phases 33 31 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)32 PUBLIC :: itZonIso !--- index "it" in "isoName(1:niso)" = f(tagging idx, isotope idx) 33 PUBLIC :: iqIsoPha !--- index "iq" in "qx" = f(isotope idx, phase idx) 36 34 PUBLIC :: isoCheck !--- Run isotopes checking routines 37 35 !=== FOR BOTH TRACERS AND ISOTOPES … … 120 118 SUBROUTINE init_infotrac 121 119 USE control_mod, ONLY: planet_type 122 #ifdef CPP_PARA123 USE parallel_lmdz, ONLY: is_master124 #endif125 120 #ifdef REPROBUS 126 121 USE CHEM_REP, ONLY: Init_chem_rep_trac … … 158 153 INTEGER :: nqINCA 159 154 #endif 160 #ifndef CPP_PARA161 LOGICAL :: is_master=.TRUE.162 #endif163 155 CHARACTER(LEN=2) :: suff(9) !--- Suffixes for schemes of order 3 or 4 (Prather) 164 156 CHARACTER(LEN=3) :: descrq(30) !--- Advection scheme description tags 165 CHARACTER(LEN=maxlen) :: msg1, texp, ttp , nam, val!--- Strings for messages and expanded tracers type157 CHARACTER(LEN=maxlen) :: msg1, texp, ttp !--- Strings for messages and expanded tracers type 166 158 INTEGER :: fType !--- Tracers description file type ; 0: none 167 159 !--- 1/2/3: "traceur.def"/"tracer.def"/"tracer_*.def" 168 160 INTEGER :: nqtrue !--- Tracers nb from tracer.def (no higher order moments) 169 161 INTEGER :: iad !--- Advection scheme number 170 INTEGER :: iq, jq, nt, im, nm , ig!--- Indexes and temporary variables162 INTEGER :: iq, jq, nt, im, nm !--- Indexes and temporary variables 171 163 LOGICAL :: lerr, ll 172 164 TYPE(trac_type), ALLOCATABLE, TARGET :: ttr(:) … … 183 175 descrq(30) = 'PRA' 184 176 185 CALL msg('type_trac = "'//TRIM(type_trac)//'"', modname, is_master)186 IF (strCount(type_trac, '|', nt)) CALL abort_gcm(modname, 'Could''nt parse the "type_trac" string with delimiter "|"', 1)187 IF(nt >= 3) CALL abort_gcm(modname, 'you need to modify type_trac, this version is not supported by lmdz', 1)188 IF(strParse(type_trac, '|', types_trac, n=nt)) CALL abort_gcm(modname, "couldn't parse "//'"type_trac"', 1)189 IF(nt == 2) type_trac = types_trac(2) ! TO BE DELETED SOON177 lerr=strParse(type_trac, '|', types_trac, n=nt) 178 IF (nt .GT. 1) THEN 179 IF (nt .GT. 2) CALL abort_gcm(modname, 'you need to modify type_trac, this version is not supported by lmdz', 1) 180 IF (nt .EQ. 2) type_trac=types_trac(2) 181 ENDIF 190 182 191 183 CALL msg('type_trac = "'//TRIM(type_trac)//'"', modname) 192 184 193 !############################################################################################################################## 194 IF(is_master) THEN !=== SKIPED IF ALREADY DONE 195 !############################################################################################################################## 185 196 186 !--- MESSAGE ABOUT THE CHOSEN CONFIGURATION 197 187 msg1 = 'For type_trac = "'//TRIM(type_trac)//'":' … … 221 211 #endif 222 212 END SELECT 223 !############################################################################################################################## 224 END IF 225 !############################################################################################################################## 213 214 nqCO2 = COUNT( [type_trac == 'inco', type_trac == 'co2i'] ) 226 215 227 216 !============================================================================================================================== … … 233 222 IF(testTracersFiles(modname, texp, fType, .TRUE.)) CALL abort_gcm(modname, 'problem with tracers file(s)',1) 234 223 ttp = type_trac; IF(fType /= 1) ttp = texp 224 IF(readTracersFiles(ttp, lRepr=type_trac=='repr')) CALL abort_gcm(modname, 'problem with tracers file(s)',1) 225 226 !============================================================================================================================== 227 ! 1) Get various numbers: "nqtrue" (first order only tracers), "nqo" (water phases), 'nbtr' (tracers passed to physics), etc. 228 !============================================================================================================================== 235 229 !--------------------------------------------------------------------------------------------------------------------------- 236 230 IF(fType == 0) CALL abort_gcm(modname, 'Missing "traceur.def", "tracer.def" or "tracer_<keyword>.def tracers file.',1) 237 231 !--------------------------------------------------------------------------------------------------------------------------- 238 IF(fType == 1 .AND. ANY(['inca', 'inco'] == type_trac)) & !=== FOUND OLD STYLE INCA "traceur.def" 239 CALL abort_gcm(modname, 'retro-compatibility with old-style INCA traceur.def files has been disabled.', 1) 240 !--------------------------------------------------------------------------------------------------------------------------- 241 242 IF(readTracersFiles(ttp, lRepr=type_trac == 'repr')) CALL abort_gcm(modname, 'problem with tracers file(s)',1) 243 244 !============================================================================================================================== 245 ! 1) Get various numbers: "nqtrue" (first order only tracers), "nqo" (water phases), 'nbtr' (tracers passed to physics), etc. 246 !============================================================================================================================== 232 IF(fType == 1 .AND. ANY(['inca', 'inco'] == type_trac)) THEN !=== FOUND OLD STYLE INCA "traceur.def" 233 !--------------------------------------------------------------------------------------------------------------------------- 234 #ifdef INCA 235 nqo = SIZE(tracers) - nqCO2 236 CALL Init_chem_inca_trac(nqINCA) !--- Get nqINCA from INCA 237 nbtr = nqINCA + nqCO2 !--- Number of tracers passed to phytrac 238 nqtrue = nbtr + nqo !--- Total number of "true" tracers 239 IF(ALL([2,3] /= nqo)) CALL abort_gcm(modname, 'Only 2 or 3 water phases allowed ; found nqo='//TRIM(int2str(nqo)), 1) 240 ALLOCATE(hadv(nqtrue), hadv_inca(nqINCA), conv_flg_inca(nqINCA), solsym_inca(nqINCA)) 241 ALLOCATE(vadv(nqtrue), vadv_inca(nqINCA), pbl_flg_inca(nqINCA)) 242 CALL init_transport(solsym_inca, conv_flg_inca, pbl_flg_inca, hadv_inca, vadv_inca) 243 ALLOCATE(ttr(nqtrue)) 244 ttr(1:nqo+nqCO2) = tracers 245 ttr(1 : nqo )%component = 'lmdz' 246 ttr(1+nqo:nqCO2+nqo )%component = 'co2i' 247 ttr(1+nqo+nqCO2:nqtrue)%component = 'inca' 248 ttr(1+nqo :nqtrue)%name = [('CO2 ', iq=1, nqCO2), solsym_inca] 249 ttr(1+nqo+nqCO2:nqtrue)%parent = tran0 250 ttr(1+nqo+nqCO2:nqtrue)%phase = 'g' 251 lerr = getKey('hadv', had, ky=tracers(:)%keys) 252 lerr = getKey('vadv', vad, ky=tracers(:)%keys) 253 hadv(1:nqo+nqCO2) = had(:); hadv(1+nqo+nqCO2:nqtrue) = hadv_inca 254 vadv(1:nqo+nqCO2) = vad(:); vadv(1+nqo+nqCO2:nqtrue) = vadv_inca 255 CALL MOVE_ALLOC(FROM=ttr, TO=tracers) 256 DO iq = 1, nqtrue 257 t1 => tracers(iq) 258 CALL addKey('name', t1%name, t1%keys) 259 CALL addKey('component', t1%component, t1%keys) 260 CALL addKey('parent', t1%parent, t1%keys) 261 CALL addKey('phase', t1%phase, t1%keys) 262 END DO 263 IF(setGeneration(tracers)) CALL abort_gcm(modname,'See above',1) !- SET FIELDS %iGeneration, %gen0Name 264 DEALLOCATE(had, hadv_inca, vad, vadv_inca, conv_flg_inca, pbl_flg_inca, solsym_inca) 265 #endif 266 !--------------------------------------------------------------------------------------------------------------------------- 267 ELSE !=== OTHER CASES (OLD OR NEW FORMAT, NO INCA MODULE) 268 !--------------------------------------------------------------------------------------------------------------------------- 247 269 nqtrue = SIZE(tracers) !--- "true" tracers 248 270 nqo = COUNT(tracers(:)%component == 'lmdz' .AND. delPhase(tracers(:)%name) == 'H2O') !--- Water phases … … 252 274 nqINCA = COUNT(tracers(:)%component == 'inca') 253 275 #endif 254 #ifdef REPROBUS255 CALL Init_chem_rep_trac(nbtr, nqo, tracers(:)%name) !--- Transfert the number of tracers to Reprobus256 #endif257 258 !==============================================================================================================================259 ! 2) Calculate nqtot, number of tracers needed (greater if advection schemes 20 or 30 have been chosen).260 !==============================================================================================================================261 276 IF(getKey('hadv', hadv, ky=tracers(:)%keys)) CALL abort_gcm(modname, 'missing key "hadv"', 1) 262 277 IF(getKey('vadv', vadv, ky=tracers(:)%keys)) CALL abort_gcm(modname, 'missing key "vadv"', 1) 278 !--------------------------------------------------------------------------------------------------------------------------- 279 END IF 280 !--------------------------------------------------------------------------------------------------------------------------- 281 282 #ifdef REPROBUS 283 CALL Init_chem_rep_trac(nbtr, nqo, tracers(:)%name) 284 #endif 285 286 !============================================================================================================================== 287 ! 2) Calculate nqtot, number of tracers needed (greater if advection schemes 20 or 30 have been chosen). 288 !============================================================================================================================== 263 289 DO iq = 1, nqtrue 264 290 IF( hadv(iq)<20 .OR. (ANY(hadv(iq)==[20,30]) .AND. hadv(iq)==vadv(iq)) ) CYCLE … … 335 361 336 362 !=== TEST ADVECTION SCHEME 337 DO iq = 1, nqtot ; t1 => tracers(iq) 338 iad = t1%iadv 339 ig = t1%iGeneration 340 nam = t1%name 341 val = 'iadv='//TRIM(int2str(iad)) 363 DO iq = 1, nqtot ; t1 => tracers(iq); iad = t1%iadv 342 364 343 365 !--- ONLY TESTED VALUES FOR TRACERS FOR NOW: iadv = 14, 10 (and 0 for non-transported tracers) 344 IF(ALL([10,14,0] /= iad)) CALL abort_gcm(modname, TRIM(val)//' has not been tested yet ; 10 or 14 only are allowed !', 1) 345 346 !--- ONLY TESTED VALUES SO FAR FOR PARENTS HAVING CHILDREN: iadv = 14, 10 (PARENTS: TRACERS OF GENERATION 0) 347 IF(ALL([10,14] /= iad) .AND. ig == 0 .AND. ANY(tracers(:)%parent==nam)) & 348 CALL abort_gcm(modname, TRIM(val)//' is not implemented for parents ; 10 or 14 only are allowed !', 1) 349 350 !--- ONLY TESTED VALUES SO FAR FOR DESCENDANTS (TRACERS OF GENERATION > 0): iadv = 10 ; WATER VAPOUR: iadv = 14 351 lerr = iad /= 10 .AND. ig > 0; IF(lerr) tracers(iq)%iadv = 10 352 CALL msg('WARNING! '//TRIM(val)// ' not implemented for children. Setting iadv=10 for "'//TRIM(nam)//'"', modname, lerr) 353 lerr = iad == 14 .AND. nam /= addPhase('H2O','g'); IF(lerr) tracers(iq)%iadv = 10 354 CALL msg('WARNING! '//TRIM(val)//' is valid for water vapour only. Setting iadv=10 for "'//TRIM(nam)//'"', modname, lerr) 366 IF(ALL([10,14,0] /= iad)) & 367 CALL abort_gcm(modname, 'Not tested for iadv='//TRIM(int2str(iad))//' ; 10 or 14 only are allowed !', 1) 368 369 !--- ONLY TESTED VALUES FOR PARENTS HAVING CHILDS FOR NOW: iadv = 14, 10 (PARENTS: TRACERS OF GENERATION 1) 370 IF(ALL([10,14] /= iad) .AND. t1%iGeneration == 1 .AND. ANY(tracers(:)%iGeneration > 1)) & 371 CALL abort_gcm(modname, 'iadv='//TRIM(int2str(iad))//' not implemented for parents ; 10 or 14 only are allowed !', 1) 372 373 !--- ONLY TESTED VALUES FOR CHILDS FOR NOW: iadv = 10 (CHILDS: TRACERS OF GENERATION GREATER THAN 1) 374 IF(fmsg('WARNING ! iadv='//TRIM(int2str(iad))//' not implemented for childs. Setting iadv=10 for "'//TRIM(t1%name)//'"',& 375 modname, iad /= 10 .AND. t1%iGeneration > 1)) t1%iadv = 10 376 377 !--- ONLY VALID SCHEME NUMBER FOR WATER VAPOUR: iadv = 14 378 ll = t1%name /= addPhase('H2O','g') 379 IF(fmsg('WARNING ! iadv=14 is valid for water vapour only. Setting iadv=10 for "'//TRIM(t1%name)//'".', & 380 modname, iad == 14 .AND. ll)) t1%iadv = 10 355 381 END DO 356 382 … … 360 386 361 387 !--- Convection / boundary layer activation for all tracers 362 IF(.NOT.ALLOCATED(conv_flg))ALLOCATE(conv_flg(nbtr)); conv_flg(1:nbtr) = 1363 IF(.NOT.ALLOCATED( pbl_flg))ALLOCATE( pbl_flg(nbtr)); pbl_flg(1:nbtr) = 1388 ALLOCATE(conv_flg(nbtr)); conv_flg(1:nbtr) = 1 389 ALLOCATE( pbl_flg(nbtr)); pbl_flg(1:nbtr) = 1 364 390 365 391 !--- Note: nqtottr can differ from nbtr when nmom/=0 … … 369 395 370 396 !=== DISPLAY THE RESULTS 371 IF(.NOT.is_master) RETURN372 397 CALL msg('nqo = '//TRIM(int2str(nqo)), modname) 373 398 CALL msg('nbtr = '//TRIM(int2str(nbtr)), modname) … … 388 413 t%iso_iName, t%iso_iZone, t%iso_iPhase), nColMax=maxTableWidth, nHead=2, sub=modname)) & 389 414 CALL abort_gcm(modname, "problem with the tracers table content", 1) 390 CALL msg('No isotopes identified.', modname, nbIso == 0) 391 IF(nbIso == 0) RETURN 392 CALL msg('For isotopes family "H2O":', modname) 415 IF(niso > 0) THEN 416 CALL msg('Where, for isotopes family "'//TRIM(isotope%parent)//'":', modname) 393 417 CALL msg(' isoKeys%name = '//strStack(isoKeys%name), modname) 394 CALL msg(' isoName = '//strStack(isoName), modname) 395 CALL msg(' isoZone = '//strStack(isoZone), modname) 396 CALL msg(' isoPhas = '// TRIM(isoPhas), modname) 418 CALL msg(' isoName = '//strStack(isoName), modname) 419 CALL msg(' isoZone = '//strStack(isoZone), modname) 420 CALL msg(' isoPhas = '//TRIM(isoPhas), modname) 421 ELSE 422 CALL msg('No isotopes identified.', modname) 423 END IF 424 CALL msg('end', modname) 397 425 398 426 END SUBROUTINE init_infotrac -
LMDZ6/trunk/libf/phylmd/infotrac_phy.F90
r5234 r5237 3 3 MODULE infotrac_phy 4 4 5 USE strings_mod, ONLY: msg, maxlen, cat, dispTable, int2str, bool2str, strStack, strParse, strCount, strIdx 6 USE readTracFiles_mod, ONLY: readTracersFiles, maxTableWidth, isot_type, addPhase, addKey, iH2O, & 7 indexUpdate, trac_type, testTracersFiles, processIsotopes, tracers, delPhase, getKey, tran0, & 8 isoKeys, isoName, isoZone, isoPhas, isoSelect, itZonIso, nbIso, isotope, & 9 niso, ntiso, nzone, nphas, iqWIsoPha, iqIsoPha, ixIso, isoCheck 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 10 9 USE readTracFiles_mod, ONLY: new2oldH2O 11 10 IMPLICIT NONE … … 136 135 SUBROUTINE init_infotrac_phy 137 136 USE ioipsl_getin_p_mod, ONLY: getin_p 138 USE mod_phys_lmdz_para, ONLY: is_master, is_omp_master139 137 #ifdef REPROBUS 140 138 USE CHEM_REP, ONLY: Init_chem_rep_trac … … 198 196 199 197 CALL getin_p('type_trac',type_trac) 200 CALL msg('type_trac = "'//TRIM(type_trac)//'"', modname, is_master) 201 IF(strCount(type_trac, '|', nt)) CALL abort_physic(modname, 'Could''nt parse the "type_trac" string with delimiter "|"', 1) 202 IF(nt >= 3) CALL abort_physic(modname, 'you need to modify type_trac, this version is not supported by lmdz', 1) 203 IF(strParse(type_trac, '|', types_trac, n=nt)) CALL abort_physic(modname, "couldn't parse "//'"type_trac"', 1) 204 IF(nt == 2) type_trac = types_trac(2) ! TO BE DELETED SOON 198 199 lerr=strParse(type_trac, '|', types_trac, n=nt) 200 IF (nt .GT. 1) THEN 201 IF (nt .GT. 2) CALL abort_physic(modname, 'you need to modify type_trac, this version is not supported by lmdz', 1) 202 IF (nt .EQ. 2) type_trac=types_trac(2) 203 ENDIF 205 204 206 205 CALL msg('type_trac = "'//TRIM(type_trac)//'"', modname) … … 208 207 209 208 !############################################################################################################################## 210 IF(lInit .AND. is_master) THEN !=== SKIPED IF ALREADY DONE209 IF(lInit) THEN !=== SKIPED IF ALREADY DONE IN dyn3d_common/infotrac #### 211 210 !############################################################################################################################## 212 211 !--- MESSAGE ABOUT THE CHOSEN CONFIGURATION … … 241 240 !############################################################################################################################## 242 241 242 nqCO2 = COUNT( [type_trac == 'inco', type_trac == 'co2i'] ) 243 243 244 !============================================================================================================================== 244 245 ! 0) DETERMINE THE TYPE OF THE INPUT TRACERS DESCRIPTION FILE AND READ IT … … 247 248 IF(texp == 'inco') texp = 'co2i|inca' 248 249 IF(texp /= 'lmdz') texp = 'lmdz|'//TRIM(texp) 249 IF(testTracersFiles(modname, texp, fType, lInit .AND.is_master)) CALL abort_physic(modname, 'problem with tracers file(s)',1)250 IF(testTracersFiles(modname, texp, fType, lInit)) CALL abort_physic(modname, 'problem with tracers file(s)',1) 250 251 ttp = type_trac; IF(fType /= 1) ttp = texp 252 253 !############################################################################################################################## 254 IF(lInit) THEN 255 IF(readTracersFiles(ttp, lRepr=type_trac=='repr')) CALL abort_physic(modname, 'problem with tracers file(s)',1) 256 ELSE 257 CALL msg('No tracers description file(s) reading needed: already done in the dynamics', modname) 258 END IF 259 !############################################################################################################################## 260 261 !============================================================================================================================== 262 ! 1) Get various numbers: "nqtrue" (first order only tracers), "nqo" (water phases), 'nbtr' (tracers passed to physics), etc. 263 !============================================================================================================================== 251 264 !--------------------------------------------------------------------------------------------------------------------------- 252 265 IF(fType == 0) CALL abort_physic(modname, 'Missing "traceur.def", "tracer.def" or "tracer_<keyword>.def tracers file.',1) 253 266 !--------------------------------------------------------------------------------------------------------------------------- 254 IF(fType == 1 .AND. ANY(['inca', 'inco'] == type_trac)) & !=== FOUND OLD STYLE INCA "traceur.def" 255 CALL abort_physic(modname, 'retro-compatibility with old-style INCA traceur.def files has been disabled.', 1) 256 !--------------------------------------------------------------------------------------------------------------------------- 257 258 !############################################################################################################################## 259 IF(lInit) THEN 260 IF(readTracersFiles(ttp, lRepr=type_trac == 'repr')) CALL abort_physic(modname, 'problem with tracers file(s)',1) 261 END IF 262 CALL msg('No tracers description file(s) reading needed: already done', modname, .NOT.lInit.AND.is_master) 263 !############################################################################################################################## 264 265 !============================================================================================================================== 266 ! 1) Get various numbers: "nqtrue" (first order only tracers), "nqo" (water phases), 'nbtr' (tracers passed to physics), etc. 267 !============================================================================================================================== 267 IF(fType == 1 .AND. ANY(['inca', 'inco'] == type_trac) .AND. lInit) THEN !=== FOUND OLD STYLE INCA "traceur.def" 268 !--------------------------------------------------------------------------------------------------------------------------- 269 #ifdef INCA 270 nqo = SIZE(tracers) - nqCO2 271 CALL Init_chem_inca_trac(nqINCA) !--- Get nqINCA from INCA 272 nbtr = nqINCA + nqCO2 !--- Number of tracers passed to phytrac 273 nqtrue = nbtr + nqo !--- Total number of "true" tracers 274 IF(ALL([2,3] /= nqo)) CALL abort_physic(modname, 'Only 2 or 3 water phases allowed ; found nqo='//TRIM(int2str(nqo)), 1) 275 ALLOCATE(hadv(nqtrue), hadv_inca(nqINCA), conv_flg_inca(nqINCA), solsym_inca(nqINCA)) 276 ALLOCATE(vadv(nqtrue), vadv_inca(nqINCA), pbl_flg_inca(nqINCA)) 277 CALL init_transport(solsym_inca, conv_flg_inca, pbl_flg_inca, hadv_inca, vadv_inca) 278 ALLOCATE(ttr(nqtrue)) 279 ttr(1:nqo+nqCO2) = tracers 280 ttr(1 : nqo )%component = 'lmdz' 281 ttr(1+nqo:nqCO2+nqo )%component = 'co2i' 282 ttr(1+nqo+nqCO2:nqtrue)%component = 'inca' 283 ttr(1+nqo :nqtrue)%name = [('CO2 ', iq=1, nqCO2), solsym_inca] 284 ttr(1+nqo+nqCO2:nqtrue)%parent = tran0 285 ttr(1+nqo+nqCO2:nqtrue)%phase = 'g' 286 lerr = getKey('hadv', had, ky=tracers(:)%keys) 287 lerr = getKey('vadv', vad, ky=tracers(:)%keys) 288 hadv(1:nqo+nqCO2) = had(:); hadv(1+nqo+nqCO2:nqtrue) = hadv_inca 289 vadv(1:nqo+nqCO2) = vad(:); vadv(1+nqo+nqCO2:nqtrue) = vadv_inca 290 CALL MOVE_ALLOC(FROM=ttr, TO=tracers) 291 DO iq = 1, nqtrue 292 t1 => tracers(iq) 293 CALL addKey('name', t1%name, t1%keys) 294 CALL addKey('component', t1%component, t1%keys) 295 CALL addKey('parent', t1%parent, t1%keys) 296 CALL addKey('phase', t1%phase, t1%keys) 297 END DO 298 IF(setGeneration(tracers)) CALL abort_physic(modname,'See below',1) !- SET FIELDS %iGeneration, %gen0Name 299 DEALLOCATE(had, hadv_inca, vad, vadv_inca, conv_flg_inca, pbl_flg_inca, solsym_inca) 300 #endif 301 !--------------------------------------------------------------------------------------------------------------------------- 302 ELSE !=== OTHER CASES (OLD OR NEW FORMAT, NO INCA MODULE) 303 !--------------------------------------------------------------------------------------------------------------------------- 268 304 nqtrue = SIZE(tracers) !--- "true" tracers 269 305 nqo = COUNT(tracers(:)%component == 'lmdz' .AND. delPhase(tracers(:)%name) == 'H2O') !--- Water phases … … 273 309 nqINCA = COUNT(tracers(:)%component == 'inca') 274 310 #endif 311 IF(getKey('hadv', hadv, ky=tracers(:)%keys)) CALL abort_physic(modname, 'missing key "hadv"', 1) 312 IF(getKey('vadv', vadv, ky=tracers(:)%keys)) CALL abort_physic(modname, 'missing key "vadv"', 1) 313 !--------------------------------------------------------------------------------------------------------------------------- 314 END IF 315 !--------------------------------------------------------------------------------------------------------------------------- 316 275 317 #ifdef REPROBUS 276 318 CALL Init_chem_rep_trac(nbtr, nqo, tracers(:)%name) !--- Transfert the number of tracers to Reprobus … … 284 326 ! 2) Calculate nqtot, number of tracers needed (greater if advection schemes 20 or 30 have been chosen). 285 327 !============================================================================================================================== 286 IF(getKey('hadv', hadv, ky=tracers(:)%keys)) CALL abort_physic(modname, 'missing key "hadv"', 1)287 IF(getKey('vadv', vadv, ky=tracers(:)%keys)) CALL abort_physic(modname, 'missing key "vadv"', 1)288 328 DO iq = 1, nqtrue 289 329 IF( hadv(iq)<20 .OR. (ANY(hadv(iq)==[20,30]) .AND. hadv(iq)==vadv(iq)) ) CYCLE … … 371 411 CALL abort_physic(modname, 'problem with the computation of nqtottr', 1) 372 412 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 #ifdef INCA 421 CALL msg('nqCO2 = '//TRIM(int2str(nqCO2)), modname) 422 CALL msg('nqINCA = '//TRIM(int2str(nqINCA)), modname) 423 #endif 424 t => tracers 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)), & 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 440 CALL msg('No isotopes identified.', modname) 441 END IF 442 443 #ifdef ISOVERIF 444 CALL msg('iso_iName = '//strStack(int2str(PACK(tracers(:)%iso_iName, MASK=tracers(:)%iso_iGroup==iH2O))), modname) 445 #endif 373 446 #ifdef CPP_StratAer 374 447 IF (type_trac == 'coag') THEN … … 381 454 id_H2SO4_strat = strIdx(tnames, 'GASH2SO4') 382 455 id_TEST_strat = strIdx(tnames, 'GASTEST' ) 383 END IF384 #endif385 386 !=== DISPLAY THE RESULTS387 IF(.NOT.is_master) RETURN388 CALL msg('nqo = '//TRIM(int2str(nqo)), modname)389 CALL msg('nbtr = '//TRIM(int2str(nbtr)), modname)390 CALL msg('nqtrue = '//TRIM(int2str(nqtrue)), modname)391 CALL msg('nqtot = '//TRIM(int2str(nqtot)), modname)392 CALL msg('niso = '//TRIM(int2str(niso)), modname)393 CALL msg('ntiso = '//TRIM(int2str(ntiso)), modname)394 #ifdef INCA395 CALL msg('nqCO2 = '//TRIM(int2str(nqCO2)), modname)396 CALL msg('nqINCA = '//TRIM(int2str(nqINCA)), modname)397 #endif398 t => tracers399 CALL msg('Information stored in '//TRIM(modname)//': ', modname)400 IF(dispTable('isssssssssiiiiiiii', ['iq ', 'name', 'lNam', 'g0Nm', 'prnt', 'type', 'phas', 'comp', &401 'isPh', 'isAd', 'iGen', 'iqPr', 'nqDe', 'nqCh', 'iGrp', 'iNam', 'iZon', 'iPha'], &402 cat(t%name, t%longName, t%gen0Name, t%parent, t%type, t%phase, t%component, &403 bool2str(t%isInPhysics), bool2str(t%isAdvected)), &404 cat([(iq, iq=1, nqtot)], t%iGeneration, t%iqParent, t%nqDescen, t%nqChildren, t%iso_iGroup, &405 t%iso_iName, t%iso_iZone, t%iso_iPhase), nColMax=maxTableWidth, nHead=2, sub=modname)) &406 CALL abort_physic(modname, "problem with the tracers table content", 1)407 CALL msg('No isotopes identified.', modname, nbIso == 0)408 IF(nbIso == 0) RETURN409 CALL msg('For isotopes family "H2O":', modname)410 CALL msg(' isoKeys%name = '//strStack(isoKeys%name), modname)411 CALL msg(' isoName = '//strStack(isoName), modname)412 CALL msg(' isoZone = '//strStack(isoZone), modname)413 CALL msg(' isoPhas = '// TRIM(isoPhas), modname)414 415 #ifdef ISOVERIF416 CALL msg('iso_iName = '//strStack(int2str(PACK(tracers(:)%iso_iName, MASK=tracers(:)%iso_iGroup==iH2O))), modname)417 #endif418 #ifdef CPP_StratAer419 IF (type_trac == 'coag') THEN420 456 CALL msg('nbtr_bin ='//TRIM(int2str(nbtr_bin )), modname) 421 457 CALL msg('nbtr_sulgas ='//TRIM(int2str(nbtr_sulgas )), modname) … … 427 463 END IF 428 464 #endif 465 CALL msg('end', modname) 429 466 430 467 END SUBROUTINE init_infotrac_phy
Note: See TracChangeset
for help on using the changeset viewer.