Changeset 1529 for trunk/LMDZ.GENERIC/libf/phystd/radcommon_h.F90
- Timestamp:
- Apr 5, 2016, 10:51:51 AM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/LMDZ.GENERIC/libf/phystd/radcommon_h.F90
r1315 r1529 1 2 3 use radinc_h1 module radcommon_h 2 use radinc_h, only: L_NSPECTI, L_NSPECTV, L_NGAUSS, NTstar, NTstop, & 3 naerkind, nsizemax 4 4 implicit none 5 5 … … 121 121 REAL :: omegaREFir(naerkind,nsizemax) 122 122 123 REAL tstellar ! Stellar brightness temperature (SW)123 REAL,SAVE :: tstellar ! Stellar brightness temperature (SW) 124 124 125 real*8 planckir(L_NSPECTI,NTstop-NTstar+1)125 real*8,save :: planckir(L_NSPECTI,NTstop-NTstar+1) 126 126 127 real*8 PTOP, TAUREF(L_LEVELS+1) 127 real*8,save :: PTOP 128 real*8,save,allocatable :: TAUREF(:) 128 129 129 real*8, 130 real*8,parameter :: UBARI = 0.5D0 130 131 131 real*8 gweight(L_NGAUSS)132 real*8,save :: gweight(L_NGAUSS) 132 133 !$OMP THREADPRIVATE(QREFvis,QREFir,omegaREFvis,omegaREFir,& ! gweight read by master in sugas_corrk 133 134 !$OMP tstellar,planckir,PTOP,TAUREF) … … 144 145 real*8, parameter :: grav = 6.672E-11 145 146 146 real*8 Cmk 147 save Cmk 148 real*8 glat_ig 149 save glat_ig 147 real*8,save :: Cmk 148 real*8,save :: glat_ig 150 149 !$OMP THREADPRIVATE(Cmk,glat_ig) 151 150 152 151 ! extinction of incoming sunlight (Saturn's rings, eclipses, etc...) 153 REAL, DIMENSION(:), ALLOCATABLE :: eclipse152 REAL, DIMENSION(:), ALLOCATABLE ,SAVE :: eclipse 154 153 155 154 !Latitude-dependent gravity 156 REAL, DIMENSION(:), ALLOCATABLE :: glat155 REAL, DIMENSION(:), ALLOCATABLE , SAVE :: glat 157 156 !$OMP THREADPRIVATE(glat,eclipse) 158 157 159 end module radcommon_h 158 contains 159 160 subroutine ini_radcommon_h 161 use radinc_h, only: L_LEVELS 162 implicit none 163 164 allocate(TAUREF(L_LEVELS+1)) 165 166 end subroutine ini_radcommon_h 167 168 end module radcommon_h
Note: See TracChangeset
for help on using the changeset viewer.