tem_adapt_type Derived Type

type, public :: tem_adapt_type

Datatype containig information about adaptation of the mesh


Components

Type Visibility Attributes Name Initial
type(tem_timeControl_type), public :: time

Contains variables which are requested in a lua file

logical, public :: active = .false.

is adaptation active?


Source Code

  type tem_adapt_type
    !>Contains variables which are requested in a lua file
    type(tem_timeControl_type) :: time

    !> is adaptation active?
    logical :: active = .false.
  end type tem_adapt_type