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