source: trunk/LMDZ.TITAN/libf/dynphy_lonlat/phytitan/start2archive.F @ 1670

Last change on this file since 1670 was 1670, checked in by jvatant, 8 years ago

Adapts modifs of LMDZ.GENERIC r1669 to LMDZ.TITAN

cf log r1669 :
"""
Added possibility to run without a startfi.nc file (mainly usefull for
tests with coupling with dynamico dynamical core):

  • added flag "startphy_file" flag (.false. if doing an "academic" start on the physics side).
  • turned phyetat0.F90 into module phyetat0_mod.F90
  • turned tabfi.F into module tabfi_mod.F90 and added handling of startphy_file==.false. case
  • extra initializations in physiq_mod for startphy_file==.false. case.

EM
"""
JVO

File size: 15.9 KB
Line 
1c=======================================================================
2      PROGRAM start2archive
3c=======================================================================
4c
5c
6c   Date:    01/1997
7c   ----
8c
9c
10c   Objet:   Passage des  fichiers netcdf d'etat initial "start" et
11c   -----    "startfi" a un fichier netcdf unique "start_archive"
12c
13c  "start_archive" est une banque d'etats initiaux:
14c  On peut stocker plusieurs etats initiaux dans un meme fichier "start_archive"
15c    (Veiller dans ce cas avoir un day_ini different pour chacun des start)
16c
17c
18c
19c=======================================================================
20
21      use infotrac, only: infotrac_init, nqtot, tname
22      USE comsoil_h
23     
24!      USE comgeomfi_h, ONLY: lati, long, area
25!      use control_mod
26!      use comgeomphy, only: initcomgeomphy
27! to use  'getin'
28      USE ioipsl_getincom
29      USE planete_mod, only: year_day
30      USE mod_const_mpi, ONLY: COMM_LMDZ
31      USE control_mod, only: planet_type
32      use filtreg_mod, only: inifilr
33      USE comvert_mod, ONLY: ap,bp
34      USE comconst_mod, ONLY: daysec,dtphys,rad,g,r,cpp
35      USE temps_mod, ONLY: day_ini
36      USE iniphysiq_mod, ONLY: iniphysiq
37      use phyetat0_mod, only: phyetat0
38      implicit none
39
40      include "dimensions.h"
41      integer, parameter :: ngridmx = (2+(jjm-1)*iim - 1/jjm)
42      include "paramet.h"
43      include "comdissip.h"
44      include "comgeom.h"
45!#include "control.h"
46
47!#include "dimphys.h"
48!#include "planete.h"
49!#include"advtrac.h"
50      include "netcdf.inc"
51c-----------------------------------------------------------------------
52c   Declarations
53c-----------------------------------------------------------------------
54
55c variables dynamiques du GCM
56c -----------------------------
57      REAL vcov(ip1jm,llm),ucov(ip1jmp1,llm) ! vents covariants
58      REAL teta(ip1jmp1,llm)                    ! temperature potentielle
59      REAL,ALLOCATABLE :: q(:,:,:)   ! champs advectes
60      REAL pks(ip1jmp1)                      ! exner (f pour filtre)
61      REAL pk(ip1jmp1,llm)
62      REAL pkf(ip1jmp1,llm)
63      REAL beta(iip1,jjp1,llm)
64      REAL phis(ip1jmp1)                     ! geopotentiel au sol
65      REAL masse(ip1jmp1,llm)                ! masse de l'atmosphere
66      REAL ps(ip1jmp1)                       ! pression au sol
67      REAL p3d(iip1, jjp1, llm+1)            ! pression aux interfaces
68     
69c Variable Physiques (grille physique)
70c ------------------------------------
71      REAL tsurf(ngridmx)        ! Surface temperature
72      REAL,ALLOCATABLE :: tsoil(:,:) ! Soil temperature
73      REAL q2(ngridmx,llm+1)
74      REAL,ALLOCATABLE :: qsurf(:,:)
75      REAL emis(ngridmx)
76      INTEGER start,length
77      PARAMETER (length = 100)
78      REAL tab_cntrl_fi(length) ! tableau des parametres de startfi
79      REAL tab_cntrl_dyn(length) ! tableau des parametres de start
80      INTEGER*4 day_ini_fi
81
82
83c Variable naturelle / grille scalaire
84c ------------------------------------
85      REAL T(ip1jmp1,llm),us(ip1jmp1,llm),vs(ip1jmp1,llm)
86      REAL tsurfS(ip1jmp1)
87      REAL,ALLOCATABLE :: tsoilS(:,:)
88      REAL,ALLOCATABLE :: ithS(:,:) ! Soil Thermal Inertia
89      REAL q2S(ip1jmp1,llm+1)
90      REAL,ALLOCATABLE :: qsurfS(:,:)
91      REAL emisS(ip1jmp1)
92
93
94c Variables intermediaires : vent naturel, mais pas coord scalaire
95c----------------------------------------------------------------
96      REAL vn(ip1jm,llm),un(ip1jmp1,llm)
97
98c Autres  variables
99c -----------------
100      LOGICAL startdrs
101      INTEGER Lmodif
102
103      REAL ptotal
104      REAL timedyn,timefi !fraction du jour dans start, startfi
105      REAL date
106
107      CHARACTER*2 str2
108      CHARACTER*80 fichier
109      data  fichier /'startfi'/
110
111      INTEGER ij, l,i,j,isoil,iq
112      character*80      fichnom
113      integer :: ierr,ntime
114      integer :: nq,numvanle
115      character(len=30) :: txt ! to store some text
116
117c Netcdf
118c-------
119      integer varid,dimid,timelen
120      INTEGER nid,nid1
121
122c-----------------------------------------------------------------------
123c   Initialisations
124c-----------------------------------------------------------------------
125
126      CALL defrun_new(99, .TRUE. )
127
128      planet_type="titan"
129
130c=======================================================================
131c Lecture des donnees
132c=======================================================================
133! Load tracer number and names:
134      call infotrac_init
135
136! allocate arrays:
137      allocate(q(ip1jmp1,llm,nqtot))
138      allocate(qsurf(ngridmx,nqtot))
139      allocate(qsurfS(ip1jmp1,nqtot))
140! other array allocations:
141!      call ini_comsoil_h(ngridmx) ! done via iniphysiq
142
143      fichnom = 'start.nc'
144      CALL dynetat0(fichnom,vcov,ucov,teta,q,masse,
145     .       ps,phis,timedyn)
146
147! load 'controle' array from dynamics start file
148
149       ierr = NF_OPEN (fichnom, NF_NOWRITE,nid1)
150       IF (ierr.NE.NF_NOERR) THEN
151         write(6,*)' Pb d''ouverture du fichier'//trim(fichnom)
152        CALL ABORT
153       ENDIF
154                                               
155      ierr = NF_INQ_VARID (nid1, "controle", varid)
156      IF (ierr .NE. NF_NOERR) THEN
157       PRINT*, "start2archive: Le champ <controle> est absent"
158       CALL abort
159      ENDIF
160#ifdef NC_DOUBLE
161       ierr = NF_GET_VAR_DOUBLE(nid1, varid, tab_cntrl_dyn)
162#else
163      ierr = NF_GET_VAR_REAL(nid1, varid, tab_cntrl_dyn)
164#endif
165       IF (ierr .NE. NF_NOERR) THEN
166          PRINT*, "start2archive: Lecture echoue pour <controle>"
167          CALL abort
168       ENDIF
169
170      ierr = NF_CLOSE(nid1)
171
172! Get value of the "subsurface_layers" dimension from physics start file
173      fichnom = 'startfi.nc'
174      ierr = NF_OPEN (fichnom, NF_NOWRITE,nid1)
175       IF (ierr.NE.NF_NOERR) THEN
176         write(6,*)' Pb d''ouverture du fichier'//trim(fichnom)
177        CALL ABORT
178       ENDIF
179      ierr = NF_INQ_DIMID(nid1,"subsurface_layers",varid)
180      IF (ierr .NE. NF_NOERR) THEN
181       PRINT*, "start2archive: No subsurface_layers dimension!!"
182       CALL abort
183      ENDIF
184      ierr = NF_INQ_DIMLEN(nid1,varid,nsoilmx)
185      IF (ierr .NE. NF_NOERR) THEN
186       PRINT*, "start2archive: Failed reading subsurface_layers value!!"
187       CALL abort
188      ENDIF
189      ierr = NF_CLOSE(nid1)
190     
191      ! allocate arrays of nsoilmx size
192      allocate(tsoil(ngridmx,nsoilmx))
193      allocate(tsoilS(ip1jmp1,nsoilmx))
194      allocate(ithS(ip1jmp1,nsoilmx))
195
196c-----------------------------------------------------------------------
197c   Initialisations
198c-----------------------------------------------------------------------
199
200      CALL defrun_new(99, .FALSE. )
201      call iniconst
202      call inigeom
203      call inifilr
204
205! Initialize the physics
206         CALL iniphysiq(iim,jjm,llm,
207     &                  (jjm-1)*iim+2,comm_lmdz,
208     &                  daysec,day_ini,dtphys,
209     &                  rlatu,rlatv,rlonu,rlonv,
210     &                  aire,cu,cv,rad,g,r,cpp,
211     &                  1)
212
213      fichnom = 'startfi.nc'
214      Lmodif=0
215
216
217      CALL phyetat0(.true.,ngridmx,llm,fichnom,0,Lmodif,nsoilmx,nqtot,
218     .      day_ini_fi,timefi,
219     .      tsurf,tsoil,emis,q2,qsurf)
220
221
222
223! load 'controle' array from physics start file
224
225       ierr = NF_OPEN (fichnom, NF_NOWRITE,nid1)
226       IF (ierr.NE.NF_NOERR) THEN
227         write(6,*)' Pb d''ouverture du fichier'//trim(fichnom)
228        CALL ABORT
229       ENDIF
230                                               
231      ierr = NF_INQ_VARID (nid1, "controle", varid)
232      IF (ierr .NE. NF_NOERR) THEN
233       PRINT*, "start2archive: Le champ <controle> est absent"
234       CALL abort
235      ENDIF
236#ifdef NC_DOUBLE
237       ierr = NF_GET_VAR_DOUBLE(nid1, varid, tab_cntrl_fi)
238#else
239      ierr = NF_GET_VAR_REAL(nid1, varid, tab_cntrl_fi)
240#endif
241       IF (ierr .NE. NF_NOERR) THEN
242          PRINT*, "start2archive: Lecture echoue pour <controle>"
243          CALL abort
244       ENDIF
245
246      ierr = NF_CLOSE(nid1)
247
248
249c-----------------------------------------------------------------------
250c Controle de la synchro
251c-----------------------------------------------------------------------
252!mars a voir      if ((day_ini_fi.ne.day_ini).or.(abs(timefi-timedyn).gt.1.e-10))
253      if ((day_ini_fi.ne.day_ini))
254     &  stop ' Probleme de Synchro entre start et startfi !!!'
255
256
257c *****************************************************************
258c    Option : Reinitialisation des dates dans la premieres annees :
259       do while (day_ini.ge.year_day)
260          day_ini=day_ini-year_day
261       enddo
262c *****************************************************************
263
264      CALL pression(ip1jmp1, ap, bp, ps, p3d)
265      call exner_hyb(ip1jmp1, ps, p3d, beta, pks, pk, pkf)
266
267c=======================================================================
268c Transformation EN VARIABLE NATURELLE / GRILLE SCALAIRE si necessaire
269c=======================================================================
270c  Les variables modeles dependent de la resolution. Il faut donc
271c  eliminer les facteurs responsables de cette dependance
272c  (pour utiliser newstart)
273c=======================================================================
274
275c-----------------------------------------------------------------------
276c Vent   (depend de la resolution horizontale)
277c-----------------------------------------------------------------------
278c
279c ucov --> un  et  vcov --> vn
280c un --> us  et   vn --> vs
281c
282c-----------------------------------------------------------------------
283
284      call covnat(llm,ucov, vcov, un, vn)
285      call wind_scal(un,vn,us,vs)
286
287c-----------------------------------------------------------------------
288c Temperature  (depend de la resolution verticale => de "sigma.def")
289c-----------------------------------------------------------------------
290c
291c h --> T
292c
293c-----------------------------------------------------------------------
294
295      DO l=1,llm
296         DO ij=1,ip1jmp1
297            T(ij,l)=teta(ij,l)*pk(ij,l)/cpp !mars deduit de l'equation dans newstart
298         ENDDO
299      ENDDO
300
301c-----------------------------------------------------------------------
302c Variable physique
303c-----------------------------------------------------------------------
304c
305c tsurf --> tsurfS
306c tsoil --> tsoilS
307c emis --> emisS
308c q2 --> q2S
309c qsurf --> qsurfS
310c
311c-----------------------------------------------------------------------
312
313      call gr_fi_dyn(1,ngridmx,iip1,jjp1,tsurf,tsurfS)
314      call gr_fi_dyn(nsoilmx,ngridmx,iip1,jjp1,tsoil,tsoilS)
315      ! Note: thermal inertia "inertiedat" is in comsoil.h
316      call gr_fi_dyn(nsoilmx,ngridmx,iip1,jjp1,inertiedat,ithS)
317      call gr_fi_dyn(1,ngridmx,iip1,jjp1,emis,emisS)
318      call gr_fi_dyn(llm+1,ngridmx,iip1,jjp1,q2,q2S)
319      call gr_fi_dyn(nqtot,ngridmx,iip1,jjp1,qsurf,qsurfS)
320
321c=======================================================================
322c Info pour controler
323c=======================================================================
324
325      ptotal =  0.
326      DO j=1,jjp1
327         DO i=1,iim
328           ptotal=ptotal+aire(i+(iim+1)*(j-1))*ps(i+(iim+1)*(j-1))/g
329         ENDDO
330      ENDDO
331      write(*,*)'Ancienne grille : masse de l''atm :',ptotal
332
333c-----------------------------------------------------------------------
334c Passage de "ptotal"  par tab_cntrl_fi
335c-----------------------------------------------------------------------
336
337      tab_cntrl_fi(49) = ptotal
338      tab_cntrl_fi(50) = 0.
339
340c=======================================================================
341c Ecriture dans le fichier  "start_archive"
342c=======================================================================
343
344c-----------------------------------------------------------------------
345c Ouverture de "start_archive"
346c-----------------------------------------------------------------------
347
348      ierr = NF_OPEN ('start_archive.nc', NF_WRITE,nid)
349 
350c-----------------------------------------------------------------------
351c  si "start_archive" n'existe pas:
352c    1_ ouverture
353c    2_ creation de l'entete dynamique ("ini_archive")
354c-----------------------------------------------------------------------
355c ini_archive:
356c On met dans l'entete le tab_cntrl dynamique (1 a 16)
357c  On y ajoute les valeurs du tab_cntrl_fi (a partir de 51)
358c  En plus les deux valeurs ptotal et co2icetotal (99 et 100)
359c-----------------------------------------------------------------------
360
361      if (ierr.ne.NF_NOERR) then
362         write(*,*)'OK, Could not open file "start_archive.nc"'
363         write(*,*)'So let s create a new "start_archive"'
364         ierr = NF_CREATE('start_archive.nc', NF_CLOBBER, nid)
365         call ini_archive(nid,day_ini,phis,ithS,tab_cntrl_fi,
366     &                                          tab_cntrl_dyn)
367      endif
368
369c-----------------------------------------------------------------------
370c Ecriture de la coordonnee temps (date en jours)
371c-----------------------------------------------------------------------
372
373      date = day_ini
374      ierr= NF_INQ_VARID(nid,"Time",varid)
375      ierr= NF_INQ_DIMID(nid,"Time",dimid)
376      ierr= NF_INQ_DIMLEN(nid,dimid,timelen)
377      ntime=timelen+1
378
379      write(*,*) "******************"
380      write(*,*) "ntime",ntime
381      write(*,*) "******************"
382#ifdef NC_DOUBLE
383      ierr= NF_PUT_VARA_DOUBLE(nid,varid,ntime,1,date)
384#else
385      ierr= NF_PUT_VARA_REAL(nid,varid,ntime,1,date)
386#endif
387      if (ierr.ne.NF_NOERR) then
388         write(*,*) "time matter ",NF_STRERROR(ierr)
389         stop
390      endif
391
392c-----------------------------------------------------------------------
393c Ecriture des champs  (emis,ps,Tsurf,T,u,v,q2,q,qsurf)
394c-----------------------------------------------------------------------
395c ATTENTION: q2 a une couche de plus!!!!
396c    Pour creer un fichier netcdf lisible par grads,
397c    On passe donc une des couches de q2 a part
398c    comme une variable 2D (la couche au sol: "q2surf")
399c    Les lmm autres couches sont nommees "q2atm" (3D)
400c-----------------------------------------------------------------------
401
402      call write_archive(nid,ntime,'emis','grd emis',' ',2,emisS)
403      call write_archive(nid,ntime,'ps','Psurf','Pa',2,ps)
404      call write_archive(nid,ntime,'tsurf','surf T','K',2,tsurfS)
405      call write_archive(nid,ntime,'temp','temperature','K',3,t)
406      call write_archive(nid,ntime,'u','Vent zonal','m.s-1',3,us)
407      call write_archive(nid,ntime,'v','Vent merid','m.s-1',3,vs)
408      call write_archive(nid,ntime,'q2surf','wind variance','m2.s-2',2,
409     .              q2S)
410      call write_archive(nid,ntime,'q2atm','wind variance','m2.s-2',3,
411     .              q2S(1,2))
412
413c-----------------------------------------------------------------------
414c Ecriture du champs  q  ( q[1,nqtot] )
415c-----------------------------------------------------------------------
416      do iq=1,nqtot
417        call write_archive(nid,ntime,tname(iq),'tracer','kg/kg',
418     &         3,q(1,1,iq))
419      end do
420c-----------------------------------------------------------------------
421c Ecriture du champs  qsurf  ( qsurf[1,nqtot] )
422c-----------------------------------------------------------------------
423      do iq=1,nqtot
424        txt=trim(tname(iq))//"_surf"
425        call write_archive(nid,ntime,txt,'Tracer on surface',
426     &  'kg.m-2',2,qsurfS(1,iq))
427      enddo
428
429
430c-----------------------------------------------------------------------
431c Ecriture du champs  tsoil  ( Tg[1,10] )
432c-----------------------------------------------------------------------
433c "tsoil" Temperature au sol definie dans 10 couches dans le sol
434c   Les 10 couches sont lues comme 10 champs
435c  nommees Tg[1,10]
436
437c      do isoil=1,nsoilmx
438c       write(str2,'(i2.2)') isoil
439c       call write_archive(nid,ntime,'Tg'//str2,'Ground Temperature ',
440c     .   'K',2,tsoilS(1,isoil))
441c      enddo
442
443! Write soil temperatures tsoil
444      call write_archive(nid,ntime,'tsoil','Soil temperature',
445     &     'K',-3,tsoilS)
446
447! Write soil thermal inertia
448      call write_archive(nid,ntime,'inertiedat',
449     &     'Soil thermal inertia',
450     &     'J.s-1/2.m-2.K-1',-3,ithS)
451
452! Write (0D) volumetric heat capacity (stored in comsoil.h)
453!      call write_archive(nid,ntime,'volcapa',
454!     &     'Soil volumetric heat capacity',
455!     &     'J.m-3.K-1',0,volcapa)
456! Note: no need to write volcapa, it is stored in "controle" table
457
458
459c Fin
460c-----------------------------------------------------------------------
461      ierr=NF_CLOSE(nid)
462
463      write(*,*) "start2archive: All is well that ends well."
464
465      end
Note: See TracBrowser for help on using the repository browser.