source: palm/tags/release-5.0/LIB/rrtmg/rrlw_kg09.f90 @ 2977

Last change on this file since 2977 was 1585, checked in by maronga, 9 years ago

Added support for RRTMG radiation code

File size: 2.4 KB
Line 
1      module rrlw_kg09
2
3      use parkind ,only : im => kind_im, rb => kind_rb
4
5      implicit none
6      save
7
8!-----------------------------------------------------------------
9! rrtmg_lw ORIGINAL abs. coefficients for interval 9
10! band 9:  1180-1390 cm-1 (low - h2o,ch4; high - ch4)
11!
12! Initial version:  JJMorcrette, ECMWF, jul1998
13! Revised: MJIacono, AER, jun2006
14! Revised: MJIacono, AER, aug2008
15!-----------------------------------------------------------------
16!
17!  name     type     purpose
18!  ----   : ----   : ---------------------------------------------
19!fracrefao: real   
20!fracrefbo: real   
21! kao     : real     
22! kbo     : real     
23! kao_mn2o: real     
24! kbo_mn2o: real     
25! selfrefo: real     
26! forrefo : real     
27!-----------------------------------------------------------------
28
29      integer(kind=im), parameter :: no9  = 16
30
31      real(kind=rb) , dimension(no9) :: fracrefbo
32
33      real(kind=rb) :: fracrefao(no9,9)
34      real(kind=rb) :: kao(9,5,13,no9)
35      real(kind=rb) :: kbo(5,13:59,no9)
36      real(kind=rb) :: kao_mn2o(9,19,no9)
37      real(kind=rb) :: kbo_mn2o(19,no9)
38      real(kind=rb) :: selfrefo(10,no9)
39      real(kind=rb) :: forrefo(4,no9)
40
41!-----------------------------------------------------------------
42! rrtmg_lw COMBINED abs. coefficients for interval 9
43! band 9:  1180-1390 cm-1 (low - h2o,ch4; high - ch4)
44!
45! Initial version:  JJMorcrette, ECMWF, jul1998
46! Revised: MJIacono, AER, jun2006
47! Revised: MJIacono, AER, aug2008
48!-----------------------------------------------------------------
49!
50!  name     type     purpose
51!  ----   : ----   : ---------------------------------------------
52!fracrefa : real   
53!fracrefb : real   
54! ka      : real     
55! kb      : real     
56! ka_mn2o : real     
57! kb_mn2o : real     
58! selfref : real     
59! forref  : real     
60!
61! absa    : real
62! absb    : real
63!-----------------------------------------------------------------
64
65      integer(kind=im), parameter :: ng9  = 12
66
67      real(kind=rb) , dimension(ng9) :: fracrefb
68      real(kind=rb) :: fracrefa(ng9,9)
69      real(kind=rb) :: ka(9,5,13,ng9) ,absa(585,ng9)
70      real(kind=rb) :: kb(5,13:59,ng9) ,absb(235,ng9)
71      real(kind=rb) :: ka_mn2o(9,19,ng9)
72      real(kind=rb) :: kb_mn2o(19,ng9)
73      real(kind=rb) :: selfref(10,ng9)
74      real(kind=rb) :: forref(4,ng9)
75
76      equivalence (ka(1,1,1,1),absa(1,1)),(kb(1,13,1),absb(1,1))
77
78      end module rrlw_kg09
Note: See TracBrowser for help on using the repository browser.