source: trunk/LMDZ.MARS/libf/phymars/start2archive.F @ 1229

Last change on this file since 1229 was 1229, checked in by emillour, 11 years ago

Mars GCM:
Some minor fixes and cleanup.

  • allocation of qsurf() was missing in start2archive
  • 'tauscaling' was missing from argument list when calling physdem1 in testphys1d

EM

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