tem_condition_type Derived Type

type, public :: tem_condition_type

Datatype containing different conditions to be checked Currently only threshold and operator are defined


Components

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

Contains the threshold value defined in lua file

character(len=2), public :: operation

Contains the operator defined in lua file


Source Code

  type tem_condition_type
    !> Contains the threshold value defined in lua file
    real(kind=rk) :: threshold
    !> Contains the operator defined in lua file
    character(len=2) :: operation
  end type tem_condition_type