Ignore:
Timestamp:
Aug 2, 2024, 2:12:03 PM (3 months ago)
Author:
abarral
Message:

Add missing klon on strataer_emiss_mod.F90
Correct various missing explicit declarations
Replace tabs by spaces (tabs are not part of the fortran charset)
Continue cleaning modules
Removed unused arguments and variables

File:
1 edited

Legend:

Unmodified
Added
Removed
  • LMDZ6/branches/Amaury_dev/libf/dyn3d_common/inter_barxy_m.F90

    r5136 r5158  
    261261    idat = 1
    262262
    263     do while (imod <= imodmax)
    264       do while (xxim(imod)>xxid(idat))
     263    DO while (imod <= imodmax)
     264      DO while (xxim(imod)>xxid(idat))
    265265        dx = xxid(idat) - x0
    266266        dxm = dxm + dx
     
    330330    jdat = 1
    331331
    332     do while (jmod <= size(yjmod))
    333       do while (yjmod(jmod) > yjdat(jdat))
     332    DO while (jmod <= size(yjmod))
     333      DO while (yjmod(jmod) > yjdat(jdat))
    334334        dy = yjdat(jdat) - y0
    335335        dym = dym + dy
Note: See TracChangeset for help on using the changeset viewer.