source: trunk/mesoscale/LMDZ.MARS/libf_gcm/aeronomars/flujo.F @ 57

Last change on this file since 57 was 57, checked in by aslmd, 14 years ago

mineur LMD_MM_MARS: ajout du GCM ancienne physique, systeme maintenant complet sur SVN (ne manque que la base de donnees d'etats initiaux)

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.