cutoff_type Derived Type

type, private :: cutoff_type

cutoff radius definition


Inherited by

type~~cutoff_type~~InheritedByGraph type~cutoff_type cutoff_type type~ic_2dcrvp_type ic_2dcrvp_type type~ic_2dcrvp_type->type~cutoff_type cutoff type~tem_spatial_type tem_spatial_type type~tem_spatial_type->type~ic_2dcrvp_type crvp type~tem_ini_condition_type tem_ini_condition_type type~tem_ini_condition_type->type~tem_spatial_type ini_state type~tem_spacetime_fun_type tem_spacetime_fun_type type~tem_spacetime_fun_type->type~tem_spatial_type spatial type~tem_st_fun_listelem_type tem_st_fun_listElem_type type~tem_st_fun_listelem_type->type~tem_spacetime_fun_type val type~tem_variable_type tem_variable_type type~tem_variable_type->type~tem_spacetime_fun_type st_fun

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