source: palm/tags/release-5.0/LIB/rrtmg/rrlw_kg11.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.4 KB
Line 
1      module rrlw_kg11
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 11
10! band 11:  1480-1800 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_mo2 : real     
24! kbo_mo2 : real     
25! selfrefo: real     
26! forrefo : real     
27!-----------------------------------------------------------------
28
29      integer(kind=im), parameter :: no11 = 16
30
31      real(kind=rb) , dimension(no11) :: fracrefao
32      real(kind=rb) , dimension(no11) :: fracrefbo
33
34      real(kind=rb) :: kao(5,13,no11)
35      real(kind=rb) :: kbo(5,13:59,no11)
36      real(kind=rb) :: kao_mo2(19,no11)
37      real(kind=rb) :: kbo_mo2(19,no11)
38      real(kind=rb) :: selfrefo(10,no11)
39      real(kind=rb) :: forrefo(4,no11)
40
41!-----------------------------------------------------------------
42! rrtmg_lw COMBINED abs. coefficients for interval 11
43! band 11:  1480-1800 cm-1 (low - h2o; high - h2o)
44!
45! Initial version:  JJMorcrette, ECMWF, jul1998
46! Revised: MJIacono, AER, jun2006
47! Revised: MJIacono, AER, aug2008
48!-----------------------------------------------------------------
49!
50!  name     type     purpose
51!  ----   : ----   : ---------------------------------------------
52!fracrefa : real   
53!fracrefb : real   
54! ka      : real     
55! kb      : real     
56! ka_mo2  : real     
57! kb_mo2  : real     
58! selfref : real     
59! forref  : real     
60!
61! absa    : real
62! absb    : real
63!-----------------------------------------------------------------
64
65      integer(kind=im), parameter :: ng11 = 8
66
67      real(kind=rb) , dimension(ng11) :: fracrefa
68      real(kind=rb) , dimension(ng11) :: fracrefb
69
70      real(kind=rb) :: ka(5,13,ng11)   , absa(65,ng11)
71      real(kind=rb) :: kb(5,13:59,ng11), absb(235,ng11)
72      real(kind=rb) :: ka_mo2(19,ng11)
73      real(kind=rb) :: kb_mo2(19,ng11)
74      real(kind=rb) :: selfref(10,ng11)
75      real(kind=rb) :: forref(4,ng11)
76
77      equivalence (ka(1,1,1),absa(1,1)),(kb(1,13,1),absb(1,1))
78
79      end module rrlw_kg11
Note: See TracBrowser for help on using the repository browser.