tem_translation_type Derived Type

type, public :: tem_translation_type

Data type defines geometry translation


Components

Type Visibility Attributes Name Initial
logical, public :: active

Is translation defined

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

vector defining translation in x,y,z direction


Source Code

  type tem_translation_type
    !>Is translation defined
    logical :: active
    !> vector defining translation in x,y,z direction
    real(kind=rk) :: vec(3)
  end type tem_translation_type