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

    r5082 r5103  
    6767!-------------------------------------------------------------------------
    6868
    69 !      print*,'calcul des ratqs'
     69!      PRINT*,'calcul des ratqs'
    7070!   ratqs convectifs a l'ancienne en fonction de q(z=0)-q / q
    7171!   ----------------
     
    8787!-----------------------------------------------------------------------
    8888      else if (iflag_cld_th==4) then
    89          ptconvth(:,:)=.false.
     89         ptconvth(:,:)=.FALSE.
    9090         ratqsc(:,:)=0.
    91          if(prt_level>=9) print*,'avant clouds_gno thermique'
    92          call clouds_gno &
     91         if(prt_level>=9) PRINT*,'avant clouds_gno thermique'
     92         CALL clouds_gno &
    9393         (klon,klev,q_seri,zqsat,clwcon0th,ptconvth,ratqsc,rnebcon0th)
    94          if(prt_level>=9) print*,' CLOUDS_GNO OK'
     94         if(prt_level>=9) PRINT*,' CLOUDS_GNO OK'
    9595       
    9696       endif
     
    195195          if (iflag_ratqs == 10) then
    196196             ! interactive ratqs in presence of cold pools     
    197              call ratqs_inter(klon,klev,iflag_ratqs,pdtphys,paprs, &
     197             CALL ratqs_inter(klon,klev,iflag_ratqs,pdtphys,paprs, &
    198198                       ratqsbas,wake_deltaq,wake_s,q_seri,qtc_cv, sigt_cv, &
    199199                       fm_therm,entr_therm,detr_therm,detrain_cv,fm_cv,fqd,fqcomp,sigd, &
     
    206206             ratqss=ratqss+ratqs_inter_
    207207          else if (iflag_ratqs == 11) then
    208             print*,'avant ratqs_inter'
     208            PRINT*,'avant ratqs_inter'
    209209            ! interactive ratqs with several sources
    210              call ratqs_inter(klon,klev,iflag_ratqs,pdtphys,paprs, &
     210             CALL ratqs_inter(klon,klev,iflag_ratqs,pdtphys,paprs, &
    211211                       ratqsbas,wake_deltaq,wake_s,q_seri,qtc_cv, sigt_cv, &
    212212                       fm_therm,entr_therm,detr_therm,detrain_cv,fm_cv,fqd,fqcomp,sigd, &
     
    215215          else if (iflag_ratqs == 12) then
    216216             ! contribution of surface heterogeneities to ratqs
    217              call ratqs_hetero(klon,klev,pctsrf,s_pblh,t2m,q2m,t_seri,q_seri,pplay,paprs,ratqs_hetero_)
     217             CALL ratqs_hetero(klon,klev,pctsrf,s_pblh,t2m,q2m,t_seri,q_seri,pplay,paprs,ratqs_hetero_)
    218218             ratqss=ratqss+ratqs_hetero_
    219219          else if (iflag_ratqs == 13) then
    220220             ! contribution of ubgrid orography to ratqs
    221              call ratqs_oro(klon,klev,pctsrf,zstd,zqsat,t_seri,pplay,paprs,ratqs_oro_)
     221             CALL ratqs_oro(klon,klev,pctsrf,zstd,zqsat,t_seri,pplay,paprs,ratqs_oro_)
    222222             ratqss=ratqss+ratqs_oro_
    223223          else if (iflag_ratqs == 14) then
    224224             ! effect of subgrid-scale TKE on ratqs (in development)
    225              call ratqs_tke(klon,klev,pdtphys,t_seri,q_seri,zqsat,pplay,paprs,omega,tke,tke_dissip,lmix,wprime,ratqs_tke_)     
     225             CALL ratqs_tke(klon,klev,pdtphys,t_seri,q_seri,zqsat,pplay,paprs,omega,tke,tke_dissip,lmix,wprime,ratqs_tke_)
    226226             ratqss=ratqss+ratqs_tke_
    227227          endif
Note: See TracChangeset for help on using the changeset viewer.