source: trunk/LMDZ.TITAN/libf/phytitan/ballon.F @ 1243

Last change on this file since 1243 was 102, checked in by slebonnois, 14 years ago

SL : corrections et modifications dans phytitan correspondant a celles
faites apres compilation Venus. Titan pas encore compile.

File size: 12.2 KB
Line 
1      subroutine ballon (iam,dtphys,rjour,rsec,plat,plon,
2     i                   temp, p, u, v, geop)
3
4      use dimphy
5      implicit none
6
7c======================================================================
8c Auteur: S. Lebonnois (LMD/CNRS) date: 20091201
9c Object: Compute balloon trajectories.
10C No outputs, every quantities are written on the iam+ Files.
11c
12c Called by physiq.F if flag ballons activated:
13c
14c      integer ballons
15c (...)
16c      ballons  = 1         ! (in initialisations)
17c (...)
18C  OUVERTURE DES FICHIERS FORMATTES CONTENANT LES POSITIONS ET VITESSES
19C  DES BALLONS
20c      if (ballons.eq.1) then
21c      open(30,file='ballons-lat.out',form='formatted')
22c      open(31,file='ballons-lon.out',form='formatted')
23c      open(32,file='ballons-u.out',form='formatted')
24c      open(33,file='ballons-v.out',form='formatted')
25c      open(34,file='ballons-alt.out',form='formatted')
26c      write(*,*)'Ouverture des ballons*.out'
27c      endif !ballons
28c (...)
29C        CALL ballon(30,pdtphys,rjourvrai,gmtime,rlatd,rlond,
30CC    C               t,pplay,u,v,pphi)   ! alt above surface (smoothed for GCM)
31C     C               t,pplay,u,v,zphi)   ! alt above planet average radius
32c (...)
33C  FERMETURE DES FICHIERS FORMATTES CONTENANT LES POSITIONS ET VITESSES
34C  DES BALLONS
35c      if (ballons.eq.1) then
36c        write(*,*)'Fermeture des ballons*.out'
37c        close(30)                                     
38c        close(31)                                     
39c        close(32)                                     
40c        close(33)                                     
41c        close(34)                                     
42c      endif !ballons
43c
44C======================================================================
45c Explicit Arguments:
46c ==================
47c iam-----input-I-File number where latitudes are written
48c                 It is a formatted file that has been opened
49c                 in physiq.F
50c   other files: iam+1=longitudes
51c                iam+2=zonal speeds
52c                iam+3=meridional speeds
53c                iam+4=altitudes
54c dtphys--input-R-pas de temps physique
55c rjour---input-R-Jour compte depuis le debut de la simu (run.def)
56c rsec----input-R-Seconde de la journee
57c plat ---input-R-Latitude en degres
58c plon ---input-R-Longitude en degres
59c temp----input-R-Temperature (K) at model levels
60c p-------input-R-Pressure (Pa) at model levels
61c u-------input-R-Horizontal wind (m/s)
62c v-------input-R-Meridional wind (m/s)
63c geop----input-R-Geopotential !! above surface OR average radius
64c
65c
66c Implicit Arguments:
67c ===================
68c
69c iim--common-I: Number of longitude intervals
70c jjm--common-I: Number of latitude intervals
71c klon-common-I: Number of points seen by the physics
72c                iim*(jjm-1)+2 for instance
73c klev-common-I: Number of vertical layers
74c RPI,RKBOL--common-R: Pi, KBoltzman
75c RDAY,RA,RG-common-R: day length in s, planet radius, gravity
76c======================================================================
77c Local Variables:
78c ================
79c
80c nb    ---I: number of balloons (parameter)
81c phib  ---R: Latitude of balloon in radians
82c lamb  ---R: Longitude of balloon in radians
83c lognb ---R: log(density) of balloon
84c ub    ---R: zonal speed of balloon
85c vb    ---R: meridional speed of balloon
86c altb  ---R: altitude of balloon
87c zlat  ---R: Latitude in radians
88c zlon  ---R: Longitude in radians
89c logn  ---R: log(density)
90c alt   ---R: altitude !! above surface OR average radius
91c ull   ---R: zonal wind for one balloon on the lognb surface
92c vll   ---R: meridional wind for one balloon on the lognb surface
93c aal   ---R: altitude for one balloon on the lognb surface
94c======================================================================
95
96#include "dimensions.h"
97#include "YOMCST.h"
98c
99c ARGUMENTS
100c
101      INTEGER iam
102      REAL dtphys,rjour,rsec,plat(klon),plon(klon)
103      REAL temp(klon,klev),p(klon,klev)
104      REAL u(klon,klev),v(klon,klev),geop(klon,klev)
105c
106c Variables locales:
107c
108      INTEGER i,j,k,l,nb,n
109      parameter (nb=20)  !! Adjust the format on line 100 !!
110      INTEGER jj,ii,ll
111
112      REAL zlon(iim+1),zlat(jjm+1)
113      save zlon,zlat
114
115      REAL time
116      REAL logn(klon,klev),ull(klon),vll(klon)
117      REAL alt(klon,klev),aal(klon)
118      real ub(nb),vb(nb),phib(nb),lamb(nb),lognb(nb),altb(nb)
119      save phib,lamb,lognb
120
121      REAL factalt
122
123c RungeKutta order - If not RK, Nrk=1
124      integer Nrk,irk
125      parameter (Nrk=1)
126      real    dtrk
127
128      logical first
129      save first
130      data first/.true./
131
132      time = rjour*RDAY+rsec
133      logn(:,:) = log10(p(:,:)/(RKBOL*temp(:,:)))
134      alt(:,:)  = geop(:,:)/RG
135
136c---------------------------------------------
137C INITIALIZATIONS
138c---------------------------------------------
139      if (first) then
140
141      print*,"BALLOONS ACTIVATED"
142
143C Latitudes:
144      zlat(1)=plat(1)*RPI/180.
145      do j = 2,jjm
146         k=(j-2)*iim+2
147         zlat(j)=plat(k)*RPI/180.
148      enddo
149      zlat(jjm+1)=plat(klon)*RPI/180.
150
151C Longitudes:
152      do i = 1,iim
153         k=i+1
154         zlon(i)=plon(k)*RPI/180.
155      enddo
156      zlon(iim+1)=zlon(1)+2.*RPI
157
158c verif init     lat de 90 à -90, lon de -180 à 180
159c     print*,"Latitudes:",zlat*180./RPI
160c     print*,"Longitudes:",zlon*180./RPI
161c     stop
162
163c initial positions of balloons (in degrees for lat/lon)
164      do j=1,5
165      do i=1,4
166        k=(j-1)*4+i
167      phib(k)= (j-1)*20.*RPI/180.
168      lamb(k)= (i-3)*90.*RPI/180.   ! de -180 à 90
169c A REVOIR POUR TITAN
170      lognb(k)= log10(5.e4/(RKBOL*300.)) ! ~55km in VIRA model
171      enddo
172      enddo
173      print*,"Balloon density (m^-3)=",10.**(lognb(1))
174
175c     print*,"log(density) profile:"
176c     do l=1,klev
177c        print*,logn(klon/2,l)
178c     enddo
179c     stop !verif init
180
181      first=.false.
182      endif ! first
183c---------------------------------------------
184
185c-------------------------------------------------
186c loop over the balloons
187c-------------------------------------------------
188      do n=1,nb
189
190c Interpolation in altitudes
191c-------------------------------------------------
192        do k=1,klon
193         ll=1 ! en bas
194         do l=2,klev
195          if (lognb(n).lt.logn(k,l)) ll=l
196         enddo
197         factalt= (lognb(n)-logn(k,ll))/(logn(k,ll+1)-logn(k,ll))
198         ull(k) =   u(k,ll+1)*factalt +   u(k,ll)*(1-factalt)
199         vll(k) =   v(k,ll+1)*factalt +   v(k,ll)*(1-factalt)
200         aal(k) = alt(k,ll+1)*factalt + alt(k,ll)*(1-factalt)
201        enddo
202
203c Interpolation in latitudes and longitudes
204c-------------------------------------------
205        call wind_interp(ull,vll,aal,zlat,zlon,
206     .                   phib(n),lamb(n),ub(n),vb(n),altb(n))
207       
208      enddo ! over balloons
209c-------------------------------------------------
210
211c-------------------------------------------------
212c Output of positions and speed at time
213c-------------------------------------------------
214
215      write(iam,  100) time, phib*180./RPI
216      write(iam+1,100) time, lamb*180./RPI
217      write(iam+2,100) time, ub
218      write(iam+3,100) time, vb
219      write(iam+4,100) time, altb
220c     stop !verif init
221
222c !!!!!!!!!!!!!!!! nb !!!!!!!!!!!!!!!!!
223100   format(E14.7,20(1x,E12.5))
224
225c-------------------------------------------------
226c Implementation: positions at time+dt
227c RK order Nrk
228c-------------------------------------------------
229
230      dtrk = dtphys/Nrk
231      time=time+dtrk
232
233      do n=1,nb
234        call pos_implem(phib(n),lamb(n),ub(n),vb(n),dtrk)
235      enddo
236
237      if (Nrk.gt.1) then
238       do irk=2,Nrk
239        do n=1,nb
240          time=time+dtrk
241          call wind_interp(ull,vll,aal,zlat,zlon,
242     .                   phib(n),lamb(n),ub(n),vb(n),altb(n))
243          call pos_implem(phib(n),lamb(n),ub(n),vb(n),dtrk)
244        enddo
245       enddo
246      endif
247
248      end
249
250c======================================================================
251c======================================================================
252c======================================================================
253
254      subroutine wind_interp(map_u,map_v,map_a,latit,longit,
255     .                       phi,lam,ubal,vbal,abal)
256
257      use dimphy
258      implicit none
259
260c======================================================================
261c Auteur: S. Lebonnois (LMD/CNRS) date: 20091201
262c Object: interpolate balloon speed from its position.
263C======================================================================
264c Explicit Arguments:
265c ==================
266c map_u ---R: zonal wind on the lognb surface
267c map_v ---R: meridional wind on the lognb surface
268c map_a ---R: altitude on the lognb surface
269c latit ---R: Latitude in radians
270c longit---R: Longitude in radians
271c phi   ---R: Latitude of balloon in radians
272c lam   ---R: Longitude of balloon in radians
273c ubal  ---R: zonal speed of balloon
274c vbal  ---R: meridional speed of balloon
275c abal  ---R: altitude of balloon
276c======================================================================
277c Local Variables:
278c ================
279c
280c ujj   ---R: zonal wind interpolated in latitude
281c vjj   ---R: meridional wind interpolated in latitude
282c ajj   ---R: altitude interpolated in latitude
283c======================================================================
284
285#include "dimensions.h"
286#include "YOMCST.h"
287c
288c ARGUMENTS
289c
290      real map_u(klon),map_v(klon),map_a(klon)
291      real latit(jjm+1),longit(iim)
292      real phi,lam,ubal,vbal,abal
293c
294c Variables locales:
295c
296      INTEGER i,j,k
297      INTEGER jj,ii
298      REAL    ujj(iim+1),vjj(iim+1),ajj(iim+1)
299      REAL    factlat,factlon
300
301c Interpolation in latitudes
302c-------------------------------------------------
303        jj=1  ! POLE NORD
304        do j=2,jjm
305          if (phi.lt.latit(j)) jj=j
306        enddo
307        factlat  = (phi-latit(jj))/(latit(jj+1)-latit(jj))
308
309c pole nord
310        if (jj.eq.1) then
311         do i=1,iim
312          ujj(i) = map_u(i+1)*factlat + map_u(1)*(1-factlat)
313          vjj(i) = map_v(i+1)*factlat + map_v(1)*(1-factlat)
314          ajj(i) = map_a(i+1)*factlat + map_a(1)*(1-factlat)
315         enddo
316c pole sud
317        elseif (jj.eq.jjm) then
318         do i=1,iim
319          k = (jj-2)*iim+1+i
320          ujj(i) = map_u(klon)*factlat + map_u(k)*(1-factlat)
321          vjj(i) = map_v(klon)*factlat + map_v(k)*(1-factlat)
322          ajj(i) = map_a(klon)*factlat + map_a(k)*(1-factlat)
323         enddo
324c autres latitudes
325        else
326         do i=1,iim
327          k = (jj-2)*iim+1+i
328          ujj(i) = map_u(k+iim)*factlat + map_u(k)*(1-factlat)
329          vjj(i) = map_v(k+iim)*factlat + map_v(k)*(1-factlat)
330          ajj(i) = map_a(k+iim)*factlat + map_a(k)*(1-factlat)
331         enddo
332        endif
333        ujj(iim+1)=ujj(1)
334        vjj(iim+1)=vjj(1)
335        ajj(iim+1)=ajj(1)
336
337c Interpolation in longitudes
338c-------------------------------------------------
339        ii=1  ! lon=-180
340        do i=2,iim
341          if (lam.gt.longit(i)) ii=i
342        enddo
343        factlon = (lam-longit(ii))/(longit(ii+1)-longit(ii))
344        ubal    = ujj(ii+1)*factlon + ujj(ii)*(1-factlon)
345        vbal    = vjj(ii+1)*factlon + vjj(ii)*(1-factlon)
346        abal    = ajj(ii+1)*factlon + ajj(ii)*(1-factlon)
347
348      end
349
350c======================================================================
351c======================================================================
352c======================================================================
353
354      subroutine pos_implem(phi,lam,ubal,vbal,dt)
355
356      use dimphy
357      implicit none
358
359c======================================================================
360c Auteur: S. Lebonnois (LMD/CNRS) date: 20091201
361c Object: implementation of balloon position.
362C======================================================================
363c Explicit Arguments:
364c ==================
365c phi   ---R: Latitude of balloon in radians
366c lam   ---R: Longitude of balloon in radians
367c ubal  ---R: zonal speed of balloon
368c vbal  ---R: meridional speed of balloon
369c dt    ---R: time step
370c======================================================================
371
372#include "dimensions.h"
373#include "YOMCST.h"
374c
375c ARGUMENTS
376c
377      real phi,lam,ubal,vbal,abal,dt
378
379c incrementation longitude
380        lam = lam + ubal*dt/(RA*cos(phi))
381c maintenue entre -PI et PI:
382        do while (lam.ge.RPI)     
383              lam=lam-2*RPI
384        enddo
385        do while (lam.lt.(-1.*RPI)) 
386              lam=lam+2*RPI
387        enddo
388c incrementation latitude
389        phi = phi + vbal*dt/RA
390c maintenue entre -PI/2 et PI/2:
391        if (phi.ge.( 0.5*RPI)) phi=    RPI-phi
392        if (phi.le.(-0.5*RPI)) phi=-1.*RPI-phi
393
394      end
Note: See TracBrowser for help on using the repository browser.