Changeset 5489 for LMDZ6/branches/contrails/libf/phylmd/phys_output_mod.F90
- Timestamp:
- Jan 17, 2025, 6:16:25 PM (13 days ago)
- Location:
- LMDZ6/branches/contrails
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
LMDZ6/branches/contrails
- Property svn:mergeinfo changed
/LMDZ6/trunk merged: 5451,5458,5460,5463,5468-5487
- Property svn:mergeinfo changed
-
LMDZ6/branches/contrails/libf/phylmd/phys_output_mod.F90
r5450 r5489 7 7 USE phys_output_write_mod, ONLY : phys_output_write 8 8 REAL, DIMENSION(nfiles),SAVE :: ecrit_files 9 !$OMP THREADPRIVATE(ecrit_files) 10 9 11 10 12 ! Abderrahmane 12 2007 … … 139 141 REAL, DIMENSION(nfiles), SAVE :: phys_out_latmin = [ -90., -90., -90., -90., -90., -90., -90., -90., -90., -90.] 140 142 REAL, DIMENSION(nfiles), SAVE :: phys_out_latmax = [ 90., 90., 90., 90., 90., 90., 90., 90., 90., 90.] 143 !$OMP THREADPRIVATE(phys_out_regfkey,phys_out_lonmin,phys_out_lonmax,phys_out_latmin,phys_out_latmax) 144 141 145 REAL, DIMENSION(klev,2) :: Ahyb_bounds, Bhyb_bounds 142 146 REAL, DIMENSION(klev+1) :: lev_index … … 172 176 ALLOCATE(o_dtr_evapls(nqtot),o_dtr_ls(nqtot),o_dtr_trsp(nqtot)) 173 177 ALLOCATE(o_dtr_sscav(nqtot),o_dtr_sat(nqtot),o_dtr_uscav(nqtot)) 174 ALLOCATE(o_dtr_wet_c on(nqtot))178 ALLOCATE(o_dtr_wet_cv(nqtot), o_dtr_wet(nqtot)) 175 179 ALLOCATE(o_dtr_dry(nqtot),o_dtr_vdf(nqtot)) 176 180 IF (CPPKEY_STRATAER) THEN … … 513 517 itr = 0; itrb = 0 514 518 DO iq = 1, nqtot 515 IF(.NOT. (tracers(iq)%isAdvected .AND. tracers(iq)%isInPhysics)) CYCLE519 IF(.NOT.tracers(iq)%isInPhysics) CYCLE 516 520 itr = itr + 1 517 521 dn = 'd'//TRIM(tracers(iq)%name)//'_' … … 542 546 543 547 lnam = 'tracer convective wet deposition'//TRIM(tracers(iq)%longName) 544 tnam = TRIM(dn)//'wet_con'; o_dtr_wet_con (itr) = ctrl_out(flag, tnam, lnam, "-", [('',i=1,nfiles)]) 548 tnam = TRIM(dn)//'wet_cv'; o_dtr_wet_cv (itr) = ctrl_out(flag, tnam, lnam, "-", [('',i=1,nfiles)]) 549 lnam = 'tracer total wet deposition'//TRIM(tracers(iq)%longName) 550 tnam = TRIM(dn)//'wet'; o_dtr_wet (itr) = ctrl_out(flag, tnam, lnam, "-", [('',i=1,nfiles)]) 545 551 lnam = 'tracer tendency dry deposition'//TRIM(tracers(iq)%longName) 546 552 tnam = 'cum'//TRIM(dn)//'dry'; o_dtr_dry (itr) = ctrl_out(flag, tnam, lnam, "-", [('',i=1,nfiles)]) … … 636 642 637 643 ! DO iq=1,nqtot 638 ! IF(.NOT. (tracers(iq)%isAdvected .AND. tracers(iq)%isInPhysics)) CYCLE644 ! IF(.NOT.tracers(iq)%isInPhysics) CYCLE 639 645 ! WRITE(*,'(a,i1,a,10i3)')'trac(',iq,')%flag = ',o_trac(iq)%flag 640 646 ! WRITE(*,'(a,i1,a)')'trac(',iq,')%name = '//TRIM(o_trac(iq)%name)
Note: See TracChangeset
for help on using the changeset viewer.