/[lmdze]/trunk/Sources/dyn3d/inithist.f
ViewVC logotype

Diff of /trunk/Sources/dyn3d/inithist.f

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

trunk/libf/bibio/inithist.f90 revision 30 by guez, Thu Apr 1 09:07:28 2010 UTC trunk/Sources/dyn3d/inithist.f revision 212 by guez, Thu Jan 12 12:31:31 2017 UTC
# Line 1  Line 1 
1  module inithist_m  module inithist_m
2    
   ! This module is clean: no C preprocessor directive, no include line  
   
3    implicit none    implicit none
4    
5      integer histid, histvid, histuid
6    
7  contains  contains
8    
9    subroutine inithist(day0, anne0, tstep, nq, fileid, filevid, t_ops, &    subroutine inithist(tstep, nq, t_ops, t_wrt)
        t_wrt)  
10    
11      ! From inithist.F,v 1.1.1.1 2004/05/19 12:53:05      ! From inithist.F, version 1.1.1.1 2004/05/19 12:53:05
12        ! L. Fairhead, LMD, 03/99
13    
14      !   Routine d'initialisation des ecritures des fichiers histoires LMDZ      ! Routine d'initialisation des écritures des fichiers histoires
15      !   au format IOIPSL      ! LMDZ au format IOIPSL.
16    
17      !   Appels succesifs des routines: histbeg      USE dimens_m, ONLY: jjm, llm
18      !                                  histhori      USE disvert_m, ONLY: presnivs
19      !                                  histver      use dynetat0_m, only: day_ref, annee_ref, rlatu, rlatv, rlonu, rlonv
20      !                                  histdef      USE histbeg_totreg_m, ONLY : histbeg_totreg
21      !                                  histend      USE histdef_m, ONLY : histdef
22        USE histend_m, ONLY : histend
23      !   Entree:      USE histvert_m, ONLY : histvert
24      !      day0,anne0: date de reference      USE iniadvtrac_m, ONLY: ttext
25      !      tstep: duree du pas de temps en seconde      USE nr_util, ONLY: pi
26      !      t_ops: frequence de l'operation pour IOIPSL      USE paramet_m, ONLY: iip1, jjp1
27      !      t_wrt: frequence d'ecriture sur le fichier      USE temps, ONLY: itau_dyn
28      !      nq: nombre de traceurs      USE ymds2ju_m, ONLY: ymds2ju
29    
30      !   Sortie:      real, intent(in):: tstep ! durée du pas de temps en secondes
31      !      fileid: ID du fichier netcdf cree      integer, intent(in):: nq ! nombre de traceurs
32      !      filevid:ID du fichier netcdf pour la grille v      real, intent(in):: t_ops ! fréquence de l'opération pour IOIPSL
33        real, intent(in):: t_wrt ! fréquence d'écriture sur le fichier
     !   L. Fairhead, LMD, 03/99  
   
     USE calendar  
     use histcom  
     use dimens_m  
     use paramet_m  
     use comconst  
     use comvert  
     use logic  
     use comgeom  
     use serre  
     use temps  
     use ener  
     use iniadvtrac_m  
   
     !   Arguments  
     integer day0, anne0  
     real, intent(in):: tstep, t_ops, t_wrt  
     integer fileid, filevid  
     integer nq  
34    
35      !   Variables locales      ! Variables locales:
36      real zjulian      real zjulian
37      integer iq      integer iq
38      real rlong(iip1,jjp1), rlat(iip1,jjp1)      real rlong(iip1, jjp1), rlat(iip1, jjp1)
39      integer uhoriid, vhoriid, thoriid, zvertiid      integer uhoriid, vhoriid, thoriid, zvertiid
40      integer ii,jj      integer ii, jj
     integer zan, dayref  
41    
42      !-----------------------------------------------------------------------      !-----------------------------------------------------------------------
43    
44      !  Initialisations      CALL ymds2ju(annee_ref, 1, day_ref, 0.0, zjulian)
   
     pi = 4. * atan (1.)  
   
     !  Appel a histbeg: creation du fichier netcdf et initialisations diverses  
   
     zan = anne0  
     dayref = day0  
     CALL ymds2ju(zan, 1, dayref, 0.0, zjulian)  
