Changeset 5536 for LMDZ6/branches/contrails/libf/misc
- Timestamp:
- Feb 12, 2025, 10:08:35 AM (10 days ago)
- Location:
- LMDZ6/branches/contrails
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
LMDZ6/branches/contrails
- Property svn:mergeinfo changed
/LMDZ6/trunk reverse-merged: 5451,5458,5460,5463,5468-5487
- Property svn:mergeinfo changed
-
LMDZ6/branches/contrails/libf/misc/readTracFiles_mod.f90
r5489 r5536 61 61 INTEGER :: nqChildren = 0 !--- Number of children (first generation) 62 62 INTEGER :: iadv = 10 !--- Advection scheme used 63 LOGICAL :: isAdvected = .FALSE. !--- "true" tracers: iadv > 0. COUNT(isAdvected )=nqtrue 63 64 LOGICAL :: isInPhysics = .TRUE. !--- "true" tracers: in tr_seri. COUNT(isInPhysics)=nqtottr 64 65 INTEGER :: iso_iGroup = 0 !--- Isotopes group index in isotopes(:) … … 184 185 ! * The "keys" component (of type keys_type) is in principle enough to store everything we could need. 185 186 ! But some variables are stored as direct-access keys to make the code more readable and because they are used often. 186 ! * Most of the direct-access keys are set in this module, but some are not (longName, iadv and isInPhysicsfor now).187 ! * Most of the direct-access keys are set in this module, but some are not (longName, iadv, isAdvected for now). 187 188 ! * Some of the direct-access keys must be updated (using the routine "setDirectKeys") is a subset of "tracers(:)" 188 189 ! is extracted: the indexes are no longer valid for a subset (examples: iqParent, iqDescen). -
LMDZ6/branches/contrails/libf/misc/wxios_mod.F90
r5489 r5536 188 188 ! On boucle sur les traceurs pour les ajouter au groupe puis fixer les attributs 189 189 DO iq = 1, nqtot 190 IF(.NOT. tracers(iq)%isInPhysics) CYCLE190 IF(.NOT.(tracers(iq)%isAdvected .AND. tracers(iq)%isInPhysics)) CYCLE 191 191 dn = 'd'//TRIM(tracers(iq)%name)//'_' 192 192 … … 241 241 ! On boucle sur les traceurs pour les ajouter au groupe puis fixer les attributs 242 242 DO iq = 1, nqtot 243 IF(.NOT. tracers(iq)%isInPhysics) CYCLE243 IF(.NOT.(tracers(iq)%isAdvected .AND. tracers(iq)%isInPhysics)) CYCLE 244 244 245 245 unt = "kg m-2"
Note: See TracChangeset
for help on using the changeset viewer.