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/phylmd/iophys.F90

    r5144 r5158  
    231231
    232232  ijl = 0
    233   do l = 1, lllm
     233  DO l = 1, lllm
    234234    ! Pole nord
    235235    ijl = ijl + 1
    236     do i = 1, imax
     236    DO i = 1, imax
    237237      zx(i, 1, l) = px(ijl)
    238238    enddo
    239239    ! Grille normale
    240     do j = 2, jmax - 1
    241       do i = 1, imax
     240    DO j = 2, jmax - 1
     241      DO i = 1, imax
    242242        ijl = ijl + 1
    243243        zx(i, j, l) = px(ijl)
     
    247247    IF (jmax > 1) THEN
    248248      ijl = ijl + 1
    249       do i = 1, imax
     249      DO i = 1, imax
    250250        zx(i, jmax, l) = px(ijl)
    251251      enddo
Note: See TracChangeset for help on using the changeset viewer.