Ignore:
Timestamp:
Jul 23, 2024, 3:29:36 PM (8 weeks ago)
Author:
abarral
Message:

Handle CPP_INLANDSIS in lmdz_cppkeys_wrapper.F90
Remove obsolete key wrgrads_thermcell, _ADV_HALO, _ADV_HALLO, isminmax
Remove redundant uses of CPPKEY_INCA (thanks acozic)
Remove obsolete misc/write_field.F90
Remove unused ioipsl_* wrappers
Remove calls to WriteField_u with wrong signature
Convert .F -> .[fF]90
(lint) uppercase fortran operators
[note: 1d and iso still broken - working on it]

File:
1 edited

Legend:

Unmodified
Added
Removed
  • LMDZ6/branches/Amaury_dev/libf/phylmd/Dust/read_vent.f90

    r5101 r5103  
    106106
    107107! added by JE from the nh SPLA, dyn3d/read_reanalyse.F which is not available any more
    108 subroutine correctbid(iim, nl, x)
     108SUBROUTINE correctbid(iim, nl, x)
    109109  integer :: iim, nl
    110110  real :: x(iim + 1, nl)
     
    116116      if(abs(x(i, l))>1.e10) then
    117117        zz = 0.5 * (x(i - 1, l) + x(i + 1, l))
    118         ! print*,'correction ',i,l,x(i,l),zz
     118        ! PRINT*,'correction ',i,l,x(i,l),zz
    119119        x(i, l) = zz
    120120      endif
     
    123123
    124124  return
    125 end subroutine correctbid
     125END SUBROUTINE correctbid
    126126
    127127
Note: See TracChangeset for help on using the changeset viewer.