source: palm/tags/release-5.0/LIB/rrtmg/rrsw_kg25.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: 1.8 KB
Line 
1      module rrsw_kg25
2
3      use parkind ,only : im => kind_im, rb => kind_rb
4      use parrrsw, only : ng25
5
6      implicit none
7      save
8
9!-----------------------------------------------------------------
10! rrtmg_sw ORIGINAL abs. coefficients for interval 25
11! band 25: 16000-22650 cm-1 (low - h2o; high - nothing)
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!sfluxrefo: real     
22! abso3ao : real     
23! abso3bo : real     
24! raylo   : real     
25!-----------------------------------------------------------------
26
27      integer(kind=im), parameter :: no25 = 16
28
29      real(kind=rb) :: kao(5,13,no25)
30      real(kind=rb) :: sfluxrefo(no25)
31      real(kind=rb) :: abso3ao(no25), abso3bo(no25)
32      real(kind=rb) :: raylo(no25)
33
34!-----------------------------------------------------------------
35! rrtmg_sw COMBINED abs. coefficients for interval 25
36! band 25: 16000-22650 cm-1 (low - h2o; high - nothing)
37!
38! Initial version:  JJMorcrette, ECMWF, oct1999
39! Revised: MJIacono, AER, jul2006
40! Revised: MJIacono, AER, aug2008
41!-----------------------------------------------------------------
42!
43!  name     type     purpose
44!  ----   : ----   : ---------------------------------------------
45! ka      : real     
46! absa    : real
47! sfluxref: real     
48! abso3a  : real     
49! abso3b  : real     
50! rayl    : real     
51!-----------------------------------------------------------------
52
53      real(kind=rb) :: ka(5,13,ng25), absa(65,ng25)
54      real(kind=rb) :: sfluxref(ng25)
55      real(kind=rb) :: abso3a(ng25), abso3b(ng25)
56      real(kind=rb) :: rayl(ng25)
57
58      equivalence (ka(1,1,1),absa(1,1))
59
60      end module rrsw_kg25
61
Note: See TracBrowser for help on using the repository browser.