tem_condition_type Derived Type

type, public :: tem_condition_type

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


Inherited by

type~~tem_condition_type~~InheritedByGraph type~tem_condition_type tem_condition_type type~tem_convergenceheader_type tem_convergenceHeader_type type~tem_convergenceheader_type->type~tem_condition_type cond type~tem_depend_type tem_depend_type type~tem_depend_type->type~tem_condition_type cond type~tem_convergence_type tem_convergence_type type~tem_convergence_type->type~tem_convergenceheader_type header type~tem_abortcriteria_type tem_abortCriteria_type type~tem_abortcriteria_type->type~tem_convergence_type convergence type~tem_simcontrol_type tem_simControl_type type~tem_simcontrol_type->type~tem_abortcriteria_type abortCriteria

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