45    
46      do jj = 1, jjp1      do jj = 1, jjp1
47         do ii = 1, iip1         do ii = 1, iip1
48            rlong(ii,jj) = rlonu(ii) * 180. / pi            rlong(ii, jj) = rlonu(ii) * 180. / pi
49            rlat(ii,jj) = rlatu(jj) * 180. / pi            rlat(ii, jj) = rlatu(jj) * 180. / pi
50         enddo         enddo
51      enddo      enddo
52    
53      call histbeg_totreg("dyn_hist.nc", rlong(:,1), rlat(1,:), &      call histbeg_totreg("dyn_histu.nc", rlong(:,1), rlat(1,:), 1, iip1, 1, &
54           1, iip1, 1, jjp1, &           jjp1, itau_dyn, zjulian, tstep, uhoriid, histuid)
          itau_dyn, zjulian, tstep, uhoriid, fileid)  
     !  
     !  Creation du fichier histoire pour la grille en V (oblige pour l'instant,  
     !  IOIPSL ne permet pas de grilles avec des nombres de point differents dans  
     !  un meme fichier)  
55    
56      do jj = 1, jjm      do jj = 1, jjm
57         do ii = 1, iip1         do ii = 1, iip1
58            rlong(ii,jj) = rlonv(ii) * 180. / pi            rlong(ii, jj) = rlonv(ii) * 180. / pi
59            rlat(ii,jj) = rlatv(jj) * 180. / pi            rlat(ii, jj) = rlatv(jj) * 180. / pi
60         enddo         enddo
61      enddo      enddo
62    
63      call histbeg_totreg('dyn_histv.nc', rlong(:,1), rlat(1,:jjm), &      ! Creation du fichier histoire pour la grille en V (oblige pour l'instant,
64           1, iip1, 1, jjm, &      ! IOIPSL ne permet pas de grilles avec des nombres de point differents dans
65           itau_dyn, zjulian, tstep, vhoriid, filevid)      ! un meme fichier)
66      !  
67      !  Appel a histhori pour rajouter les autres grilles horizontales      call histbeg_totreg('dyn_histv.nc', rlong(:, 1), rlat(1, :jjm), 1, iip1, &
68      !           1, jjm, itau_dyn, zjulian, tstep, vhoriid, histvid)
69    
70      do jj = 1, jjp1      do jj = 1, jjp1
71         do ii = 1, iip1         do ii = 1, iip1
72            rlong(ii,jj) = rlonv(ii) * 180. / pi            rlong(ii, jj) = rlonv(ii) * 180. / pi
73            rlat(ii,jj) = rlatu(jj) * 180. / pi            rlat(ii, jj) = rlatu(jj) * 180. / pi
74         enddo         enddo
75      enddo      enddo
76    
77      call histhori_regular(fileid, iip1, rlong, jjp1, rlat, 'scalar', &      call histbeg_totreg("dyn_hist.nc", rlong(:, 1), rlat(1, :), 1, iip1, 1, &
78           'Grille points scalaires', thoriid)           jjp1, itau_dyn, zjulian, tstep, thoriid, histid)
79      !  
80      !  Appel a histvert pour la grille verticale      ! Appel a histvert pour la grille verticale
81      !  
82      call histvert(fileid, 'sig_s', 'Niveaux sigma','-', &      call histvert(histid, 'presnivs', 'Niveaux pression','mb', presnivs/100., &
83           llm, nivsigs, zvertiid)           zvertiid,'down')
84      ! Pour le fichier V      call histvert(histvid, 'presnivs', 'Niveaux pression','mb', &
85      call histvert(filevid, 'sig_s', 'Niveaux sigma','-', &           presnivs/100., zvertiid,'down')
86           llm, nivsigs, zvertiid)      call histvert(histuid, 'presnivs', 'Niveaux pression','mb', &
87      !           presnivs/100., zvertiid,'down')
88      !  Appels a histdef pour la definition des variables a sauvegarder  
89      !      ! Appels a histdef pour la definition des variables a sauvegarder
90      !  Vents U  
91      !      call histdef(histuid, 'u', 'vent u', 'm/s', iip1, jjp1, uhoriid, llm, 1, &
92      call histdef(fileid, 'ucov', 'vents u covariants', 'm/s', &           llm, zvertiid, 'inst(X)', t_ops, t_wrt)
93           iip1, jjp1, uhoriid, llm, 1, llm, zvertiid, &      call histdef(histvid, 'v', 'vent v', 'm/s', iip1, jjm, vhoriid, llm, 1, &
94           'inst(X)', t_ops, t_wrt)           llm, zvertiid, 'inst(X)', t_ops, t_wrt)
95      !      call histdef(histid, 'teta', 'temperature potentielle', '-', iip1, jjp1, &
96      !  Vents V           thoriid, llm, 1, llm, zvertiid, 'inst(X)', t_ops, t_wrt)
97      !      call histdef(histid, 'phi', 'geopotentiel', '-', iip1, jjp1, thoriid, &
98      call histdef(filevid, 'vcov', 'vents v covariants', 'm/s', &           llm, 1, llm, zvertiid, 'inst(X)', t_ops, t_wrt)
99           iip1, jjm, vhoriid, llm, 1, llm, zvertiid, &  
100           'inst(X)', t_ops, t_wrt)      ! Traceurs
101        DO iq=1, nq
102      !         call histdef(histid, ttext(iq), ttext(iq), '-', iip1, jjp1, thoriid, &
103      !  Temperature potentielle              llm, 1, llm, zvertiid, 'inst(X)', t_ops, t_wrt)
     !  
     call histdef(fileid, 'teta', 'temperature potentielle', '-', &  
          iip1, jjp1, thoriid, llm, 1, llm, zvertiid, &  
          'inst(X)', t_ops, t_wrt)  
     !  
     !  Geopotentiel  
     !  
     call histdef(fileid, 'phi', 'geopotentiel instantane', '-', &  
          iip1, jjp1, thoriid, llm, 1, llm, zvertiid, &  
          'inst(X)', t_ops, t_wrt)  
     !  
     !  Traceurs  
     !  
     DO iq=1,nq  
        call histdef(fileid, ttext(iq),  ttext(iq), '-', &  
             iip1, jjp1, thoriid, llm, 1, llm, zvertiid, &  
             'inst(X)', t_ops, t_wrt)  
