SURF_ATM_GRID_t Derived Type

type, public :: SURF_ATM_GRID_t


Contents

Source Code


Components

TypeVisibility AttributesNameInitial
type(GRID_t), public :: G
real, public, POINTER, DIMENSION(:):: XGRID_FULL_PAR
integer, public :: NGRID_FULL_PAR
integer, public, POINTER, DIMENSION(:,:):: NNEAR
real, public, POINTER, DIMENSION(:):: XJPDIR

Source Code

TYPE SURF_ATM_GRID_t
!-------------------------------------------------------------------------------
!
! Grid definition
!
TYPE(GRID_t) :: G
!                                              ! (depends on value of CGRID)
  REAL, POINTER,     DIMENSION(:) :: XGRID_FULL_PAR   ! lits of parameters used to define the grid
!                                                     ! (depends on value of CGRID)
  INTEGER                         :: NGRID_FULL_PAR   ! size of XGRID_FULL_PAR
!
  INTEGER, POINTER, DIMENSION(:,:) :: NNEAR
!-------------------------------------------------------------------------------
!
! General surface parameters:
!
  REAL, POINTER, DIMENSION(:) :: XJPDIR      ! heading of J direction (deg from N clockwise)
!-------------------------------------------------------------------------------
!
END TYPE SURF_ATM_GRID_t