1 | SUBROUTINE aerave ( ndata, |
---|
2 | & longdata,epdata,omegdata,gdata, |
---|
3 | & longref,epref,temp,nir,longir |
---|
4 | & ,epir,omegir,gir,qref,omegaref ) |
---|
5 | IMPLICIT NONE |
---|
6 | c....................................................................... |
---|
7 | c |
---|
8 | c R.Fournier 02/1996 |
---|
9 | c (modif F.Forget 02/1996) |
---|
10 | c le spectre est decoupe en "nir" bandes et cette routine calcule |
---|
11 | c les donnees radiatives moyenne sur chaque bande : l'optimisation |
---|
12 | c est faite pour une temperature au sol "temp" et une epaisseur |
---|
13 | c optique de l'atmosphere "epref" a la longueur d'onde "longref" |
---|
14 | c |
---|
15 | c dans la version actuelle, les ponderations sont independantes de |
---|
16 | c l'epaisseur optique : c'est a dire que "omegir", "gir" |
---|
17 | c et "epir/epre" sont independants de "epref". |
---|
18 | c en effet les ponderations sont choisies pour une solution exacte |
---|
19 | c en couche mince et milieu isotherme. |
---|
20 | c |
---|
21 | c entree |
---|
22 | c |
---|
23 | c ndata : taille des champs data |
---|
24 | c longdata,epdata,omegdata,gdata : proprietes radiative de l'aerosol |
---|
25 | c (longdata longueur d'onde en METRES) |
---|
26 | c * longref : longueur d'onde a laquelle l'epaisseur optique |
---|
27 | c est connue |
---|
28 | c * epref : epaisseur optique a longref |
---|
29 | c * temp : temperature choisie pour la ponderation (Planck) |
---|
30 | c * nir : nombre d'intervals dans la discretisation spectrale |
---|
31 | c du GCM |
---|
32 | c * longir : longueurs d'onde definissant ces intervals |
---|
33 | c |
---|
34 | c sortie |
---|
35 | c |
---|
36 | c * epir : epaisseur optique moyenne pour chaque interval |
---|
37 | c * omegir : "scattering albedo" moyen pour chaque interval |
---|
38 | c * gir : "assymetry factor" moyen pour chaque interval |
---|
39 | c * qref : extinction coefficient at reference wavelength |
---|
40 | c * omegaref : single scat. albedo at reference wavelength |
---|
41 | c |
---|
42 | c....................................................................... |
---|
43 | c |
---|
44 | REAL longref |
---|
45 | REAL epref |
---|
46 | REAL temp |
---|
47 | INTEGER nir |
---|
48 | REAL longir(nir+1) |
---|
49 | REAL epir(nir) |
---|
50 | REAL omegir(nir) |
---|
51 | REAL gir(nir) |
---|
52 | c |
---|
53 | c....................................................................... |
---|
54 | c |
---|
55 | INTEGER iir,nirmx |
---|
56 | PARAMETER (nirmx=100) |
---|
57 | INTEGER idata,ndata |
---|
58 | c |
---|
59 | c....................................................................... |
---|
60 | c |
---|
61 | REAL emit |
---|
62 | REAL totalemit(nirmx) |
---|
63 | REAL longdata(ndata),epdata(ndata) |
---|
64 | & ,omegdata(ndata),gdata(ndata) |
---|
65 | REAL qextcorrdata(ndata) |
---|
66 | INTEGER ibande,nbande |
---|
67 | PARAMETER (nbande=1000) |
---|
68 | REAL long,deltalong |
---|
69 | INTEGER ilong |
---|
70 | INTEGER i1,i2 |
---|
71 | REAL c1,c2 |
---|
72 | REAL factep,qextcorr,omeg,g |
---|
73 | REAL qref,omegaref |
---|
74 | c |
---|
75 | c....................................................................... |
---|
76 | c |
---|
77 | DOUBLE PRECISION tmp1 |
---|
78 | REAL tmp2,tmp3 |
---|
79 | c |
---|
80 | c |
---|
81 | long=longref |
---|
82 | c |
---|
83 | c******************************************************** |
---|
84 | c interpolation |
---|
85 | ilong=1 |
---|
86 | DO idata=2,ndata |
---|
87 | IF (long.gt.longdata(idata)) ilong=idata |
---|
88 | ENDDO |
---|
89 | i1=ilong |
---|
90 | i2=ilong+1 |
---|
91 | IF (i2.gt.ndata) i2=ndata |
---|
92 | IF (long.lt.longdata(1)) i2=1 |
---|
93 | IF (i1.eq.i2) THEN |
---|
94 | c1=1.E+0 |
---|
95 | c2=0.E+0 |
---|
96 | ELSE |
---|
97 | c1=(longdata(i2)-long) / (longdata(i2)-longdata(i1)) |
---|
98 | c2=(longdata(i1)-long) / (longdata(i1)-longdata(i2)) |
---|
99 | ENDIF |
---|
100 | c******************************************************** |
---|
101 | c |
---|
102 | qref=c1*epdata(i1)+c2*epdata(i2) |
---|
103 | omegaref=c1*omegdata(i1)+c2*omegdata(i2) |
---|
104 | factep=qref/epref |
---|
105 | DO idata=1,ndata |
---|
106 | qextcorrdata(idata)=epdata(idata)/factep |
---|
107 | ENDDO |
---|
108 | c |
---|
109 | c....................................................................... |
---|
110 | c |
---|
111 | DO iir=1,nir |
---|
112 | c |
---|
113 | c....................................................................... |
---|
114 | c |
---|
115 | deltalong=(longir(iir+1)-longir(iir)) / nbande |
---|
116 | totalemit(iir)=0.E+0 |
---|
117 | epir(iir)=0.E+0 |
---|
118 | omegir(iir)=0.E+0 |
---|
119 | gir(iir)=0.E+0 |
---|
120 | c |
---|
121 | c....................................................................... |
---|
122 | c |
---|
123 | DO ibande=1,nbande |
---|
124 | c |
---|
125 | c....................................................................... |
---|
126 | c |
---|
127 | long=longir(iir) + (ibande-0.5E+0) * deltalong |
---|
128 | CALL blackl(DBLE(long),DBLE(temp),tmp1) |
---|
129 | emit=REAL(tmp1) |
---|
130 | c |
---|
131 | c....................................................................... |
---|
132 | c |
---|
133 | c******************************************************** |
---|
134 | c interpolation |
---|
135 | ilong=1 |
---|
136 | DO idata=2,ndata |
---|
137 | IF (long.gt.longdata(idata)) ilong=idata |
---|
138 | ENDDO |
---|
139 | i1=ilong |
---|
140 | i2=ilong+1 |
---|
141 | IF (i2.gt.ndata) i2=ndata |
---|
142 | IF (long.lt.longdata(1)) i2=1 |
---|
143 | IF (i1.eq.i2) THEN |
---|
144 | c1=1.E+0 |
---|
145 | c2=0.E+0 |
---|
146 | ELSE |
---|
147 | c1=(longdata(i2)-long) / (longdata(i2)-longdata(i1)) |
---|
148 | c2=(longdata(i1)-long) / (longdata(i1)-longdata(i2)) |
---|
149 | ENDIF |
---|
150 | c******************************************************** |
---|
151 | c |
---|
152 | qextcorr=c1*qextcorrdata(i1)+c2*qextcorrdata(i2) |
---|
153 | omeg=c1*omegdata(i1)+c2*omegdata(i2) |
---|
154 | g=c1*gdata(i1)+c2*gdata(i2) |
---|
155 | c |
---|
156 | c....................................................................... |
---|
157 | c |
---|
158 | totalemit(iir)=totalemit(iir)+deltalong*emit |
---|
159 | epir(iir)=epir(iir)+deltalong*emit*qextcorr |
---|
160 | omegir(iir)=omegir(iir)+deltalong*emit*omeg*qextcorr |
---|
161 | gir(iir)=gir(iir)+deltalong*emit*omeg*qextcorr*g |
---|
162 | c |
---|
163 | c....................................................................... |
---|
164 | c |
---|
165 | ENDDO |
---|
166 | c |
---|
167 | c....................................................................... |
---|
168 | c |
---|
169 | gir(iir)=gir(iir)/omegir(iir) |
---|
170 | omegir(iir)=omegir(iir)/epir(iir) |
---|
171 | epir(iir)=epir(iir)/totalemit(iir) |
---|
172 | c |
---|
173 | c....................................................................... |
---|
174 | c |
---|
175 | ENDDO |
---|
176 | c |
---|
177 | c...................................................................... |
---|
178 | c |
---|
179 | c Diagnostic de controle si on moyenne sur tout le spectre vis ou IR : |
---|
180 | c ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ |
---|
181 | c tmp2=0.E+0 |
---|
182 | c DO iir=1,nir |
---|
183 | c tmp2=tmp2+totalemit(iir) |
---|
184 | c ENDDO |
---|
185 | c tmp3=5.67E-8 * temp**4 |
---|
186 | c IF (abs((tmp2-tmp3)/tmp3).gt.0.05E+0) THEN |
---|
187 | c PRINT *,'!!!! <---> il manque du Planck (voir moyenne.F)' |
---|
188 | c PRINT *,'somme des bandes :',tmp2,'--- Planck:',tmp3 |
---|
189 | c ENDIF |
---|
190 | c |
---|
191 | c...................................................................... |
---|
192 | c |
---|
193 | RETURN |
---|
194 | END |
---|