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