Ignore:
Timestamp:
Jul 24, 2024, 4:23:34 PM (4 months ago)
Author:
abarral
Message:

rename modules properly lmdz_*
move some unused files to obsolete/
(lint) uppercase fortran keywords

File:
1 edited

Legend:

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

    r5116 r5117  
    2020
    2121IMPLICIT NONE
    22 logical, intent(in) :: debut
    23 real, intent(in) :: pdtphys,zjulian
    24 real,intent(in) :: presnivs(klev) ! pseudo-pressure (Pa) of mid-layers
    25 real,intent(in) :: u(klon,klev) ! eastward zonal wind (m/s)
    26 real,intent(in) :: v(klon,klev) ! northward meridional wind (m/s)
    27 real,intent(in) :: t(klon,klev) ! temperature (K)
    28 real,intent(in) :: theta(klon,klev) ! temperature (K)
    29 real,intent(in) :: paprs(klon,klev+1) ! interlayer pressure (Pa)
    30 real,intent(in) :: qx(klon,klev,nqtot) !tracers
    31 real,intent(in) :: cf(klon,klev) !cloud fraction
    32 real,intent(in) :: zqr(klon,klev) !rain specifiq content
    33 real,intent(in) :: zqs(klon,klev) !snow specifiq content
    34 real,intent(in) :: zqg(klon,klev) !graupel specifiq content
    35 real,intent(in) :: ptke(klon,klev) !tke
     22logical, INTENT(IN) :: debut
     23REAL, INTENT(IN) :: pdtphys,zjulian
     24REAL,INTENT(IN) :: presnivs(klev) ! pseudo-pressure (Pa) of mid-layers
     25REAL,INTENT(IN) :: u(klon,klev) ! eastward zonal wind (m/s)
     26REAL,INTENT(IN) :: v(klon,klev) ! northward meridional wind (m/s)
     27REAL,INTENT(IN) :: t(klon,klev) ! temperature (K)
     28REAL,INTENT(IN) :: theta(klon,klev) ! temperature (K)
     29REAL,INTENT(IN) :: paprs(klon,klev+1) ! interlayer pressure (Pa)
     30REAL,INTENT(IN) :: qx(klon,klev,nqtot) !tracers
     31REAL,INTENT(IN) :: cf(klon,klev) !cloud fraction
     32REAL,INTENT(IN) :: zqr(klon,klev) !rain specifiq content
     33REAL,INTENT(IN) :: zqs(klon,klev) !snow specifiq content
     34REAL,INTENT(IN) :: zqg(klon,klev) !graupel specifiq content
     35REAL,INTENT(IN) :: ptke(klon,klev) !tke
    3636
    3737REAL :: t_ops ! frequency of the IOIPSL operations (eg average over...)
     
    4040REAL :: dtime
    4141
    42 integer,save :: iwrite_phys=1 ! output every iwrite_phys physics step
     42INTEGER,save :: iwrite_phys=1 ! output every iwrite_phys physics step
    4343!$OMP THREADPRIVATE(iwrite_phys)
    4444INTEGER :: nhori ! horizontal coordinate ID
    45 integer,save :: nid_hist ! output file ID
     45INTEGER,save :: nid_hist ! output file ID
    4646!$OMP THREADPRIVATE(nid_hist)
    47 integer, save :: itau=0
     47INTEGER, save :: itau=0
    4848!$OMP THREADPRIVATE(itau)
    4949
    50 integer, save :: ioex=1
     50INTEGER, save :: ioex=1
    5151
    5252
Note: See TracChangeset for help on using the changeset viewer.