Changeset 6198
- Timestamp:
- Apr 23, 2026, 5:32:23 PM (11 days ago)
- Location:
- LMDZ6/trunk/libf
- Files:
-
- 4 edited
-
phylmd/conf_phys_m.f90 (modified) (1 diff)
-
phylmd/open_climoz_m.f90 (modified) (3 diffs)
-
phylmd/physiq_mod.F90 (modified) (1 diff)
-
phylmdiso/physiq_mod.F90 (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
LMDZ6/trunk/libf/phylmd/conf_phys_m.f90
r6197 r6198 69 69 70 70 LOGICAL, SAVE, protected:: adjust_tropopause 71 ! tropopause adjustement required 71 72 !$OMP THREADPRIVATE(adjust_tropopause) 72 73 -
LMDZ6/trunk/libf/phylmd/open_climoz_m.f90
r6196 r6198 9 9 !------------------------------------------------------------------------------- 10 10 ! 11 SUBROUTINE open_climoz(ncid, press_in_cen, time_in , adjust)11 SUBROUTINE open_climoz(ncid, press_in_cen, time_in) 12 12 ! 13 13 !------------------------------------------------------------------------------- 14 14 USE netcdf95, ONLY: nf95_open, nf95_close, nf95_gw_var, nf95_inq_varid 15 15 USE netcdf, ONLY: nf90_nowrite 16 use conf_phys_m, only: ok_daily_climoz 16 use conf_phys_m, only: ok_daily_climoz, adjust_tropopause 17 17 use mod_phys_lmdz_omp_data, only: is_omp_root 18 18 USE mod_phys_lmdz_mpi_data, ONLY: is_mpi_root … … 30 30 REAL, allocatable, intent(out):: press_in_cen(:) !--- at cells centers 31 31 REAL, allocatable, intent(out):: time_in(:) !--- records times, in days since Jan. 1st 32 LOGICAL, INTENT(IN) :: adjust !--- tropopause adjustement required33 32 ! pressure levels press_in_cen/edg are in Pa a,d strictly ascending order. 34 33 ! time_in is only used for monthly files (14 records) … … 77 76 78 77 !--- MESSAGE ABOUT OPTIONAL STRETCHING FOR TROPOPAUSES MATCHING 79 IF(adjust ) THEN78 IF(adjust_tropopause) THEN 80 79 WRITE(lunout,*)TRIM(sub)//': Adjusting O3 field to match gcm tropopause.' 81 80 ELSE -
LMDZ6/trunk/libf/phylmd/physiq_mod.F90
r6197 r6198 2102 2102 2103 2103 IF (read_climoz >= 1) CALL open_climoz(ncid_climoz, press_cen_climoz, & 2104 time_climoz , adjust_tropopause)2104 time_climoz) 2105 2105 ! 2106 2106 !IM betaCRF -
LMDZ6/trunk/libf/phylmdiso/physiq_mod.F90
r6197 r6198 2241 2241 2242 2242 IF (read_climoz >= 1) CALL open_climoz(ncid_climoz, press_cen_climoz, & 2243 time_climoz , adjust_tropopause)2243 time_climoz) 2244 2244 ! 2245 2245 !IM betaCRF
Note: See TracChangeset
for help on using the changeset viewer.
