PARAMS Derived Type

type, private :: PARAMS


Contents

Source Code


Components

TypeVisibility AttributesNameInitial
real(kind=rp), public :: E
real(kind=rp), public :: Zeff
real(kind=rp), public :: max_pitch_angle
real(kind=rp), public :: min_pitch_angle
real(kind=rp), public :: po
real(kind=rp), public :: Bo
real(kind=rp), public :: lambda

Source Code

  TYPE, PRIVATE :: PARAMS
     REAL(rp) :: E ! Parallel electric field normalized using the critical electric field
     REAL(rp) :: Zeff ! Effective atomic number of impurities

     REAL(rp) :: max_pitch_angle ! Maximum pitch angle of sampled PDF in degrees
     REAL(rp) :: min_pitch_angle ! Minimum pitch angle of sampled PDF in degrees
     REAL(rp) :: po ! Momentum of sampled PDF in units of mc

     REAL(rp) :: Bo
     REAL(rp) :: lambda
  END TYPE PARAMS