Ignore:
Timestamp:
Jul 24, 2024, 2:54:37 PM (4 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/regr_pr_int_m.F90

    r5113 r5116  
    2424    ! Regridding is by linear interpolation.
    2525
    26     use dimphy, only: klon
    27     use netcdf95, only: nf95_inq_varid, nf95_get_var
    28     use lmdz_assert, only: assert
    29     use regr_lint_m, only: regr_lint
    30     use lmdz_phys_mpi_data, only: is_mpi_root
    31     use lmdz_grid_phy, only: nbp_lon, nbp_lat, nbp_lev
    32     use lmdz_phys_transfert_para, only: scatter2d
     26    use dimphy, ONLY: klon
     27    use netcdf95, ONLY: nf95_inq_varid, nf95_get_var
     28    use lmdz_assert, ONLY: assert
     29    use regr_lint_m, ONLY: regr_lint
     30    use lmdz_phys_mpi_data, ONLY: is_mpi_root
     31    use lmdz_grid_phy, ONLY: nbp_lon, nbp_lat, nbp_lev
     32    use lmdz_phys_transfert_para, ONLY: scatter2d
    3333    ! (pack to the LMDZ horizontal "physics" grid and scatter)
    3434
    3535    integer, intent(in):: ncid ! NetCDF ID of the file
    36     character(len=*), intent(in):: name ! of the NetCDF variable
     36    CHARACTER(LEN=*), intent(in):: name ! of the NetCDF variable
    3737    integer, intent(in):: julien ! jour julien, 1 <= julien <= 360
    3838
     
    7474
    7575    !$omp master
    76     if (is_mpi_root) then
     76    if (is_mpi_root) THEN
    7777       CALL nf95_inq_varid(ncid, name, varid)
    7878
Note: See TracChangeset for help on using the changeset viewer.