Ignore:
Timestamp:
Jul 24, 2024, 2:54:37 PM (3 months ago)
Author:
abarral
Message:

rename modules properly lmdz_*
move ismin, ismax, minmax into new lmdz_libmath.f90
(lint) uppercase fortran keywords

File:
1 edited

Legend:

Unmodified
Added
Removed
  • LMDZ6/branches/Amaury_dev/libf/phylmd/dyn1d/replay1d.F90

    r5113 r5116  
    55USE comvert_mod, ONLY: presnivs
    66USE comvert_mod, ONLY:  preff, pa
    7 USE ioipsl, only: getin
     7USE ioipsl, ONLY: getin
    88
    99
     
    1313      INCLUDE "dimensions.h"
    1414
    15 real :: airefi
    16 real :: zcufi    = 1.
    17 real :: zcvfi    = 1.
    18 real :: rlat_rad(1),rlon_rad(1)
     15REAL :: airefi
     16REAL :: zcufi    = 1.
     17REAL :: zcvfi    = 1.
     18REAL :: rlat_rad(1),rlon_rad(1)
    1919
    2020integer ntime
     
    103103!         ierr    = severity of situation ( = 0 normal )
    104104 
    105       character(len=*) modname
     105      CHARACTER(LEN=*) modname
    106106      integer ierr
    107       character(len=*) message
     107      CHARACTER(LEN=*) message
    108108 
    109       write(*,*) 'in abort_gcm'
     109      WRITE(*,*) 'in abort_gcm'
    110110      CALL histclo
    111       write(*,*) 'out of histclo'
    112       write(*,*) 'Stopping in ', modname
    113       write(*,*) 'Reason = ',message
     111      WRITE(*,*) 'out of histclo'
     112      WRITE(*,*) 'Stopping in ', modname
     113      WRITE(*,*) 'Reason = ',message
    114114      CALL getin_dump
    115115
    116       if (ierr == 0) then
    117         write(*,*) 'Everything is cool'
     116      if (ierr == 0) THEN
     117        WRITE(*,*) 'Everything is cool'
    118118      else
    119         write(*,*) 'Houston, we have a problem ', ierr
     119        WRITE(*,*) 'Houston, we have a problem ', ierr
    120120      endif
    121121      STOP
Note: See TracChangeset for help on using the changeset viewer.