Ignore:
Timestamp:
Jul 24, 2024, 2:54:37 PM (2 months ago)
Author:
abarral
Message:

rename modules properly lmdz_*
move ismin, ismax, minmax into new lmdz_libmath.f90
(lint) uppercase fortran keywords

File:
1 edited

Legend:

Unmodified
Added
Removed
  • LMDZ6/branches/Amaury_dev/libf/phylmd/Dust/read_dust.f90

    r5110 r5116  
    1111  INTEGER :: step, nbjour
    1212  LOGICAL :: debutphy
    13   real :: dust_ec(klon)
    14   real :: dust_ec_glo(klon_glo)
     13  REAL :: dust_ec(klon)
     14  REAL :: dust_ec_glo(klon_glo)
    1515
    1616  ! as      real dust_nc(iip1,jjp1)
    17   real :: dust_nc_glo(nbp_lon + 1, nbp_lat)
    18   integer :: rcode
    19   integer :: ncid1, varid1, ncid2, varid2
     17  REAL :: dust_nc_glo(nbp_lon + 1, nbp_lat)
     18  INTEGER :: rcode
     19  INTEGER :: ncid1, varid1, ncid2, varid2
    2020
    2121  save ncid1, varid1, ncid2, varid2
    2222  !$OMP THREADPRIVATE(ncid1, varid1, ncid2, varid2)
    23   integer :: start(4), count(4), status
    24   integer :: i, j, ig
     23  INTEGER :: start(4), count(4), status
     24  INTEGER :: i, j, ig
    2525
    2626  !$OMP MASTER
    2727  IF (is_mpi_root .AND. is_omp_root) THEN
    28     if (debutphy) then
     28    if (debutphy) THEN
    2929      ncid1 = nf90_open('dust.nc', nf90_nowrite, rcode)
    3030      varid1 = nf90_inq_varid(ncid1, 'EMISSION', rcode)
Note: See TracChangeset for help on using the changeset viewer.