Ignore:
Timestamp:
Jul 24, 2024, 4:23:34 PM (2 months ago)
Author:
abarral
Message:

rename modules properly lmdz_*
move some unused files to obsolete/
(lint) uppercase fortran keywords

File:
1 edited

Legend:

Unmodified
Added
Removed
  • LMDZ6/branches/Amaury_dev/libf/dyn3dmem/addfi_loc.f90

    r5116 r5117  
    9696!$OMP END DO NOWAIT
    9797
    98   if (pole_nord) THEN
     98  IF (pole_nord) THEN
    9999!$OMP DO SCHEDULE(STATIC,OMP_CHUNK)
    100100    DO  k    = 1, llm
     
    109109   ENDDO
    110110!$OMP END DO NOWAIT
    111   endif
    112 
    113   if (pole_sud) THEN
     111  ENDIF
     112
     113  IF (pole_sud) THEN
    114114!$OMP DO SCHEDULE(STATIC,OMP_CHUNK)
    115115    DO  k    = 1, llm
     
    124124   ENDDO
    125125!$OMP END DO NOWAIT
    126   endif
     126  ENDIF
    127127  !
    128128
    129129  ijb=ij_begin
    130130  ije=ij_end
    131   if (pole_nord) ijb=ij_begin+iip1
    132   if (pole_sud)  ije=ij_end-iip1
     131  IF (pole_nord) ijb=ij_begin+iip1
     132  IF (pole_sud)  ije=ij_end-iip1
    133133
    134134!$OMP DO SCHEDULE(STATIC,OMP_CHUNK)
     
    140140!$OMP END DO NOWAIT
    141141
    142   if (pole_nord) ijb=ij_begin
     142  IF (pole_nord) ijb=ij_begin
    143143
    144144!$OMP DO SCHEDULE(STATIC,OMP_CHUNK)
     
    151151
    152152  !
    153   if (pole_sud)  ije=ij_end
     153  IF (pole_sud)  ije=ij_end
    154154!$OMP MASTER
    155155  DO j = ijb,ije
     
    158158!$OMP END MASTER
    159159
    160   if (planet_type=="earth") THEN
     160  IF (planet_type=="earth") THEN
    161161  ! earth case, special treatment for first 2 tracers (water)
    162162  DO iq = 1, 2
     
    193193!$OMP END DO NOWAIT
    194194   ENDDO
    195   endif ! of if (planet_type=="earth")
     195  ENDIF ! of if (planet_type=="earth")
    196196
    197197!$OMP MASTER
    198   if (pole_nord) THEN
     198  IF (pole_nord) THEN
    199199    DO  ij   = 1, iim
    200200      xpn(ij) = aire(   ij   ) * pps(  ij     )
     
    207207    ENDDO
    208208
    209   endif
    210 
    211   if (pole_sud) THEN
     209  ENDIF
     210
     211  IF (pole_sud) THEN
    212212    DO  ij   = 1, iim
    213213      xps(ij) = aire(ij+ip1jm) * pps(ij+ip1jm )
     
    220220    ENDDO
    221221
    222   endif
     222  ENDIF
    223223!$OMP END MASTER
    224224
    225   if (pole_nord) THEN
     225  IF (pole_nord) THEN
    226226    DO iq = 1, nqtot
    227227!$OMP DO SCHEDULE(STATIC,OMP_CHUNK)
     
    238238!$OMP END DO NOWAIT     
    239239    ENDDO
    240   endif
    241 
    242   if (pole_sud) THEN
     240  ENDIF
     241
     242  IF (pole_sud) THEN
    243243    DO iq = 1, nqtot
    244244!$OMP DO SCHEDULE(STATIC,OMP_CHUNK)
     
    255255!$OMP END DO NOWAIT     
    256256    ENDDO
    257   endif
     257  ENDIF
    258258
    259259
Note: See TracChangeset for help on using the changeset viewer.