source: trunk/LMDZ.MARS/libf/aeronomars/flujo.F @ 461

Last change on this file since 461 was 38, checked in by emillour, 14 years ago

Ajout du modè Martien (mon LMDZ.MARS.BETA, du 28/01/2011) dans le rértoire mars, pour pouvoir suivre plus facilement les modifs.
EM

File size: 882 bytes
Line 
1c***************************************************
2
3      subroutine flujo(date)
4
5
6c     fgg           nov 2002     first version
7c***************************************************
8
9      implicit none
10
11
12c     common variables and constants
13
14      include 'param.h'
15      include 'param_v3.h'
16
17
18c     Arguments
19
20      real date
21
22
23c     Local variable and constants
24
25      integer i
26      integer inter
27      real    nada
28
29c*************************************************
30
31      if(date.lt.1985.) date=1985.
32      if(date.gt.2001.) date=2001.
33     
34      do i=1,ninter
35        if(i.le.24) then
36          fluxtop(i)=(((ct1(i)+p1(i)*date)/2.)
37     $                *sin(2.*3.1416/11.*(date-1985.-3.1416))
38     $                +(ct2(i)+p2(i)*date)+1.)*fluxtophr(i)
39        else
40          fluxtop(i)=fluxtophr(i)
41        end if
42      end do
43     
44      return
45      end
46     
47
48
Note: See TracBrowser for help on using the repository browser.