-
Notifications
You must be signed in to change notification settings - Fork 55
/
Copy pathrrlw_kg03.f90
76 lines (64 loc) · 2.25 KB
/
rrlw_kg03.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
69
70
71
72
73
74
module rrlw_kg03
! use parkind ,only : im => kind_im, rb => kind_rb
use modglobal ,only : im => kind_im, rb => kind_rb
implicit none
save
!-----------------------------------------------------------------
! rrtmg_lw ORIGINAL abs. coefficients for interval 3
! band 3: 500-630 cm-1 (low - h2o,co2; high - h2o,co2)
!
! Initial version: JJMorcrette, ECMWF, jul1998
! Revised: MJIacono, AER, jun2006
! Revised: MJIacono, AER, aug2008
!-----------------------------------------------------------------
!
! name type purpose
! ---- : ---- : ---------------------------------------------
!fracrefao: real
!fracrefbo: real
! kao : real
! kbo : real
! kao_mn2o: real
! kbo_mn2o: real
! selfrefo: real
! forrefo : real
!-----------------------------------------------------------------
integer(kind=im), parameter :: no3 = 16
real(kind=rb) :: fracrefao(no3,9) ,fracrefbo(no3,5)
real(kind=rb) :: kao(9,5,13,no3)
real(kind=rb) :: kbo(5,5,13:59,no3)
real(kind=rb) :: kao_mn2o(9,19,no3), kbo_mn2o(5,19,no3)
real(kind=rb) :: selfrefo(10,no3)
real(kind=rb) :: forrefo(4,no3)
!-----------------------------------------------------------------
! rrtmg_lw COMBINED abs. coefficients for interval 3
! band 3: 500-630 cm-1 (low - h2o,co2; high - h2o,co2)
!
! Initial version: JJMorcrette, ECMWF, jul1998
! Revised: MJIacono, AER, jun2006
! Revised: MJIacono, AER, aug2008
!-----------------------------------------------------------------
!
! name type purpose
! ---- : ---- : ---------------------------------------------
!fracrefa : real
!fracrefb : real
! ka : real
! kb : real
! ka_mn2o : real
! kb_mn2o : real
! selfref : real
! forref : real
!
! absa : real
! absb : real
!-----------------------------------------------------------------
integer(kind=im), parameter :: ng3 = 16
real(kind=rb) :: fracrefa(ng3,9) ,fracrefb(ng3,5)
real(kind=rb) :: ka(9,5,13,ng3) ,absa(585,ng3)
real(kind=rb) :: kb(5,5,13:59,ng3),absb(1175,ng3)
real(kind=rb) :: ka_mn2o(9,19,ng3), kb_mn2o(5,19,ng3)
real(kind=rb) :: selfref(10,ng3)
real(kind=rb) :: forref(4,ng3)
equivalence (ka(1,1,1,1),absa(1,1)),(kb(1,1,13,1),absb(1,1))
end module rrlw_kg03