source: trunk/LMDZ.TITAN/libf/phytitan/cirs_haze.F90 @ 1356

Last change on this file since 1356 was 1356, checked in by slebonnois, 10 years ago

SL: update to newstart/start2archive tools in Venus+Titan / additional diagnostics in radiative fluxes for Titan

File size: 831 bytes
Line 
1subroutine cirs_haze(press,wno,taeros,taeroscat,cbar)
2IMPLICIT NONE
3
4real,intent(in)   :: press,wno
5real,intent(inout):: taeros,taeroscat,cbar
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
14real         :: taerosold
15logical,save :: firstcall=.true.
16
17if (firstcall) then
18   print*,"CIRS HAZE"
19   firstcall=.false.
20endif
21
22if (wno.eq.600.) then
23 print*,press,wno,taeros,taeroscat,cbar
24endif
25
26taerosold = taeros
27
28! modif de taeros
29
30! taeroscat est modifie proportionnellement a taeros
31
32if (taerosold.ne.0.) then
33   taeroscat = taeroscat/taerosold*taeros
34endif
35
36! Je maintiens le cbar du calcul microphysique
37
38end subroutine cirs_haze
Note: See TracBrowser for help on using the repository browser.