particle_authoring_spec Derived Type

type, public :: particle_authoring_spec


Inherited by

type~~particle_authoring_spec~~InheritedByGraph type~particle_authoring_spec particle_authoring_spec type~app_config_authoring app_config_authoring type~app_config_authoring->type~particle_authoring_spec particle_species

Components

Type Visibility Attributes Name Initial
logical, public :: has_inject_region_mode = .false.
character(len=32), public :: inject_region_mode = 'absolute'
logical, public :: has_uv_low = .false.
logical, public :: has_uv_high = .false.
logical, public :: has_pos_low = .false.
logical, public :: has_pos_high = .false.
real(kind=dp), public :: uv_low(2) = 0.0d0
real(kind=dp), public :: uv_high(2) = 0.0d0

Source Code

  type :: particle_authoring_spec
    logical :: has_inject_region_mode = .false.
    character(len=32) :: inject_region_mode = 'absolute'
    logical :: has_uv_low = .false.
    logical :: has_uv_high = .false.
    logical :: has_pos_low = .false.
    logical :: has_pos_high = .false.
    real(dp) :: uv_low(2) = 0.0d0
    real(dp) :: uv_high(2) = 0.0d0
  end type particle_authoring_spec