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