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/dyn3d_common/ugeostr.F90

    r5116 r5117  
    1111  ! levels are pressure levels.
    1212
    13   use comconst_mod, ONLY: omeg, rad
     13  USE comconst_mod, ONLY: omeg, rad
    1414 
    1515  IMPLICIT NONE
     
    1919  include "comgeom2.h"
    2020
    21   real ucov(iip1,jjp1,llm),phi(iip1,jjp1,llm)
    22   real um(jjm,llm),fact,u(iip1,jjm,llm)
    23   integer i,j,l
     21  REAL ucov(iip1,jjp1,llm),phi(iip1,jjp1,llm)
     22  REAL um(jjm,llm),fact,u(iip1,jjm,llm)
     23  INTEGER i,j,l
    2424
    25   real zlat
     25  REAL zlat
    2626
    2727  um(:,:)=0 ! initialize um()
     
    2929  DO j=1,jjm
    3030
    31      if (abs(sin(rlatv(j)))<1.e-4) THEN
     31     IF (abs(sin(rlatv(j)))<1.e-4) THEN
    3232        zlat=1.e-4
    3333     else
Note: See TracChangeset for help on using the changeset viewer.