Changeset 6179


Ignore:
Timestamp:
Apr 20, 2026, 9:52:01 AM (2 weeks ago)
Author:
evignon
Message:

petits changements d'initialisation des leads pour les nouvelles params

Location:
LMDZ6/trunk/libf/phylmd
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • LMDZ6/trunk/libf/phylmd/conf_phys_m.f90

    r6142 r6179  
    535535    CALL getin_p('amax_n', amax_n)
    536536
    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
    538540    CALL getin_p('amax_s', amax_s)
    539541
  • LMDZ6/trunk/libf/phylmd/limit_read_mod.f90

    r6177 r6179  
    259259
    260260       !GG
    261        IF (iflag_seaice==1) THEN
     261       IF (iflag_seaice==2) THEN
    262262             ALLOCATE(sih(klon), stat=ierr)
    263263             IF (ierr /= 0) CALL abort_physic(modname, 'PB in allocating sih',1)
     
    344344             IF (is_omp_master) CALL xios_recv_field("sst_limin",sst_mpi)
    345345             !GG
    346              IF (iflag_seaice == 1) THEN
     346             IF (iflag_seaice == 2) THEN
    347347               IF (is_omp_master) CALL xios_recv_field("sih_limin",sih_mpi)
    348348             ENDIF
     
    358358          CALL Scatter_omp(sst_mpi,sst)
    359359          !GG
    360           IF (iflag_seaice==1) THEN
     360          IF (iflag_seaice==2) THEN
    361361            CALL Scatter_omp(sih_mpi,sih)
    362362          ENDIF
     
    414414! GG
    415415! 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
    416419             IF (iflag_seaice>0) THEN
    417420               DO ii=1,klon_glo/2
     
    509512          CALL Scatter(sst_glo,sst)
    510513          !GG
    511           IF (iflag_seaice==1) THEN
     514          IF (iflag_seaice==2) THEN
    512515             CALL Scatter(sih_glo,sih)
    513516          END IF
Note: See TracChangeset for help on using the changeset viewer.