tem_deformation_type Derived Type

type, public :: tem_deformation_type

Data type defines geometry scale and rotation


Components

Type Visibility Attributes Name Initial
logical, public :: active

Is deformation defined

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

matrix defining the deformation


Source Code

  type tem_deformation_type
    !> Is deformation defined
    logical :: active
    !> matrix defining the deformation
    real(kind=rk) :: matrix(3,3)
  end type tem_deformation_type