-
Notifications
You must be signed in to change notification settings - Fork 0
/
rrlw_kg02.f90
70 lines (56 loc) · 1.98 KB
/
rrlw_kg02.f90
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
module rrlw_kg02
use shr_kind_mod, only: r8 => shr_kind_r8
! use parkind ,only : jpim, jprb
implicit none
save
!-----------------------------------------------------------------
! rrtmg_lw ORIGINAL abs. coefficients for interval 2
! band 2: 250-500 cm-1 (low - h2o; high - h2o)
!
! Initial version: JJMorcrette, ECMWF, jul1998
! Revised: MJIacono, AER, jun2006
!-----------------------------------------------------------------
!
! name type purpose
! ---- : ---- : ---------------------------------------------
!fracrefao: real
!fracrefbo: real
! kao : real
! kbo : real
! selfrefo: real
! forrefo : real
!-----------------------------------------------------------------
integer, parameter :: no2 = 16
real(kind=r8) :: fracrefao(no2) , fracrefbo(no2)
real(kind=r8) :: kao(5,13,no2)
real(kind=r8) :: kbo(5,13:59,no2)
real(kind=r8) :: selfrefo(10,no2) , forrefo(4,no2)
!-----------------------------------------------------------------
! rrtmg_lw COMBINED abs. coefficients for interval 2
! band 2: 250-500 cm-1 (low - h2o; high - h2o)
!
! Initial version: JJMorcrette, ECMWF, jul1998
! Revised: MJIacono, AER, jun2006
!-----------------------------------------------------------------
!
! name type purpose
! ---- : ---- : ---------------------------------------------
!fracrefa : real
!fracrefb : real
! ka : real
! kb : real
! absa : real
! absb : real
! selfref : real
! forref : real
!
! refparam: real
!-----------------------------------------------------------------
integer, parameter :: ng2 = 12
real(kind=r8) :: fracrefa(ng2) , fracrefb(ng2)
real(kind=r8) :: ka(5,13,ng2) , absa(65,ng2)
real(kind=r8) :: kb(5,13:59,ng2), absb(235,ng2)
real(kind=r8) :: selfref(10,ng2), forref(4,ng2)
real(kind=r8) :: refparam(13)
equivalence (ka(1,1,1),absa(1,1)),(kb(1,13,1),absb(1,1))
end module rrlw_kg02