Ignore:
Timestamp:
Mar 21, 2002, 4:09:32 PM (22 years ago)
Author:
lmdzadmin
Message:

2 changements pour les fichiers histoire:

  • utilisation de l'entree "rectilineaire" de IOIPSL pour ne plus avoir

a

lancer ncregular a chaque fois

  • le calendrier des fichiers histoire est maintenant base sur la date d'initialisation de la simulation plutot que sur la date de depart du

job

en cours

LF

File:
1 edited

Legend:

Unmodified
Added
Removed
  • LMDZ.3.3/branches/rel-LF/libf/bibio/writehist.F

    r30 r353  
    6363      character*3 str
    6464      logical ok_sync
     65      integer itau_w
    6566C
    6667C  Initialisations
     
    7172      ndex2d = 0
    7273      ok_sync =.TRUE.
     74      itau_w = itau_dyn + time
    7375C
    7476C  Appels a histwrite pour l'ecriture des variables a sauvegarder
     
    7678C  Vents U
    7779C
    78       call histwrite(histid, 'ucov', time, ucov,
     80      call histwrite(histid, 'ucov', itau_w, ucov,
    7981     .               iip1*jjp1*llm, ndexu)
    8082
     
    8284C  Vents V
    8385C
    84       call histwrite(histvid, 'vcov', time, vcov,
     86      call histwrite(histvid, 'vcov', itau_w, vcov,
    8587     .               iip1*jjm*llm, ndexv)
    8688
     
    8890C  Temperature potentielle
    8991C
    90       call histwrite(histid, 'teta', time, teta,
     92      call histwrite(histid, 'teta', itau_w, teta,
    9193     .                iip1*jjp1*llm, ndexu)
    9294C
    9395C  Geopotentiel
    9496C
    95       call histwrite(histid, 'phi', time, phi,
     97      call histwrite(histid, 'phi', itau_w, phi,
    9698     .                iip1*jjp1*llm, ndexu)
    9799C
     
    105107            WRITE(str(2:3),'(i2.2)') iq
    106108          ENDIF
    107           call histwrite(histid, str, time, q(:,:,iq),
     109          call histwrite(histid, str, itau_w, q(:,:,iq),
    108110     .                   iip1*jjp1*llm, ndexu)
    109111        enddo
     
    112114C  Masse
    113115C
    114       call histwrite(histid, 'masse', time, masse, iip1*jjp1, ndex2d)
     116      call histwrite(histid, 'masse', itau_w, masse, iip1*jjp1, ndex2d)
    115117C
    116118C  Pression au sol
    117119C
    118       call histwrite(histid, 'ps', time, ps, iip1*jjp1, ndex2d)
     120      call histwrite(histid, 'ps', itau_w, ps, iip1*jjp1, ndex2d)
    119121C
    120122C  Geopotentiel au sol
    121123C
    122       call histwrite(histid, 'phis', time, phis, iip1*jjp1, ndex2d)
     124      call histwrite(histid, 'phis', itau_w, phis, iip1*jjp1, ndex2d)
    123125C
    124126C  Fin
Note: See TracChangeset for help on using the changeset viewer.