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