Changeset 5084 for LMDZ6/trunk/libf/phylmd/create_etat0_unstruct_mod.F90
- Timestamp:
- Jul 19, 2024, 6:40:44 PM (4 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
LMDZ6/trunk/libf/phylmd/create_etat0_unstruct_mod.F90
r5075 r5084 23 23 SUBROUTINE init_create_etat0_unstruct 24 24 USE lmdz_xios 25 USE lmdz_netcdf, ONLY: NF90_NOWRITE,nf90_close,nf90_noerr,nf90_open25 USE netcdf 26 26 USE mod_phys_lmdz_para 27 27 IMPLICIT NONE … … 126 126 CALL xios_recv_field("qs",qsol_mpi) 127 127 CALL xios_recv_field("mask",zmasq_mpi) 128 IF (landice_opt <2) CALL xios_recv_field("landice",lic_mpi)128 IF (landice_opt .LT. 2) CALL xios_recv_field("landice",lic_mpi) 129 129 ENDIF 130 130 CALL scatter_omp(tsol_mpi,tsol) 131 131 CALL scatter_omp(qsol_mpi,qsol) 132 132 CALL scatter_omp(zmasq_mpi,zmasq) 133 IF (landice_opt <2) CALL scatter_omp(lic_mpi,lic)133 IF (landice_opt .LT. 2) CALL scatter_omp(lic_mpi,lic) 134 134 135 135 radsol(:) = 0.0 … … 143 143 144 144 pctsrf(:,:) = 0 145 IF (landice_opt <2) THEN145 IF (landice_opt .LT. 2) THEN 146 146 pctsrf(:,is_lic)=lic 147 147 WHERE(pctsrf(:,is_lic)<EPSFRA) pctsrf(:,is_lic)=0. … … 180 180 !--- The ocean and sea-ice fractions are not changed. 181 181 !--- This option is only available if landice_opt<2. 182 IF (landice_opt <2) THEN182 IF (landice_opt .LT. 2) THEN 183 183 no_ter_antartique=.FALSE. 184 184 CALL getin_p('no_ter_antartique',no_ter_antartique)
Note: See TracChangeset
for help on using the changeset viewer.