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_alp.F90

    r5101 r5103  
    136136!------------Test sur le LCL des thermiques
    137137    do ig=1,ngrid
    138       ok_lcl(ig)=.false.
    139       if ( (pcon(ig) > pplay(ig,nlay-1)) .and. (pcon(ig) < pplay(ig,1)) ) ok_lcl(ig)=.true.
     138      ok_lcl(ig)=.FALSE.
     139      if ( (pcon(ig) > pplay(ig,nlay-1)) .and. (pcon(ig) < pplay(ig,1)) ) ok_lcl(ig)=.TRUE.
    140140    enddo
    141141
     
    199199
    200200!-----Calcul de la TKE transportée par les thermiques : therm_tke_max
    201    call thermcell_tke_transport(ngrid,nlay,ptimestep,fm0,entr0,  &  ! in
     201   CALL thermcell_tke_transport(ngrid,nlay,ptimestep,fm0,entr0,  &  ! in
    202202             rg,pplev,therm_tke_max)                               ! out
    203203!   print *,' thermcell_tke_transport -> '   !!jyg
     
    337337!!! fin nrlmd le 10/04/2012
    338338
    339 !      print*,'avant calcul ale et alp'
     339!      PRINT*,'avant calcul ale et alp'
    340340!calcul de ALE et ALP pour la convection
    341341      alp_bl(:)=0.
    342342      ale_bl(:)=0.
    343 !          print*,'ALE,ALP ,l,zw2(ig,l),ale_bl(ig),alp_bl(ig)'
     343!          PRINT*,'ALE,ALP ,l,zw2(ig,l),ale_bl(ig),alp_bl(ig)'
    344344      do l=1,nlay
    345345      do ig=1,ngrid
    346346           alp_bl(ig)=max(alp_bl(ig),0.5*rhobarz(ig,l)*wth3(ig,l) )
    347347           ale_bl(ig)=max(ale_bl(ig),0.5*zw2(ig,l)**2)
    348 !          print*,'ALE,ALP',l,zw2(ig,l),ale_bl(ig),alp_bl(ig)
     348!          PRINT*,'ALE,ALP',l,zw2(ig,l),ale_bl(ig),alp_bl(ig)
    349349      enddo
    350350      enddo
     
    377377      enddo
    378378
    379 !      print*,'apres wght_th'
     379!      PRINT*,'apres wght_th'
    380380!test pour prolonger la convection
    381381      do ig=1,ngrid
     
    384384      lalim_conv(ig)=1
    385385      wght_th(ig,1)=1.
    386 !      print*,'lalim_conv ok',lalim_conv(ig),wght_th(ig,1)
     386!      PRINT*,'lalim_conv ok',lalim_conv(ig),wght_th(ig,1)
    387387      endif
    388388      enddo
Note: See TracChangeset for help on using the changeset viewer.