Ignore:
Timestamp:
Jul 24, 2024, 4:23:34 PM (3 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/sortvarc.f90

    r5116 r5117  
    7070  ! Ehouarn: when no initialization fields from file, resetvarc should be
    7171       ! set to false
    72    if (firstcal) THEN
    73      if (.not.read_start) THEN
     72   IF (firstcal) THEN
     73     IF (.NOT.read_start) THEN
    7474       resetvarc=.TRUE.
    7575     endif
     
    147147  ang   = SSUM(     llm,  angl, 1 )
    148148
    149   IF (firstcal.and.resetvarc) THEN
     149  IF (firstcal.AND.resetvarc) THEN
    150150     WRITE(lunout,3500) itau, rjour, heure, time
    151151     WRITE(lunout,*) trim(modname), &
     
    162162  ! compute relative changes in etot,... (except if 'reference' values
    163163  ! are zero, which can happen when using iniacademic)
    164   if (etot0/=0) THEN
     164  IF (etot0/=0) THEN
    165165    etot= etot/etot0
    166166  else
    167167    etot=1.
    168   endif
     168  ENDIF
    169169  rmsv= SQRT(rmsv/ptot)
    170   if (ptot0/=0) THEN
     170  IF (ptot0/=0) THEN
    171171    ptot= ptot/ptot0
    172172  else
    173173    ptot=1.
    174   endif
    175   if (ztot0/=0) THEN
     174  ENDIF
     175  IF (ztot0/=0) THEN
    176176    ztot= ztot/ztot0
    177177  else
    178178    ztot=1.
    179   endif
    180   if (stot0/=0) THEN
     179  ENDIF
     180  IF (stot0/=0) THEN
    181181    stot= stot/stot0
    182182  else
    183183    stot=1.
    184   endif
    185   if (ang0/=0) THEN
     184  ENDIF
     185  IF (ang0/=0) THEN
    186186    ang = ang /ang0
    187187  else
    188188    ang=1.
    189   endif
     189  ENDIF
    190190
    191191  firstcal = .FALSE.
Note: See TracChangeset for help on using the changeset viewer.