Ignore:
Timestamp:
Mar 8, 2023, 3:54:13 PM (15 months ago)
Author:
evignon
Message:

mise des seuils d'activation des params de SSO sous flag
pour faciliter les tests de sensibilité à venir

File:
1 edited

Legend:

Unmodified
Added
Removed
  • LMDZ6/trunk/libf/phylmd/physiq_mod.F90

    r4449 r4458  
    975975
    976976    REAL picefra(klon,klev)
    977     REAL zrel_mount(klon)
     977    REAL zrel_oro(klon)
    978978    !IM cf. AM 081204 END
    979979    !
     
    45314531       DO i=1,klon
    45324532          itest(i)=0
    4533           zrel_mount(i)=zstd(i)/(max(zsig(i),1.E-8)*sqrt(cell_area(i)))
    4534           !zrel_mount: relative mountain height wrt relief explained by mean slope
    4535           ! -> condition on zrel_mount can deactivate the drag on tilted planar terrains
     4533          zrel_oro(i)=zstd(i)/(max(zsig(i),1.E-8)*sqrt(cell_area(i)))
     4534          !zrel_oro: relative mountain height wrt relief explained by mean slope
     4535          ! -> condition on zrel_oro can deactivate the drag on tilted planar terrains
    45364536          !    such as ice sheets (work by V. Wiener)
    4537           IF (((zpic(i)-zmea(i)).GT.100.).AND.(zstd(i).GT.10.0).AND.(zrel_mount(i).GE.zrel_mount_t)) THEN
     4537          ! zpmm_orodr_t and zstd_orodr_t are activation thresholds set by F. Lott to
     4538          ! earn computation time but they are not physical.
     4539          IF (((zpic(i)-zmea(i)).GT.zpmm_orodr_t).AND.(zstd(i).GT.zstd_orodr_t).AND.(zrel_oro(i).GE.zrel_oro_t)) THEN
    45384540             itest(i)=1
    45394541             igwd=igwd+1
     
    45844586       DO i=1,klon
    45854587          itest(i)=0
    4586           !zrel_mount: relative mountain height wrt relief explained by mean slope
    4587           ! -> condition on zrel_mount can deactivate the lifting on tilted planar terrains
     4588          !zrel_oro: relative mountain height wrt relief explained by mean slope
     4589          ! -> condition on zrel_oro can deactivate the lifting on tilted planar terrains
    45884590          !    such as ice sheets (work by V. Wiener)
    4589           zrel_mount(i)=zstd(i)/(max(zsig(i),1.E-8)*sqrt(cell_area(i)))
    4590           IF (((zpic(i)-zmea(i)).GT.100.).AND.(zrel_mount(i).GE.zrel_mount_t)) THEN
     4591          zrel_oro(i)=zstd(i)/(max(zsig(i),1.E-8)*sqrt(cell_area(i)))
     4592          IF (((zpic(i)-zmea(i)).GT.zpmm_orolf_t).AND.(zrel_oro(i).GE.zrel_oro_t)) THEN
    45914593             itest(i)=1
    45924594             igwd=igwd+1
     
    47784780! car on peut s'attendre a ce que les petites echelles produisent aussi de la TKE
    47794781! Mais attention, cela ne va pas dans le sens de la conservation de l'energie!
    4780           IF (zstd(i).GT.1.0) THEN
     4782          IF ((zstd(i).GT.1.0) .AND.(zrel_oro(i).GE.zrel_oro_t)) THEN
    47814783             itest(i)=1
    47824784             igwd=igwd+1
     
    47904792       DO i=1,klon
    47914793          itest(i)=0
    4792         IF (((zpic(i)-zmea(i)).GT.100.).AND.(zstd(i).GT.10.0)) THEN
     4794        IF (((zpic(i)-zmea(i)).GT.zpmm_orodr_t).AND.(zstd(i).GT.zstd_orodr_t).AND.(zrel_oro(i).GE.zrel_oro_t)) THEN
    47934795             itest(i)=1
    47944796             igwd=igwd+1
Note: See TracChangeset for help on using the changeset viewer.