Changeset 6179
- Timestamp:
- Apr 20, 2026, 9:52:01 AM (2 weeks ago)
- Location:
- LMDZ6/trunk/libf/phylmd
- Files:
-
- 2 edited
-
conf_phys_m.f90 (modified) (1 diff)
-
limit_read_mod.f90 (modified) (5 diffs)
Legend:
- Unmodified
- Added
- Removed
-
LMDZ6/trunk/libf/phylmd/conf_phys_m.f90
r6142 r6179 535 535 CALL getin_p('amax_n', amax_n) 536 536 537 amax_s = 0.95 537 !amax_s = 0.95 538 ! by default, set amax_s (south) = amax_n (north) for consistency in LAM simulations 539 amax_s = amax_n 538 540 CALL getin_p('amax_s', amax_s) 539 541 -
LMDZ6/trunk/libf/phylmd/limit_read_mod.f90
r6177 r6179 259 259 260 260 !GG 261 IF (iflag_seaice== 1) THEN261 IF (iflag_seaice==2) THEN 262 262 ALLOCATE(sih(klon), stat=ierr) 263 263 IF (ierr /= 0) CALL abort_physic(modname, 'PB in allocating sih',1) … … 344 344 IF (is_omp_master) CALL xios_recv_field("sst_limin",sst_mpi) 345 345 !GG 346 IF (iflag_seaice == 1) THEN346 IF (iflag_seaice == 2) THEN 347 347 IF (is_omp_master) CALL xios_recv_field("sih_limin",sih_mpi) 348 348 ENDIF … … 358 358 CALL Scatter_omp(sst_mpi,sst) 359 359 !GG 360 IF (iflag_seaice== 1) THEN360 IF (iflag_seaice==2) THEN 361 361 CALL Scatter_omp(sih_mpi,sih) 362 362 ENDIF … … 414 414 ! GG 415 415 ! Account for leads 416 ! pay attention, amax_n and amax_s stands for sea ice cover threshold values different 417 ! for the northern and southern hemispheres. 418 ! This is misleading for LAM simulations 416 419 IF (iflag_seaice>0) THEN 417 420 DO ii=1,klon_glo/2 … … 509 512 CALL Scatter(sst_glo,sst) 510 513 !GG 511 IF (iflag_seaice== 1) THEN514 IF (iflag_seaice==2) THEN 512 515 CALL Scatter(sih_glo,sih) 513 516 END IF
Note: See TracChangeset
for help on using the changeset viewer.
