sim_authoring_spec Derived Type

type, public :: sim_authoring_spec


Inherited by

type~~sim_authoring_spec~~InheritedByGraph type~sim_authoring_spec sim_authoring_spec type~app_config_authoring app_config_authoring type~app_config_authoring->type~sim_authoring_spec sim

Components

Type Visibility Attributes Name Initial
logical, public :: has_box_origin = .false.
logical, public :: has_box_size = .false.
logical, public :: has_box_min = .false.
logical, public :: has_box_max = .false.
real(kind=dp), public :: box_origin(3) = 0.0d0
real(kind=dp), public :: box_size(3) = 0.0d0

Source Code

  type :: sim_authoring_spec
    logical :: has_box_origin = .false.
    logical :: has_box_size = .false.
    logical :: has_box_min = .false.
    logical :: has_box_max = .false.
    real(dp) :: box_origin(3) = 0.0d0
    real(dp) :: box_size(3) = 0.0d0
  end type sim_authoring_spec