source: palm/tags/release-5.0/LIB/rrtmg/rrsw_kg16.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.0 KB
Line 
1      module rrsw_kg16
2
3      use parkind ,only : im => kind_im, rb => kind_rb
4      use parrrsw, only : ng16
5
6      implicit none
7      save
8
9!-----------------------------------------------------------------
10! rrtmg_sw ORIGINAL abs. coefficients for interval 16
11! band 16:  2600-3250 cm-1 (low - h2o,ch4; high - ch4)
12!
13! Initial version:  JJMorcrette, ECMWF, oct1999
14! Revised: MJIacono, AER, jul2006
15! Revised: MJIacono, AER, aug2008
16!-----------------------------------------------------------------
17!
18!  name     type     purpose
19!  ----   : ----   : ---------------------------------------------
20! kao     : real     
21! kbo     : real     
22! selfrefo: real     
23! forrefo : real
24!sfluxrefo: real     
25!-----------------------------------------------------------------
26
27      integer(kind=im), parameter :: no16 = 16
28
29      real(kind=rb) :: kao(9,5,13,no16)
30      real(kind=rb) :: kbo(5,13:59,no16)
31      real(kind=rb) :: selfrefo(10,no16), forrefo(3,no16)
32      real(kind=rb) :: sfluxrefo(no16)
33
34      real(kind=rb) :: rayl
35
36!-----------------------------------------------------------------
37! rrtmg_sw COMBINED abs. coefficients for interval 16
38! band 16:  2600-3250 cm-1 (low - h2o,ch4; high - ch4)
39!
40! Initial version:  JJMorcrette, ECMWF, oct1999
41! Revised: MJIacono, AER, jul2006
42! Revised: MJIacono, AER, aug2008
43!-----------------------------------------------------------------
44!
45!  name     type     purpose
46!  ----   : ----   : ---------------------------------------------
47! ka      : real     
48! kb      : real     
49! absa    : real
50! absb    : real
51! selfref : real     
52! forref  : real
53! sfluxref: real     
54!-----------------------------------------------------------------
55
56      real(kind=rb) :: ka(9,5,13,ng16) , absa(585,ng16)
57      real(kind=rb) :: kb(5,13:59,ng16), absb(235,ng16)
58      real(kind=rb) :: selfref(10,ng16), forref(3,ng16)
59      real(kind=rb) :: sfluxref(ng16)
60
61      equivalence (ka(1,1,1,1),absa(1,1)), (kb(1,13,1),absb(1,1))
62
63      end module rrsw_kg16
64
Note: See TracBrowser for help on using the repository browser.