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