Ignore:
Timestamp:
Jul 23, 2024, 3:29:36 PM (4 months 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/dyn1d/replay1d.F90

    r5101 r5103  
    5151dayref=1
    5252anneeref=2000
    53 call getin('dayref',dayref)
    54 call getin('anneeref',anneeref)
    55 call getin('calend',calend)
    56 call getin('day_step',day_step)
     53CALL getin('dayref',dayref)
     54CALL getin('anneeref',anneeref)
     55CALL getin('calend',calend)
     56CALL getin('day_step',day_step)
    5757calendrier=calend
    58 if ( calendrier == "earth_360d" ) calendrier="360_day"
     58IF ( calendrier == "earth_360d" ) calendrier="360_day"
    5959
    6060
     
    6464an0=anneeref
    6565
    66 !print*,"REPLAY1D jour0,mois0,an0",jour0,mois0,an0
     66!PRINT*,"REPLAY1D jour0,mois0,an0",jour0,mois0,an0
    6767
    6868
    6969klon=1
    7070klev=llm
    71 call iotd_ini('phys.nc',1,1,klev,0.,0.,presnivs,jour0,mois0,an0,0.,86400./day_step,calendrier)
     71CALL iotd_ini('phys.nc',1,1,klev,0.,0.,presnivs,jour0,mois0,an0,0.,86400./day_step,calendrier)
    7272! Consistent with ... CALL iophys_ini(600.)
    7373
     
    7575! Initialisation de la parametrisation
    7676!---------------------------------------------------------------------
    77 call call_ini_replay
     77CALL call_ini_replay
    7878
    7979!---------------------------------------------------------------------
    8080! Boucle en temps sur l'appel à la parametrisation
    8181!---------------------------------------------------------------------
    82 call call_param_replay(klon,klev)
     82CALL call_param_replay(klon,klev)
    8383
    8484end
     
    108108 
    109109      write(*,*) 'in abort_gcm'
    110       call histclo
     110      CALL histclo
    111111      write(*,*) 'out of histclo'
    112112      write(*,*) 'Stopping in ', modname
    113113      write(*,*) 'Reason = ',message
    114       call getin_dump
     114      CALL getin_dump
    115115
    116116      if (ierr == 0) then
Note: See TracChangeset for help on using the changeset viewer.