Last change
on this file since 1243 was
1126,
checked in by slebonnois, 11 years ago
|
SL: update of Titan photochemical module to include computation of chemistry up to 1300 km
|
File size:
816 bytes
|
Rev | Line | |
---|
[1126] | 1 | subroutine cirs_haze(press,wno,taeros,taeroscat) |
---|
| 2 | IMPLICIT NONE |
---|
| 3 | |
---|
| 4 | real,intent(in) :: press,wno |
---|
| 5 | real,intent(inout):: taeros,taeroscat |
---|
| 6 | |
---|
| 7 | !--------------------------- |
---|
| 8 | ! Attention: taeros est en m-1 |
---|
| 9 | ! mais la valeur semble devoir etre multipliee par lambda (en m) pour |
---|
| 10 | ! obtenir une valeur comparable a celle fournies par Sandrine... |
---|
| 11 | ! a tirer au clair... |
---|
| 12 | !--------------------------- |
---|
| 13 | |
---|
| 14 | real :: taerosold |
---|
| 15 | logical,save :: firstcall=.true. |
---|
| 16 | |
---|
| 17 | if (firstcall) then |
---|
| 18 | print*,"CIRS HAZE" |
---|
| 19 | firstcall=.false. |
---|
| 20 | endif |
---|
| 21 | |
---|
| 22 | if (wno.eq.600.) then |
---|
| 23 | print*,press,wno,taeros,taeroscat |
---|
| 24 | endif |
---|
| 25 | |
---|
| 26 | taerosold = taeros |
---|
| 27 | |
---|
| 28 | ! modif de taeros |
---|
| 29 | |
---|
| 30 | ! taeroscat est modifie proportionnellement a taeros |
---|
| 31 | |
---|
| 32 | if (taerosold.ne.0.) then |
---|
| 33 | taeroscat = taeroscat/taerosold*taeros |
---|
| 34 | endif |
---|
| 35 | |
---|
| 36 | ! Je maintiens le cbar du calcul microphysique |
---|
| 37 | |
---|
| 38 | end subroutine cirs_haze |
---|
Note: See
TracBrowser
for help on using the repository browser.