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