source: palm/trunk/LIB/rrtmg/rrsw_kg28.f90 @ 1585

Last change on this file since 1585 was 1585, checked in by maronga, 9 years ago

Added support for RRTMG radiation code

File size: 1.7 KB
Line 
1      module rrsw_kg28
2
3      use parkind ,only : im => kind_im, rb => kind_rb
4      use parrrsw, only : ng28
5
6      implicit none
7      save
8
9!-----------------------------------------------------------------
10! rrtmg_sw ORIGINAL abs. coefficients for interval 28
11! band 28: 38000-50000 cm-1 (low - o3, o2; high - o3, 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!sfluxrefo: real     
23!-----------------------------------------------------------------
24
25      integer(kind=im), parameter :: no28 = 16
26
27      real(kind=rb) :: kao(9,5,13,no28)
28      real(kind=rb) :: kbo(5,5,13:59,no28)
29      real(kind=rb) :: sfluxrefo(no28,5)
30
31      real(kind=rb) :: rayl
32
33!-----------------------------------------------------------------
34! rrtmg_sw COMBINED abs. coefficients for interval 28
35! band 28: 38000-50000 cm-1 (low - o3, o2; high - o3, o2)
36!
37! Initial version:  JJMorcrette, ECMWF, oct1999
38! Revised: MJIacono, AER, jul2006
39! Revised: MJIacono, AER, aug2008
40!-----------------------------------------------------------------
41!
42!  name     type     purpose
43!  ----   : ----   : ---------------------------------------------
44! ka      : real     
45! kb      : real     
46! sfluxref: real     
47!-----------------------------------------------------------------
48
49      real(kind=rb) :: ka(9,5,13,ng28), absa(585,ng28)
50      real(kind=rb) :: kb(5,5,13:59,ng28), absb(1175,ng28)
51      real(kind=rb) :: sfluxref(ng28,5)
52
53      equivalence (ka(1,1,1,1),absa(1,1)), (kb(1,1,13,1),absb(1,1))
54
55      end module rrsw_kg28
56
Note: See TracBrowser for help on using the repository browser.