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/o3_chem_m.F90

    r5113 r5116  
    1717    ! Index "(i, :)" is for longitude "rlon(i)", latitude "rlat(i)".
    1818
    19     use lmdz_assert, only: assert
    20     use dimphy, only: klon
    21     use regr_pr_comb_coefoz_m, only: c_Mob, a4_mass, a2, r_het_interm
    22     use lmdz_grid_phy, only: nbp_lev
    23     use nrtype, only: pi
     19    use lmdz_assert, ONLY: assert
     20    use dimphy, ONLY: klon
     21    use regr_pr_comb_coefoz_m, ONLY: c_Mob, a4_mass, a2, r_het_interm
     22    use lmdz_grid_phy, ONLY: nbp_lev
     23    use nrtype, ONLY: pi
    2424
    2525    integer, intent(in):: julien ! jour julien, 1 <= julien <= 360
     
    115115    ! Index "(i, :)" is for longitude "rlon(i)", latitude "rlat(i)".
    116116
    117     use regr_pr_comb_coefoz_m, only: a6_mass
    118     use lmdz_assert, only: assert
    119     use dimphy, only: klon
    120     use lmdz_grid_phy, only: nbp_lev
     117    use regr_pr_comb_coefoz_m, ONLY: a6_mass
     118    use lmdz_assert, ONLY: assert
     119    use dimphy, ONLY: klon
     120    use lmdz_grid_phy, ONLY: nbp_lev
    121121
    122122    real, intent(in):: q(:, :) ! mass fraction of ozone
     
    167167    o3_prod = c + b * q + a6_mass * sigma_mass
    168168
    169   end function o3_prod
     169  END FUNCTION o3_prod
    170170
    171171end module o3_chem_m
Note: See TracChangeset for help on using the changeset viewer.