Changeset 57 for LMDZ.3.3/trunk


Ignore:
Timestamp:
Feb 18, 2000, 2:53:27 PM (24 years ago)
Author:
lmdzadmin
Message:

Embryon pour un vrai calendrier. LF

File:
1 edited

Legend:

Unmodified
Added
Removed
  • LMDZ.3.3/trunk/libf/dyn3d/gcm.F

    r49 r57  
    11
    22      PROGRAM gcm
     3
     4      USE IOIPSL
    35
    46      IMPLICIT NONE
     
    115117
    116118
     119      INTEGER fluxid, fluxvid,fluxdid
    117120      integer histid, histvid, histaveid
    118121      real time_step, t_wrt, t_ops
     
    123126
    124127      LOGICAL offline  ! Controle du stockage ds "fluxmass"
    125       PARAMETER (offline=.false.)
     128      PARAMETER (offline=.true.)
    126129
    127130      character*80 dynhist_file, dynhistave_file
    128131      character*20 modname
    129132      character*80 abort_message
     133
     134C Calendrier
     135      LOGICAL true_calendar
     136      PARAMETER (true_calendar = .false.)
    130137
    131138c-----------------------------------------------------------------------
     
    138145      dynhist_file = 'dyn_hist.nc'
    139146      dynhistave_file = 'dyn_hist_ave.nc'
     147
     148      if (true_calendar) then
     149        call ioconf_calendar('gregorian')
     150      else
     151        call ioconf_calendar('360d')
     152      endif
    140153c-----------------------------------------------------------------------
    141154c
     
    372385         IF (offline) THEN
    373386Cmaf stokage du flux de masse pour traceurs OFF-LINE
    374            CALL fluxstoke(pbaru,pbarv,masse,teta,phi,phis)
     387
     388            CALL fluxstokenc(pbaru,pbarv,masse,teta,phi,phis,
     389     .   time_step, itau,fluxid, fluxvid,fluxdid )
     390
    375391         ENDIF
    376392c
Note: See TracChangeset for help on using the changeset viewer.