104      enddo      enddo
105      !  
106      !  Masse      call histdef(histid, 'masse', 'masse', 'kg', iip1, jjp1, thoriid, llm, 1, &
107      !           llm, zvertiid, 'inst(X)', t_ops, t_wrt)
108      call histdef(fileid, 'masse', 'masse', 'kg', &      call histdef(histid, 'ps', 'pression naturelle au sol', 'Pa', iip1, jjp1, &
109           iip1, jjp1, thoriid, 1, 1, 1, -99, &           thoriid, 1, 1, 1, -99, 'inst(X)', t_ops, t_wrt)
110           'inst(X)', t_ops, t_wrt)      call histdef(histid, 'phis', 'geopotentiel au sol', '-', iip1, jjp1, &
111      !           thoriid, 1, 1, 1, -99, 'inst(X)', t_ops, t_wrt)
112      !  Pression au sol  
113      !      call histend(histid)
114      call histdef(fileid, 'ps', 'pression naturelle au sol', 'Pa', &      call histend(histuid)
115           iip1, jjp1, thoriid, 1, 1, 1, -99, &      call histend(histvid)
          'inst(X)', t_ops, t_wrt)  
     !  
     !  Pression au sol  
     !  
     call histdef(fileid, 'phis', 'geopotentiel au sol', '-', &  
          iip1, jjp1, thoriid, 1, 1, 1, -99, &  
          'inst(X)', t_ops, t_wrt)  
     !  
     !  Fin  
     !  
     call histend(fileid)  
     call histend(filevid)  
116    
117    end subroutine inithist    end subroutine inithist
118    

Legend:
Removed from v.30  
changed lines
  Added in v.212

  ViewVC Help
Powered by ViewVC 1.1.21