source: palm/tags/release-5.0/LIB/rrtmg/rrlw_kg01.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.2 KB
Line 
1      module rrlw_kg01
2
3      use parkind ,only : im => kind_im, rb => kind_rb
4
5      implicit none
6      save
7
8!-----------------------------------------------------------------
9! rrtmg_lw ORIGINAL abs. coefficients for interval 1
10! band 1:  10-250 cm-1 (low - h2o; high - h2o)
11!
12! Initial version:  JJMorcrette, ECMWF, jul1998
13! Revised: MJIacono, AER, jun2006
14! Revised: MJIacono, AER, aug2008
15!-----------------------------------------------------------------
16!
17!  name     type     purpose
18!  ----   : ----   : ---------------------------------------------
19!fracrefao: real   
20!fracrefbo: real
21! kao     : real     
22! kbo     : real     
23! kao_mn2 : real     
24! kbo_mn2 : real     
25! selfrefo: real     
26! forrefo : real
27!-----------------------------------------------------------------
28
29      integer(kind=im), parameter :: no1  = 16
30
31      real(kind=rb) :: fracrefao(no1)  , fracrefbo(no1)
32      real(kind=rb) :: kao(5,13,no1)
33      real(kind=rb) :: kbo(5,13:59,no1)
34      real(kind=rb) :: kao_mn2(19,no1) , kbo_mn2(19,no1)
35      real(kind=rb) :: selfrefo(10,no1), forrefo(4,no1)
36
37!-----------------------------------------------------------------
38! rrtmg_lw COMBINED abs. coefficients for interval 1
39! band 1:  10-250 cm-1 (low - h2o; high - h2o)
40!
41! Initial version:  JJMorcrette, ECMWF, jul1998
42! Revised: MJIacono, AER, jun2006
43! Revised: MJIacono, AER, aug2008
44!-----------------------------------------------------------------
45!
46!  name     type     purpose
47!  ----   : ----   : ---------------------------------------------
48!fracrefa : real   
49!fracrefb : real
50! ka      : real     
51! kb      : real     
52! absa    : real
53! absb    : real
54! ka_mn2  : real     
55! kb_mn2  : real     
56! selfref : real     
57! forref  : real
58!-----------------------------------------------------------------
59
60      integer(kind=im), parameter :: ng1  = 10
61
62      real(kind=rb) :: fracrefa(ng1)  , fracrefb(ng1)
63      real(kind=rb) :: ka(5,13,ng1)   , absa(65,ng1)
64      real(kind=rb) :: kb(5,13:59,ng1), absb(235,ng1)
65      real(kind=rb) :: ka_mn2(19,ng1) , kb_mn2(19,ng1)
66      real(kind=rb) :: selfref(10,ng1), forref(4,ng1)
67
68      equivalence (ka(1,1,1),absa(1,1)), (kb(1,13,1),absb(1,1))
69
70      end module rrlw_kg01
71
72
73
74
Note: See TracBrowser for help on using the repository browser.