source: trunk/LMDZ.GENERIC/libf/phystd/writediagspecIR.F @ 374

Last change on this file since 374 was 305, checked in by rwordsworth, 13 years ago

Several new files added as part of the climate evolution model
(main program kcm.F90). Some general cleanup in physiq.F90 and
callcorrk.F90. Bugs in dust radiative transfer and H2 Rayleigh
scattering corrected.

File size: 9.0 KB
Line 
1      subroutine writediagspecIR(ngrid,nom,titre,unite,dim,px)
2
3!  Ecriture de variables diagnostiques au choix dans la physique
4!  dans un fichier NetCDF nomme  'diagfi'. Ces variables peuvent etre
5!  3d (ex : temperature), 2d (ex : temperature de surface), ou
6!  0d (pour un scalaire qui ne depend que du temps : ex : la longitude
7!  solaire)
8!  Dans la version 2000, la periode d'ecriture est celle de
9!  "ecritphy " regle dans le fichier de controle de run :  run.def
10!
11!    writediagfi peut etre appele de n'importe quelle subroutine
12!    de la physique, plusieurs fois. L'initialisation et la creation du
13!    fichier se fait au tout premier appel.
14!
15! WARNING : les variables dynamique (u,v,t,q,ps)
16!  sauvees par writediagfi avec une
17! date donnee sont legerement differentes que dans le fichier histoire car
18! on ne leur a pas encore ajoute de la dissipation et de la physique !!!
19! IL est  RECOMMANDE d'ajouter les tendance physique a ces variables
20! avant l'ecriture dans diagfi (cf. physiq.F)
21
22!
23!  parametres (input) :
24!  ----------
25!      ngrid : nombres de point ou est calcule la physique
26!                (ngrid = 2+(jjm-1)*iim - 1/jjm)
27!                 (= nlon ou klon dans la physique terrestre)
28!     
29!      unit : unite logique du fichier de sortie (toujours la meme)
30!      nom  : nom de la variable a sortir (chaine de caracteres)
31!      titre: titre de la variable (chaine de caracteres)
32!      unite : unite de la variable (chaine de caracteres)
33!      px : variable a sortir (real 0, 2, ou 3d)
34!      dim : dimension de px : 0, 2, ou 3 dimensions
35!
36!=================================================================
37!
38!      This is a modified version that accepts spectrally varying input
39!      RW (2010)
40!
41!=================================================================
42 
43! Addition by RW (2010) to allow OLR to be saved in .nc format
44      use radinc_h, only : L_NSPECTI
45
46      implicit none
47
48! Commons
49#include "dimensions.h"
50#include "dimphys.h"
51#include "paramet.h"
52#include "control.h"
53#include "comvert.h"
54#include "comgeom.h"
55#include "description.h"
56#include "netcdf.inc"
57#include "temps.h"
58#include "surfdat.h"
59
60! Arguments on input:
61      integer ngrid
62      character (len=*) :: nom,titre,unite
63      integer dim
64      real px(ngrid,L_NSPECTI)
65
66! Local variables:
67
68!      real dx3(iip1,jjp1,llm) ! to store a 3D data set
69!      real dx2(iip1,jjp1)     ! to store a 2D (surface) data set
70!      real dx0
71
72      real date
73
74      REAL phis(ip1jmp1)
75
76      integer irythme
77      integer ierr
78      integer iq
79      integer i,j,l,zmax , ig0
80
81      integer zitau
82      character firstnom*20
83      SAVE firstnom
84      SAVE zitau
85      SAVE date
86      data firstnom /'1234567890'/
87      data zitau /0/
88
89! Ajouts
90      integer, save :: ntime=0
91      integer :: idim,varid
92      integer :: nid
93      character (len =50):: fichnom
94      integer, dimension(4) :: id
95      integer, dimension(4) :: edges,corner
96
97! added by RDW for OLR output
98       real dx3(iip1,jjp1,L_NSPECTI) ! to store the data set
99
100
101!***************************************************************
102!Sortie des variables au rythme voulu
103
104      irythme = int(ecritphy) ! sortie au rythme de ecritphy
105!     irythme = iconser  ! sortie au rythme des variables de controle
106!     irythme = iphysiq  ! sortie a tous les pas physique
107!     irythme = iecri*day_step ! sortie au rythme des fichiers histoires
108!     irythme = periodav*day_step ! sortie au rythme des fichiers histmoy
109
110!***************************************************************
111
112! The following test is here to enforce that writediagfi is not used with the
113! 1D version of the GCM
114      if (ngrid.eq.1) return
115     
116c     nom=trim((nom))
117c     unite=trim((unite))
118c     titre=trim((titre))
119
120! Initialisation of 'firstnom' and create/open the "diagfi.nc" NetCDF file
121! ------------------------------------------------------------------------
122! (Au tout premier appel de la subroutine durant le run.)
123
124      fichnom="diagspecIR.nc"
125
126      if (firstnom.eq.'1234567890') then ! .true. for the very first call
127      !  to this subroutine; now set 'firstnom'
128         firstnom = nom
129         ! just to be sure, check that firstnom is large enough to hold nom
130         if (len_trim(firstnom).lt.len_trim(nom)) then
131           write(*,*) "writediagfi: Error !!!"
132           write(*,*) "   firstnom string not long enough!!"
133           write(*,*) "   increase its size to at least ",len_trim(nom)
134           stop
135         endif
136
137         ! Create the NetCDF file
138         ierr = NF_CREATE(fichnom, NF_CLOBBER, nid)
139         ! Define the 'Time' dimension
140         ierr = nf_def_dim(nid,"Time",NF_UNLIMITED,idim)
141         ! Define the 'Time' variable
142#ifdef NC_DOUBLE
143         ierr = NF_DEF_VAR (nid, "Time", NF_DOUBLE, 1, idim,varid)
144#else
145         ierr = NF_DEF_VAR (nid, "Time", NF_FLOAT, 1, idim,varid)
146#endif
147         ! Add a long_name attribute
148         ierr = NF_PUT_ATT_TEXT (nid, varid, "long_name",
149     .          4,"Time")
150         ! Add a units attribute
151         ierr = NF_PUT_ATT_TEXT(nid, varid,'units',29,
152     .          "days since 0000-00-0 00:00:00")
153         ! Switch out of NetCDF Define mode
154         ierr = NF_ENDDEF(nid)
155
156         ! write "header" of file (longitudes, latitudes, geopotential, ...)
157         call gr_fi_dyn(1,ngrid,iip1,jjp1,phisfi,phis)
158!         call iniwrite(nid,day_ini,phis)
159         call iniwrite_specIR(nid,day_ini,phis)
160
161         zitau = -1 ! initialize zitau
162      else
163         ! Open the NetCDF file
164         ierr = NF_OPEN(fichnom,NF_WRITE,nid)
165      endif ! if (firstnom.eq.'1234567890')
166
167! Increment time index 'zitau' if it is the "firstcall" (at given time level)
168! to writediagfi
169!------------------------------------------------------------------------
170      if (nom.eq.firstnom) then
171          zitau = zitau + iphysiq
172      end if
173
174!--------------------------------------------------------
175! Write the variables to output file if it's time to do so
176!--------------------------------------------------------
177
178      if ( MOD(zitau+1,irythme) .eq.0.) then
179
180! Compute/write/extend 'Time' coordinate (date given in days)
181! (done every "first call" (at given time level) to writediagfi)
182! Note: date is incremented as 1 step ahead of physics time
183!       (like the 'histoire' outputs)
184!--------------------------------------------------------
185
186        if (nom.eq.firstnom) then
187
188        ! We have identified a "first call" (at given date)
189           ntime=ntime+1 ! increment # of stored time steps
190           ! compute corresponding date (in days and fractions thereof)
191           date= float (zitau +1)/float (day_step)
192           ! Get NetCDF ID of 'Time' variable
193           ierr= NF_INQ_VARID(nid,"Time",varid)
194
195           !print*,'in writediagfi_spec.F, time=',varid
196
197           ! Write (append) the new date to the 'Time' array
198#ifdef NC_DOUBLE
199           ierr= NF_PUT_VARA_DOUBLE(nid,varid,ntime,1,date)
200#else
201           ierr= NF_PUT_VARA_REAL(nid,varid,ntime,1,date)
202#endif
203           if (ierr.ne.NF_NOERR) then
204              write(*,*) "***** PUT_VAR matter in writediagspec_nc"
205              write(*,*) "***** with time"
206              write(*,*) 'ierr=', ierr   
207c             call abort
208           endif
209
210           write(6,*)'WRITEDIAGSPEC: date= ', date
211        end if ! of if (nom.eq.firstnom)
212
213
214 
215!Case of a 3D variable
216!---------------------
217        if (dim.eq.3) then
218
219!         recast (copy) variable from physics grid to dynamics grid
220           DO l=1,L_NSPECTI
221             DO i=1,iip1
222                dx3(i,1,l)=px(1,l)
223                dx3(i,jjp1,l)=px(ngrid,l)
224             ENDDO
225             DO j=2,jjm
226                ig0= 1+(j-2)*iim
227                DO i=1,iim
228                   dx3(i,j,l)=px(ig0+i,l)
229                ENDDO
230                dx3(iip1,j,l)=dx3(1,j,l)
231             ENDDO
232           ENDDO
233
234! name of the variable
235           ierr= NF_INQ_VARID(nid,nom,varid)
236           if (ierr /= NF_NOERR) then
237! corresponding dimensions
238              ierr= NF_INQ_DIMID(nid,"longitude",id(1))
239              ierr= NF_INQ_DIMID(nid,"latitude",id(2))
240              ierr= NF_INQ_DIMID(nid,"bandsIR",id(3))
241              ierr= NF_INQ_DIMID(nid,"Time",id(4))
242
243! Create the variable if it doesn't exist yet
244
245              write (*,*) "=========================="
246              write (*,*) "DIAGSPEC: creating variable ",nom
247              call def_var(nid,nom,titre,unite,4,id,varid,ierr)
248
249           endif
250
251           corner(1)=1
252           corner(2)=1
253           corner(3)=1
254           corner(4)=ntime
255
256           edges(1)=iip1
257           edges(2)=jjp1
258           edges(3)=L_NSPECTI
259           edges(4)=1
260#ifdef NC_DOUBLE
261           ierr= NF_PUT_VARA_DOUBLE(nid,varid,corner,edges,dx3)
262#else
263           ierr= NF_PUT_VARA_REAL(nid,varid,corner,edges,dx3)
264#endif
265
266           if (ierr.ne.NF_NOERR) then
267              write(*,*) "***** PUT_VAR problem in writediagspec"
268              write(*,*) "***** with ",nom
269              write(*,*) 'ierr=', ierr
270             call abort
271           endif
272
273        endif ! of if (dim.eq.3) elseif(dim.eq.2)...
274
275      endif ! of if ( MOD(zitau+1,irythme) .eq.0.)
276
277      ierr= NF_CLOSE(nid)
278
279      end
Note: See TracBrowser for help on using the repository browser.