Changeset 6187
- Timestamp:
- Apr 23, 2026, 5:20:39 PM (11 days ago)
- Location:
- LMDZ6/trunk/libf
- Files:
-
- 8 edited
-
dynphy_lonlat/phylmd/etat0phys_netcdf.f90 (modified) (1 diff)
-
phylmd/dyn1d/scm.f90 (modified) (2 diffs)
-
phylmd/phyaqua_mod.f90 (modified) (2 diffs)
-
phylmd/phys_state_var_mod.F90 (modified) (2 diffs)
-
phylmd/physiq_mod.F90 (modified) (1 diff)
-
phylmd/physiqex_mod.F90 (modified) (1 diff)
-
phylmdiso/phyaqua_mod.F90 (modified) (2 diffs)
-
phylmdiso/physiq_mod.F90 (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
LMDZ6/trunk/libf/dynphy_lonlat/phylmd/etat0phys_netcdf.f90
r6124 r6187 137 137 !******************************************************************************* 138 138 CALL conf_phys 139 CALL phys_state_var_init (read_climoz)139 CALL phys_state_var_init 140 140 141 141 !--- Initial atmospheric CO2 conc. from .def file -
LMDZ6/trunk/libf/phylmd/dyn1d/scm.f90
r6085 r6187 223 223 integer :: nsrf 224 224 integer jcode 225 INTEGER read_climoz226 225 integer :: it_end ! iteration number of the last call 227 226 integer ecrit_slab_oc !1=ecrit,-1=lit,0=no file … … 413 412 d_q_nudge(:,:) = 0. 414 413 415 ! No ozone climatology need be read in this pre-initialization416 ! (phys_state_var_init is called again in physiq)417 read_climoz = 0418 414 nsw=6 419 415 420 call phys_state_var_init (read_climoz)416 call phys_state_var_init 421 417 422 418 if (ngrid.ne.klon) then -
LMDZ6/trunk/libf/phylmd/phyaqua_mod.f90
r6033 r6187 88 88 REAL phy_flic(nlon, year_len) 89 89 90 INTEGER, SAVE :: read_climoz = 0 ! read ozone climatology91 !$OMP THREADPRIVATE(read_climoz)92 93 90 ! ------------------------------------------------------------------------- 94 91 ! declaration pour l'appel a phyredem … … 148 145 CALL abort_physic(modname,abort_message,1) 149 146 END IF 150 CALL phys_state_var_init(read_climoz) 151 152 153 read_climoz = 0 147 CALL phys_state_var_init 148 149 154 150 day0 = 217. 155 151 day = day0 -
LMDZ6/trunk/libf/phylmd/phys_state_var_mod.F90
r6059 r6187 598 598 599 599 !====================================================================== 600 SUBROUTINE phys_state_var_init (read_climoz)600 SUBROUTINE phys_state_var_init 601 601 USE dimphy 602 602 USE aero_mod … … 608 608 USE indice_sol_mod 609 609 USE config_ocean_skin_m, ONLY: activate_ocean_skin 610 USE conf_phys_m , ONLY : read_climoz 610 611 USE surface_data, ONLY: type_ocean 611 612 IMPLICIT NONE 612 613 INTEGER, INTENT(IN):: read_climoz614 ! read ozone climatology615 ! Allowed values are 0, 1 and 2616 ! 0: do not read an ozone climatology617 ! 1: read a single ozone climatology that will be used day and night618 ! 2: read two ozone climatologies, the average day and night619 ! climatology and the daylight climatology620 621 613 622 614 PRINT*, 'is_initialized', is_initialized -
LMDZ6/trunk/libf/phylmd/physiq_mod.F90
r6183 r6187 1258 1258 CALL init_etat0_limit_unstruct 1259 1259 IF (.NOT. create_etat0_limit) CALL init_limit_read(days_elapsed) 1260 CALL phys_state_var_init (read_climoz)1260 CALL phys_state_var_init 1261 1261 CALL phys_output_var_init 1262 1262 IF (read_climoz>=1 .AND. create_etat0_limit .AND. grid_type==unstructured) & -
LMDZ6/trunk/libf/phylmd/physiqex_mod.F90
r5198 r6187 81 81 82 82 ! load initial conditions for physics (including the grid) 83 call phys_state_var_init (1)! some initializations, required before calling phyetat083 call phys_state_var_init ! some initializations, required before calling phyetat0 84 84 call phyetat0("startphy.nc", clesphy0, tabcntr0) 85 85 -
LMDZ6/trunk/libf/phylmdiso/phyaqua_mod.F90
r5927 r6187 103 103 REAL phy_flic(nlon, year_len) 104 104 105 INTEGER, SAVE :: read_climoz = 0 ! read ozone climatology106 !$OMP THREADPRIVATE(read_climoz)107 108 105 ! ------------------------------------------------------------------------- 109 106 ! declaration pour l'appel a phyredem … … 163 160 CALL abort_physic(modname,abort_message,1) 164 161 END IF 165 CALL phys_state_var_init(read_climoz) 166 167 168 read_climoz = 0 162 CALL phys_state_var_init 163 164 169 165 day0 = 217. 170 166 day = day0 -
LMDZ6/trunk/libf/phylmdiso/physiq_mod.F90
r6183 r6187 1339 1339 CALL init_etat0_limit_unstruct 1340 1340 IF (.NOT. create_etat0_limit) CALL init_limit_read(days_elapsed) 1341 CALL phys_state_var_init (read_climoz)1341 CALL phys_state_var_init 1342 1342 CALL phys_output_var_init 1343 1343 IF (read_climoz>=1 .AND. create_etat0_limit .AND. grid_type==unstructured) &
Note: See TracChangeset
for help on using the changeset viewer.
