cutoff_type Derived Type

type, private :: cutoff_type

cutoff radius definition


Components

Type Visibility Attributes Name Initial
logical, public :: active

cutoff is active?

real(kind=rk), public :: length

cutoff values

real(kind=rk), public :: r_min

cutoff start

real(kind=rk), public :: r_max

cutoff end

logical, public :: linear

linear behavior

logical, public :: quadratic

quadratic behavior


Source Code

  type cutoff_type
    !> cutoff is active?
    logical :: active
    !> cutoff values
    real(kind=rk) :: length
    !> cutoff start
    real(kind=rk) :: r_min
    !> cutoff end
    real(kind=rk) :: r_max
    !> linear behavior
    logical :: linear
    !> quadratic behavior
    logical :: quadratic
  end type cutoff_type