heating_diagnostics Derived Type

type, public :: heating_diagnostics

FIXME : Add documentation


Contents

Source Code


Components

Type Visibility Attributes Name Initial
real, public :: energy
real, public :: energy_dot
real, public :: antenna
real, public :: eapar
real, public :: ebpar
real, public, dimension(:), allocatable :: delfs2
real, public, dimension(:), allocatable :: hs2
real, public, dimension(:), allocatable :: phis2
real, public, dimension(:), allocatable :: hypervisc
real, public, dimension(:), allocatable :: hyperres
real, public, dimension(:), allocatable :: hypercoll
real, public, dimension(:), allocatable :: collisions
real, public, dimension(:), allocatable :: imp_colls
real, public, dimension(:), allocatable :: gradients
real, public, dimension(:), allocatable :: heating

Source Code

  type :: heating_diagnostics
! total quantities:
     real :: energy
     real :: energy_dot
     real :: antenna
     real :: eapar                                       !int k_perp^2 A_par^2/8 pi
     real :: ebpar                                       !int B_par^2/8 pi
! species by species:
     real, dimension(:), allocatable :: delfs2      !int T/F0 dfs^2/2
     real, dimension(:), allocatable :: hs2         !int T/F0 hs^2/2
     real, dimension(:), allocatable :: phis2       !int q^2 n/T phi^2/2
     real, dimension(:), allocatable :: hypervisc
     real, dimension(:), allocatable :: hyperres
     real, dimension(:), allocatable :: hypercoll
     real, dimension(:), allocatable :: collisions
     real, dimension(:), allocatable :: imp_colls
     real, dimension(:), allocatable :: gradients
!     real, dimension(:), allocatable :: curvature
     real, dimension(:), allocatable :: heating
  end type heating_diagnostics