Ignore:
Timestamp:
Jul 23, 2024, 3:29:36 PM (8 weeks ago)
Author:
abarral
Message:

Handle CPP_INLANDSIS in lmdz_cppkeys_wrapper.F90
Remove obsolete key wrgrads_thermcell, _ADV_HALO, _ADV_HALLO, isminmax
Remove redundant uses of CPPKEY_INCA (thanks acozic)
Remove obsolete misc/write_field.F90
Remove unused ioipsl_* wrappers
Remove calls to WriteField_u with wrong signature
Convert .F -> .[fF]90
(lint) uppercase fortran operators
[note: 1d and iso still broken - working on it]

File:
1 edited

Legend:

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

    r5082 r5103  
    22CONTAINS
    33
    4 subroutine thermcell_qsat(klon,active,pplev,ztemp,zqta,zqsat)
     4SUBROUTINE thermcell_qsat(klon,active,pplev,ztemp,zqta,zqsat)
    55implicit none
    66
     
    3737
    3838RLvCp = RLVTT/RCPD
    39 tout_converge=.false.
    40 afaire(:)=.false.
     39tout_converge=.FALSE.
     40afaire(:)=.FALSE.
    4141DT(:)=0.
    4242
     
    4848!====================================================================
    4949
    50 do ig=1,klon
     50DO ig=1,klon
    5151   if (active(ig)) then
    5252               Tbef(ig)=ztemp(ig)
     
    6060               zqsat(ig)=qsatbef
    6161     endif
    62 enddo
     62END DO
    6363
    6464! Traitement du cas ou il y a condensation mais faible
    6565! On ne condense pas mais on dit que le qsat est le qta
    66 do ig=1,klon
     66DO ig=1,klon
    6767   if (active(ig)) then
    6868      if (0.<abs(DT(ig)).and.abs(DT(ig))<=DDT0) then
     
    7070      endif
    7171   endif
    72 enddo
     72END DO
    7373
    74 do iter=1,10
     74DO iter=1,10
    7575    afaire(:)=abs(DT(:))>DDT0
    7676    do ig=1,klon
     
    9393               endif
    9494    enddo
    95 enddo
     95END DO
    9696
    9797return
Note: See TracChangeset for help on using the changeset viewer.