vegp_type Derived Type

type, public :: vegp_type


Components

Type Visibility Attributes Name Initial
real, public, allocatable :: qt(:)
real, public, allocatable :: qtR(:)
real, public, allocatable :: qtA(:)
real, public, allocatable :: thl(:)
real, public, allocatable :: omega(:)
real, public, allocatable :: sv(:,:)

Source Code

  type vegp_type
    real, allocatable :: qt(:)        ! qt tendency contribution on vegetation cells
    real, allocatable :: qtR(:)       ! radiation-driven qt tendency contribution
    real, allocatable :: qtA(:)       ! aerodynamic qt tendency contribution
    real, allocatable :: thl(:)       ! thl tendency contribution on vegetation cells
    real, allocatable :: omega(:)     ! decoupling factor on vegetation cells
    real, allocatable :: sv(:,:)      ! scalar tendency contribution on vegetation cells
  end type vegp_type