- Timestamp:
- Jul 24, 2024, 4:23:34 PM (4 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
LMDZ6/branches/Amaury_dev/libf/phylmd/output_physiqex_mod.F90
r5116 r5117 20 20 21 21 IMPLICIT NONE 22 logical, intent(in) :: debut23 real, intent(in) :: pdtphys,zjulian24 real,intent(in) :: presnivs(klev) ! pseudo-pressure (Pa) of mid-layers25 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) !tracers31 real,intent(in) :: cf(klon,klev) !cloud fraction32 real,intent(in) :: zqr(klon,klev) !rain specifiq content33 real,intent(in) :: zqs(klon,klev) !snow specifiq content34 real,intent(in) :: zqg(klon,klev) !graupel specifiq content35 real,intent(in) :: ptke(klon,klev) !tke22 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 36 36 37 37 REAL :: t_ops ! frequency of the IOIPSL operations (eg average over...) … … 40 40 REAL :: dtime 41 41 42 integer,save :: iwrite_phys=1 ! output every iwrite_phys physics step42 INTEGER,save :: iwrite_phys=1 ! output every iwrite_phys physics step 43 43 !$OMP THREADPRIVATE(iwrite_phys) 44 44 INTEGER :: nhori ! horizontal coordinate ID 45 integer,save :: nid_hist ! output file ID45 INTEGER,save :: nid_hist ! output file ID 46 46 !$OMP THREADPRIVATE(nid_hist) 47 integer, save :: itau=047 INTEGER, save :: itau=0 48 48 !$OMP THREADPRIVATE(itau) 49 49 50 integer, save :: ioex=150 INTEGER, save :: ioex=1 51 51 52 52
Note: See TracChangeset
for help on using the changeset viewer.