-
Notifications
You must be signed in to change notification settings - Fork 0
/
rrlw_kg13.f90
76 lines (63 loc) · 2.24 KB
/
rrlw_kg13.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
75
76
module rrlw_kg13
use shr_kind_mod, only: r8 => shr_kind_r8
! use parkind ,only : jpim, jprb
implicit none
save
!-----------------------------------------------------------------
! rrtmg_lw ORIGINAL abs. coefficients for interval 13
! band 13: 2080-2250 cm-1 (low - h2o,n2o; high - nothing)
!
! Initial version: JJMorcrette, ECMWF, jul1998
! Revised: MJIacono, AER, jun2006
!-----------------------------------------------------------------
!
! name type purpose
! ---- : ---- : ---------------------------------------------
!fracrefao: real
! kao : real
! kao_mco2: real
! kao_mco : real
! kbo_mo3 : real
! selfrefo: real
! forrefo : real
!-----------------------------------------------------------------
integer, parameter :: no13 = 16
real(kind=r8) , dimension(no13) :: fracrefbo
real(kind=r8) :: fracrefao(no13,9)
real(kind=r8) :: kao(9,5,13,no13)
real(kind=r8) :: kao_mco2(9,19,no13)
real(kind=r8) :: kao_mco(9,19,no13)
real(kind=r8) :: kbo_mo3(19,no13)
real(kind=r8) :: selfrefo(10,no13)
real(kind=r8) :: forrefo(4,no13)
!-----------------------------------------------------------------
! rrtmg_lw COMBINED abs. coefficients for interval 13
! band 13: 2080-2250 cm-1 (low - h2o,n2o; high - nothing)
!
! Initial version: JJMorcrette, ECMWF, jul1998
! Revised: MJIacono, AER, jun2006
!-----------------------------------------------------------------
!
! name type purpose
! ---- : ---- : ---------------------------------------------
!fracrefa : real
! ka : real
! ka_mco2 : real
! ka_mco : real
! kb_mo3 : real
! selfref : real
! forref : real
!
! absa : real
!-----------------------------------------------------------------
integer, parameter :: ng13 = 4
real(kind=r8) , dimension(ng13) :: fracrefb
real(kind=r8) :: fracrefa(ng13,9)
real(kind=r8) :: ka(9,5,13,ng13) ,absa(585,ng13)
real(kind=r8) :: ka_mco2(9,19,ng13)
real(kind=r8) :: ka_mco(9,19,ng13)
real(kind=r8) :: kb_mo3(19,ng13)
real(kind=r8) :: selfref(10,ng13)
real(kind=r8) :: forref(4,ng13)
equivalence (ka(1,1,1,1),absa(1,1))
end module rrlw_kg13