yomrcoef.F90 Source File


This file depends on

sourcefile~~yomrcoef.f90~~EfferentGraph sourcefile~yomrcoef.f90 yomrcoef.F90 sourcefile~parkind1.f90 parkind1.F90 sourcefile~yomrcoef.f90->sourcefile~parkind1.f90

Files dependent on this one

sourcefile~~yomrcoef.f90~~AfferentGraph sourcefile~yomrcoef.f90 yomrcoef.F90 sourcefile~su0phy.f90 su0phy.F90 sourcefile~su0phy.f90->sourcefile~yomrcoef.f90 sourcefile~su0phy.f90~2 su0phy.F90 sourcefile~su0phy.f90~2->sourcefile~yomrcoef.f90

Contents

Source Code


Source Code

MODULE YOMRCOEF

USE PARKIND1  ,ONLY : JPIM     ,JPRB

IMPLICIT NONE

SAVE

!   -----------------------------------------------------------------

!*   Logical switches for writing and reading the radiation coefficients
!    in file or in core

!    LRCOEF                       : switch for write out and read
!                                   the radiation coefficients in file

!*   Logical switch connected with the simplified radiation

!    LTLADDIA    : switch for using diabatic adjoint and then reading
!                  rad.coef. at each time step when LRAYSP
!    LGLOBRAD    : switch to compute the global mean for the thermal
!                  radiation matrix

!*   Number of arrays for radiation coefficients

!    NG3SR                        : number of 3D fields (NFLEVG)
!    NGMTR                        : number of matrices (0:NFLEVG,0:NFLEVG)
!    NLATWR                       : number of latitude to be written
!    NLATRD                       : number of latitude to be read

!*   Packing factors and mio package files

!    NPCKFSR                      : packing factor for 3D fields
!    NPCKFTHR                     : packing factor for matrices
!    NEXPBSR                      : number of bits used for exponent when
!                                   packing
!    NEXPBTHR                     : number of bits used for exponent when
!                                   packing

!*   Buffer for radiation coefficients

!    NLENGSRB                       : length of buffer for 3D solar radiation
!                                     coefficients and correction for thermal
!                                     radiation
!    NLENGTRB                       : length of buffer for matrix of thermal
!                                     radiation coefficients
!    SOLRAD(NLENGSRB)               : buffer for 3D fields
!    THERRAD(NSLBR/NGPBLKS/1,NLENGTRB): buffer for matrix
!                                     for 3D fields

!*   Buffer for simplified thermal radiation

!    TRWEIGHT(NFLEVG+1,NFLEVG+1) : buffer for sum of mean weights
!                                  for the whole domain
!    TRMATSUM(NFLEVG+1,NFLEVG+1) : buffer for sum of thermal radiation
!                                  matrices for the whole domain

LOGICAL :: LRCOEF
LOGICAL :: LTLADDIA
LOGICAL :: LGLOBRAD

INTEGER(KIND=JPIM) :: NG3SR
INTEGER(KIND=JPIM) :: NGMTR
INTEGER(KIND=JPIM) :: NLATWR
INTEGER(KIND=JPIM) :: NLATRD

INTEGER(KIND=JPIM) :: NPCKFSR
INTEGER(KIND=JPIM) :: NPCKFTHR
INTEGER(KIND=JPIM) :: NEXPBSR
INTEGER(KIND=JPIM) :: NEXPBTHR

INTEGER(KIND=JPIM) :: NLENGSRB
INTEGER(KIND=JPIM) :: NLENGTRB

REAL(KIND=JPRB),ALLOCATABLE:: SOLRAD(:)
REAL(KIND=JPRB),ALLOCATABLE:: THERRAD(:,:)

REAL(KIND=JPRB),ALLOCATABLE:: TRWEIGHT(:,:)
REAL(KIND=JPRB),ALLOCATABLE:: TRMATSUM(:,:)

!   ----------------------------------------------------------------
!$OMP THREADPRIVATE(lglobrad,lrcoef,ltladdia,nexpbsr,nexpbthr,ng3sr,ngmtr,nlatrd,nlatwr,nlengsrb)
!$OMP THREADPRIVATE(nlengtrb,npckfsr,npckfthr)
!$OMP THREADPRIVATE(solrad,therrad,trmatsum,trweight)
END MODULE YOMRCOEF