Ignore:
Timestamp:
Jul 22, 2024, 9:29:09 PM (4 months ago)
Author:
abarral
Message:

Replace most uses of CPP_DUST by the corresponding logical defined in lmdz_cppkeys_wrapper.F90
Convert several files from .F to .f90 to allow Dust to compile w/o rrtm/ecrad
Create lmdz_yoerad.f90
(lint) Remove "!" on otherwise empty line

File:
1 edited

Legend:

Unmodified
Added
Removed
  • LMDZ6/branches/Amaury_dev/libf/phylmd/stratocu_if.F90

    r5082 r5099  
    1010! ou une forte inversion est presente
    1111! On peut dire qu'il represente la convection peu profonde
    12 !
     12
    1313! Arguments:
    1414! klon-----input-I- nombre de points a traiter
     
    1616! pplay----input-R- pression au milieu de chaque couche (en Pa)
    1717! t--------input-R- temperature (K)
    18 !
     18
    1919! weak_inversion-----logical
    2020!======================================================================
    21 !
     21
    2222! Arguments:
    23 !
     23
    2424    INTEGER, INTENT(IN)                       :: klon,klev
    2525    REAL, DIMENSION(klon, klev+1), INTENT(IN) ::  paprs
     
    2929   
    3030    REAL, DIMENSION(klon), INTENT(OUT)  :: weak_inversion
    31 !
     31
    3232! Quelques constantes et options:
    33 !
     33
    3434    REAL seuil_inversion ! au-dela l'inversion est consideree trop faible
    3535!    PARAMETER (seuil=-0.1)
    3636
    37 !
    3837! Variables locales:
    39 !
     38
    4039    INTEGER i, k, invb(klon)
    4140    REAL zl2(klon)
     
    4443    INCLUDE "YOMCST.h"
    4544
    46 !
    4745! Chercher la zone d'inversion forte
    48 !
    4946
    5047    DO i = 1, klon
     
    6562    ENDDO
    6663
     64! Introduire une diffusion:
    6765
    68 !
    69 ! Introduire une diffusion:
    70 !
    7166    DO i = 1, klon
    7267       IF ( (pctsrf(i,is_oce) < 0.5) .OR. &
Note: See TracChangeset for help on using the changeset viewer.