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

    r5136 r5158  
    152152
    153153    PRINT*, 'relief=', minval(relief), maxval(relief), 'g=', g
    154     do j = 1, jjp1
    155       do i = 1, iip1
     154    DO j = 1, jjp1
     155      DO i = 1, iip1
    156156        phis((j - 1) * iip1 + i) = g * relief(i, j)
    157157      enddo
     
    264264    !          CALL writefield('theta_eq',tetajl)
    265265
    266     do l = 1, llm
    267       do j = 1, jjp1
    268         do i = 1, iip1
     266    DO l = 1, llm
     267      DO j = 1, jjp1
     268        DO i = 1, iip1
    269269          ij = (j - 1) * iip1 + i
    270270          tetarappel(ij, l) = tetajl(j, l)
     
    303303      IF (planet_type=="earth") THEN
    304304        ! Earth: first two tracers will be water
    305         do iq = 1, nqtot
     305        DO iq = 1, nqtot
    306306          q(:, :, iq) = 0.
    307307          IF(tracers(iq)%name == addPhase('H2O', 'g')) q(:, :, iq) = 1.e-10
     
    344344      zz = ran1(idum)
    345345      idum = 0
    346       do l = 1, llm
    347         do ij = iip2, ip1jm
     346      DO l = 1, llm
     347        DO ij = iip2, ip1jm
    348348          teta(ij, l) = teta(ij, l) * (1. + tetanoise * ran1(idum))
    349349        enddo
     
    351351
    352352      ! maintain periodicity in longitude
    353       do l = 1, llm
    354         do ij = 1, ip1jmp1, iip1
     353      DO l = 1, llm
     354        DO ij = 1, ip1jmp1, iip1
    355355          teta(ij + iim, l) = teta(ij, l)
    356356        enddo
Note: See TracChangeset for help on using the changeset viewer.