-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrrlw_ref.f90
31 lines (24 loc) · 1002 Bytes
/
rrlw_ref.f90
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
module rrlw_ref
use shr_kind_mod, only: r8 => shr_kind_r8
! use parkind, only : jpim, jprb
implicit none
save
!------------------------------------------------------------------
! rrtmg_lw reference atmosphere
! Based on standard mid-latitude summer profile
!
! Initial version: JJMorcrette, ECMWF, jul1998
! Revised: MJIacono, AER, jun2006
!------------------------------------------------------------------
! name type purpose
! ----- : ---- : ----------------------------------------------
! pref : real : Reference pressure levels
! preflog: real : Reference pressure levels, ln(pref)
! tref : real : Reference temperature levels for MLS profile
! chi_mls: real :
!------------------------------------------------------------------
real(kind=r8) , dimension(59) :: pref
real(kind=r8) , dimension(59) :: preflog
real(kind=r8) , dimension(59) :: tref
real(kind=r8) :: chi_mls(7,59)
end module rrlw_ref