tem_intersec Derived Type

type, public :: tem_intersec


Components

Type Visibility Attributes Name Initial
real(kind=rk), public :: lambda

value of lamda (parameter of the line) of the intersection

real(kind=rk), public :: coord(3)

real world coordinates of the intersection

real(kind=rk), public :: distance(3)

distance between the center of the face (element) and the intersection


Source Code

  type tem_intersec
    !> value of lamda (parameter of the line) of the intersection
    real(kind=rk) :: lambda
    !> real world coordinates of the intersection
    real(kind=rk) :: coord(3)
    !> distance between the center of the face (element) and the intersection
    real(kind=rk) :: distance(3)
  end type tem_intersec