Changeset 4627 for LMDZ6/trunk/libf/phylmd
- Timestamp:
- Jul 13, 2023, 3:31:36 PM (16 months ago)
- Location:
- LMDZ6/trunk/libf/phylmd
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
LMDZ6/trunk/libf/phylmd/physiq_mod.F90
r4626 r4627 1729 1729 1730 1730 ! CALL create_climoz(read_climoz) 1731 IF (.NOT. create_etat0_limit) CALL init_aero_fromfile(flag_aerosol ) !! initialise aero from file for XIOS interpolation (unstructured_grid)1731 IF (.NOT. create_etat0_limit) CALL init_aero_fromfile(flag_aerosol, aerosol_couple) !! initialise aero from file for XIOS interpolation (unstructured_grid) 1732 1732 IF (.NOT. create_etat0_limit) CALL init_readaerosolstrato(flag_aerosol_strat) !! initialise aero strato from file for XIOS interpolation (unstructured_grid) 1733 1733 -
LMDZ6/trunk/libf/phylmd/readaerosol_mod.F90
r4619 r4627 173 173 174 174 175 SUBROUTINE init_aero_fromfile(flag_aerosol )175 SUBROUTINE init_aero_fromfile(flag_aerosol, aerosol_couple) 176 176 USE netcdf 177 177 USE mod_phys_lmdz_para … … 179 179 USE lmdz_xios 180 180 IMPLICIT NONE 181 181 182 INTEGER, INTENT(IN) :: flag_aerosol 183 LOGICAL, INTENT(IN) :: aerosol_couple 184 182 185 REAL,ALLOCATABLE :: lat_src(:) 183 186 REAL,ALLOCATABLE :: lon_src(:) … … 189 192 190 193 IF (using_xios) THEN 191 IF (flag_aerosol>0 .AND. grid_type==unstructured ) THEN194 IF (flag_aerosol>0 .AND. grid_type==unstructured .AND. (.NOT. aerosol_couple) ) THEN 192 195 193 196 IF (is_omp_root) THEN
Note: See TracChangeset
for help on using the changeset viewer.