boundary_event_type Derived Type

type, public :: boundary_event_type


Components

Type Visibility Attributes Name Initial
logical, public :: has_event = .false.
real(kind=dp), public :: fraction = 0.0_dp
integer(kind=i32), public :: face_mask = 0_i32
integer(kind=i32), public :: face_bc(6) = -1_i32

Source Code

  type, public :: boundary_event_type
    logical :: has_event = .false.
    real(dp) :: fraction = 0.0_dp
    integer(i32) :: face_mask = 0_i32
    integer(i32) :: face_bc(6) = -1_i32
  end type boundary_event_type