Changeset 10
- Timestamp:
- Jan 31, 2022, 9:24:36 PM (3 years ago)
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
readTracFiles_mod.f90
r7 r10 182 182 IF(test(cumulTracers(dBase, tracs), lerr)) RETURN 183 183 END IF 184 WHERE(tracs%gen0Name(1:3) == 'H2O') tracs%isH2Ofamily=.TRUE. !--- Set %isH2Ofamily: belongs to H2O family184 WHERE(tracs%gen0Name(1:3) /= 'H2O') tracs%isInPhysics=.TRUE. !--- Set %isInPhysics: passed to physics 185 185 CALL setDirectKeys(tracs) !--- Set %iqParent, %iqDescen, %nqDescen, %nqChilds 186 186 END IF … … 1372 1372 1373 1373 END MODULE readTracFiles_mod 1374 -
trac_types_mod.F90
r6 r10 23 23 INTEGER :: iadv = 10 !--- Advection scheme used 24 24 INTEGER :: iGeneration = -1 !--- Generation number (>=0) 25 LOGICAL :: isAdvected = .FALSE. !--- "true" tracers: iadv > 0 . COUNT( isAdvected)=nqtrue26 LOGICAL :: is H2Ofamily = .FALSE. !--- H2O tracers/isotopes/tags. COUNT(.NOT.isH2Ofamily)=nqtottr25 LOGICAL :: isAdvected = .FALSE. !--- "true" tracers: iadv > 0. COUNT(isAdvected )=nqtrue 26 LOGICAL :: isInPhysics = .TRUE. !--- "true" tracers: in tr_seri. COUNT(isInPhysics)=nqtottr 27 27 INTEGER :: iqParent = 0 !--- Parent index 28 28 INTEGER, ALLOCATABLE :: iqDescen(:) !--- Descendants index (in growing generation order)
Note: See TracChangeset
for help on using the changeset viewer.