[135] | 1 | subroutine calc_rayleigh |
---|
| 2 | |
---|
| 3 | !================================================================== |
---|
| 4 | ! |
---|
| 5 | ! Purpose |
---|
| 6 | ! ------- |
---|
| 7 | ! Average the Rayleigh scattering in each band, weighting the |
---|
| 8 | ! average by the blackbody function at temperature tstellar. |
---|
[253] | 9 | ! Works for an arbitrary mix of gases (currently CO2, N2 and |
---|
| 10 | ! H2 are possible). |
---|
[135] | 11 | ! |
---|
| 12 | ! Authors |
---|
| 13 | ! ------- |
---|
| 14 | ! Robin Wordsworth (2010) |
---|
[1016] | 15 | ! Jeremy Leconte (2012): Added option for variable gas. Improved water rayleigh (Bucholtz 1995). |
---|
[135] | 16 | ! |
---|
| 17 | ! Called by |
---|
| 18 | ! --------- |
---|
| 19 | ! setspv.F |
---|
| 20 | ! |
---|
| 21 | ! Calls |
---|
| 22 | ! ----- |
---|
| 23 | ! none |
---|
| 24 | ! |
---|
| 25 | !================================================================== |
---|
| 26 | |
---|
| 27 | use radinc_h, only: L_NSPECTV |
---|
[1016] | 28 | use radcommon_h, only: WAVEV, BWNV, DWNV, tstellar, tauray, taurayvar, scalep |
---|
[471] | 29 | use gases_h |
---|
[135] | 30 | |
---|
| 31 | implicit none |
---|
| 32 | |
---|
| 33 | #include "comcstfi.h" |
---|
[253] | 34 | #include "callkeys.h" |
---|
[135] | 35 | |
---|
| 36 | real*8 wl |
---|
[253] | 37 | integer N,Nfine,ifine,igas |
---|
[135] | 38 | parameter(Nfine=500.0) |
---|
| 39 | real*8 :: P0 = 9.423D+6 ! Rayleigh scattering reference pressure in pascals. |
---|
| 40 | |
---|
[253] | 41 | logical typeknown |
---|
[1016] | 42 | real*8 tauvar,tauvarvar,tausum,tausumvar,tauwei,tauweivar,bwidth,bstart |
---|
[135] | 43 | double precision df |
---|
| 44 | |
---|
[253] | 45 | real*8 tauconsti(ngasmx) |
---|
| 46 | real*8 tauvari(ngasmx) |
---|
[135] | 47 | |
---|
[861] | 48 | integer icantbewrong |
---|
| 49 | |
---|
[253] | 50 | ! tau0/p0=tau/p (Hansen 1974) |
---|
[305] | 51 | ! Then calculate tau0 = (8*pi^3*p_1atm)/(3*N0^2) * 4*delta^2/(g*mugaz*lambda^4) |
---|
| 52 | ! where delta=n-1 and N0 is an amagat |
---|
[253] | 53 | |
---|
| 54 | typeknown=.false. |
---|
| 55 | do igas=1,ngasmx |
---|
| 56 | if(igas.eq.vgas)then |
---|
[1016] | 57 | print*,'variable gas is ',trim(gnom(igas)),' in Rayleigh scattering ' |
---|
| 58 | endif |
---|
| 59 | if((igas/=vgas).and.(gfrac(igas).lt.5.e-2))then |
---|
[869] | 60 | print*,'Ignoring ',trim(gnom(igas)),' in Rayleigh scattering '// & |
---|
[253] | 61 | 'as its mixing ratio is less than 0.05.' |
---|
| 62 | ! ignore variable gas in Rayleigh calculation |
---|
[305] | 63 | ! ignore gases of mixing ratio < 0.05 in Rayleigh calculation |
---|
[253] | 64 | tauconsti(igas) = 0.0 |
---|
[135] | 65 | else |
---|
[869] | 66 | if(igas.eq.igas_CO2) then |
---|
[253] | 67 | tauconsti(igas) = (8.7/g)*1.527*scalep/P0 |
---|
[869] | 68 | elseif(igas.eq.igas_N2)then |
---|
[253] | 69 | tauconsti(igas) = (9.81/g)*8.569E-3*scalep/(P0/93.0) |
---|
[869] | 70 | elseif(igas.eq.igas_H2O)then |
---|
[1016] | 71 | ! tauconsti(igas) = (10.0/g)*9.22E-3*scalep/101325.0 |
---|
| 72 | tauconsti(igas) = 1.98017E-10/(g*mugaz*100.) |
---|
[869] | 73 | elseif(igas.eq.igas_H2)then |
---|
[305] | 74 | tauconsti(igas) = (10.0/g)*0.0241*scalep/101325.0 |
---|
| 75 | !tauconsti(igas) = (10.0/g)*0.0487*scalep/(101325.0) |
---|
[253] | 76 | ! uses n=1.000132 from Optics, Fourth Edition. |
---|
[305] | 77 | ! was out by a factor 2! |
---|
[869] | 78 | elseif(igas.eq.igas_He)then |
---|
[1025] | 79 | tauconsti(igas) = (10.0/g)*0.00086*scalep/101325.0 |
---|
[253] | 80 | else |
---|
| 81 | print*,'Error in calc_rayleigh: Gas species not recognised!' |
---|
| 82 | call abort |
---|
| 83 | endif |
---|
| 84 | |
---|
[1016] | 85 | if((gfrac(igas).eq.1.0).and.(vgas.eq.0))then |
---|
[869] | 86 | print*,'Rayleigh scattering is for a pure ',trim(gnom(igas)),' atmosphere.' |
---|
[253] | 87 | typeknown=.true. |
---|
| 88 | endif |
---|
| 89 | |
---|
[135] | 90 | endif |
---|
[253] | 91 | enddo |
---|
| 92 | |
---|
| 93 | if(.not.typeknown)then |
---|
| 94 | print*,'Rayleigh scattering is for a mixed gas atmosphere.' |
---|
| 95 | typeknown=.true. |
---|
[135] | 96 | endif |
---|
[253] | 97 | |
---|
[135] | 98 | |
---|
| 99 | do N=1,L_NSPECTV |
---|
| 100 | |
---|
[253] | 101 | tausum = 0.0 |
---|
| 102 | tauwei = 0.0 |
---|
[1016] | 103 | tausumvar = 0.0 |
---|
| 104 | tauweivar = 0.0 |
---|
[253] | 105 | bstart = 10000.0/BWNV(N+1) |
---|
| 106 | bwidth = (10000.0/BWNV(N)) - (10000.0/BWNV(N+1)) |
---|
| 107 | do ifine=1,Nfine |
---|
| 108 | wl=bstart+dble(ifine)*bwidth/Nfine |
---|
[135] | 109 | |
---|
[253] | 110 | tauvar=0.0 |
---|
[1016] | 111 | tauvarvar=0.0 |
---|
[253] | 112 | do igas=1,ngasmx |
---|
[1016] | 113 | if((igas/=vgas).and.(gfrac(igas).lt.5.e-2))then |
---|
[253] | 114 | ! ignore variable gas in Rayleigh calculation |
---|
[305] | 115 | ! ignore gases of mixing ratio < 0.05 in Rayleigh calculation |
---|
[253] | 116 | tauvari(igas) = 0.0 |
---|
| 117 | else |
---|
[869] | 118 | if(igas.eq.igas_CO2)then |
---|
[253] | 119 | tauvari(igas) = (1.0+0.013/wl**2)/wl**4 |
---|
[869] | 120 | elseif(igas.eq.igas_N2)then |
---|
[253] | 121 | tauvari(igas) = (1.0+0.0113/wl**2+0.00013/wl**4)/wl**4 |
---|
[869] | 122 | elseif(igas.eq.igas_H2O)then |
---|
[1016] | 123 | ! tauvari(igas) = 1.0/wl**4 ! to be improved... |
---|
| 124 | tauvari(igas) = (5.7918E6/(2.38E2-1/wl**2)+1.679E5/(57.36E0-1/wl**2))**2/wl**4 |
---|
[869] | 125 | elseif(igas.eq.igas_H2)then |
---|
[305] | 126 | tauvari(igas) = 1.0/wl**4 |
---|
[869] | 127 | elseif(igas.eq.igas_He)then |
---|
[1025] | 128 | tauvari(igas) = 1.0/wl**4 |
---|
[253] | 129 | else |
---|
| 130 | print*,'Error in calc_rayleigh: Gas species not recognised!' |
---|
| 131 | call abort |
---|
| 132 | endif |
---|
| 133 | endif |
---|
[135] | 134 | |
---|
[1016] | 135 | if(igas.eq.vgas) then |
---|
| 136 | tauvarvar=tauvarvar+tauconsti(igas)*tauvari(igas) |
---|
| 137 | tauvar=tauvar+0.0*0.0*gfrac(igas) |
---|
| 138 | else |
---|
| 139 | tauvar=tauvar+tauconsti(igas)*tauvari(igas)*gfrac(igas) |
---|
| 140 | endif |
---|
[253] | 141 | |
---|
[135] | 142 | enddo |
---|
| 143 | |
---|
[253] | 144 | call blackl(dble(wl*1e-6),dble(tstellar),df) |
---|
| 145 | df=df*bwidth/Nfine |
---|
| 146 | tauwei=tauwei+df |
---|
| 147 | tausum=tausum+tauvar*df |
---|
[1016] | 148 | tauweivar=tauweivar+df |
---|
| 149 | tausumvar=tausumvar+tauvarvar*df |
---|
[253] | 150 | |
---|
| 151 | enddo |
---|
| 152 | TAURAY(N)=tausum/tauwei |
---|
[1016] | 153 | TAURAYVAR(N)=tausumvar/tauweivar |
---|
[135] | 154 | ! we multiply by scalep here (100) because plev, which is used in optcv, |
---|
| 155 | ! is in units of mBar, so we need to convert. |
---|
[253] | 156 | |
---|
[135] | 157 | end do |
---|
| 158 | |
---|
[848] | 159 | IF (L_NSPECTV > 6) THEN |
---|
[861] | 160 | icantbewrong = L_NSPECTV-6 |
---|
| 161 | print*,'At 1 atm and lambda = ',WAVEV(icantbewrong),' um' |
---|
| 162 | print*,'tau_R = ',TAURAY(icantbewrong)*1013.25 |
---|
| 163 | print*,'sig_R = ',TAURAY(icantbewrong)*g*mugaz*1.67e-27*100, & |
---|
[848] | 164 | 'cm^2 molecule^-1' |
---|
| 165 | ENDIF |
---|
[253] | 166 | |
---|
[135] | 167 | end subroutine calc_rayleigh |
---|