source: palm/tags/release-5.0/LIB/rrtmg/rrsw_kg18.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_kg18
2
3      use parkind ,only : im => kind_im, rb => kind_rb
4      use parrrsw, only : ng18
5
6      implicit none
7      save
8
9!-----------------------------------------------------------------
10! rrtmg_sw ORIGINAL abs. coefficients for interval 18
11! band 18:  4000-4650 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 :: no18 = 16
28
29      real(kind=rb) :: kao(9,5,13,no18)
30      real(kind=rb) :: kbo(5,13:59,no18)
31      real(kind=rb) :: selfrefo(10,no18), forrefo(3,no18)
32      real(kind=rb) :: sfluxrefo(no18,9)
33
34      real(kind=rb) :: rayl
35
36!-----------------------------------------------------------------
37! rrtmg_sw COMBINED abs. coefficients for interval 18
38! band 18:  4000-4650 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,ng18), absa(585,ng18)
57      real(kind=rb) :: kb(5,13:59,ng18), absb(235,ng18)
58      real(kind=rb) :: selfref(10,ng18), forref(3,ng18)
59      real(kind=rb) :: sfluxref(ng18,9)
60
61      equivalence (ka(1,1,1,1),absa(1,1)), (kb(1,13,1),absb(1,1))
62
63      end module rrsw_kg18
64
Note: See TracBrowser for help on using the repository browser.