Changeset 6124 for LMDZ6/trunk/libf/phylmd
- Timestamp:
- Mar 23, 2026, 11:31:30 PM (3 weeks ago)
- Location:
- LMDZ6/trunk/libf/phylmd
- Files:
-
- 2 edited
-
conf_phys_m.f90 (modified) (2 diffs)
-
physiq_mod.F90 (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
LMDZ6/trunk/libf/phylmd/conf_phys_m.f90
r6116 r6124 56 56 !$OMP THREADPRIVATE(alp_offset) 57 57 58 58 INTEGER, SAVE, protected:: read_climoz ! read ozone climatology 59 ! Allowed values are 0, 1 and 2 60 ! 0: do not read an ozone climatology 61 ! 1: read a single ozone climatology that will be used day and night 62 ! 2: read two ozone climatologies, the average day and night 63 ! climatology and the daylight climatology 64 !$OMP THREADPRIVATE(read_climoz) 59 65 60 66 CONTAINS 61 67 62 SUBROUTINE conf_phys ( read_climoz )68 SUBROUTINE conf_phys 63 69 64 70 USE compbl_mod_h … … 121 127 ! PC 122 128 ! Per-gas routing switches (Concentration "effective") 123 124 INTEGER, INTENT(OUT):: read_climoz ! read ozone climatology, OpenMP shared125 ! Allowed values are 0, 1 and 2126 ! 0: do not read an ozone climatology127 ! 1: read a single ozone climatology that will be used day and night128 ! 2: read two ozone climatologies, the average day and night129 ! climatology and the daylight climatology130 129 131 130 !----------------------------------------------------------------- -
LMDZ6/trunk/libf/phylmd/physiq_mod.F90
r6123 r6124 67 67 USE conf_phys_m , ONLY : aerosol_couple 68 68 USE conf_phys_m , ONLY : chemistry_couple 69 USE conf_phys_m , ONLY : flag_aerosol 69 USE conf_phys_m , ONLY : flag_aerosol, read_climoz 70 70 USE conf_phys_m , ONLY : flag_bc_internal_mixture 71 71 USE conf_phys_m , ONLY : solarlong0,alp_offset,flag_aer_feedback,flag_aerosol_strat … … 1063 1063 ! VARIABLES RELATED TO OZONE CLIMATOLOGIES 1064 1064 ! Note that pressure vectors are in Pa and in stricly ascending order 1065 INTEGER,SAVE :: read_climoz ! Read ozone climatology1066 ! Allowed values are 0, 1 and 21067 ! 0: do not read an ozone climatology1068 ! 1: read a single ozone climatology that will be used day and night1069 ! 2: read two ozone climatologies, the average day and night1070 ! climatology and the daylight climatology1071 1065 INTEGER,SAVE :: ncid_climoz ! NetCDF file identifier 1072 1066 REAL, ALLOCATABLE, SAVE :: press_cen_climoz(:) ! Pressure levels 1073 1067 REAL, ALLOCATABLE, SAVE :: press_edg_climoz(:) ! Edges of pressure intervals 1074 1068 REAL, ALLOCATABLE, SAVE :: time_climoz(:) ! Time vector 1075 !$OMP THREADPRIVATE( read_climoz,ncid_climoz, press_cen_climoz)1069 !$OMP THREADPRIVATE(ncid_climoz, press_cen_climoz) 1076 1070 !$OMP THREADPRIVATE(press_edg_climoz, time_climoz) 1077 1071 … … 1265 1259 ! 1266 1260 ! appel a la lecture du run.def physique 1267 CALL conf_phys ( read_climoz )1261 CALL conf_phys 1268 1262 1269 1263 CALL init_etat0_limit_unstruct
Note: See TracChangeset
for help on using the changeset viewer.
