tem_varSys_op_data_type Derived Type

type, public :: tem_varSys_op_data_type

Type which is the method_data for derived variables, hence it consists of the point index for each input variable size: number of inputs variable


Inherits

type~~tem_varsys_op_data_type~~InheritsGraph type~tem_varsys_op_data_type tem_varSys_op_data_type type~tem_indexlvl_type tem_indexLvl_type type~tem_varsys_op_data_type->type~tem_indexlvl_type input_pntIndex c_ptr c_ptr type~tem_varsys_op_data_type->c_ptr solver_bundle type~tem_reduction_transient_type tem_reduction_transient_type type~tem_varsys_op_data_type->type~tem_reduction_transient_type redTrans type~grw_intarray_type grw_intarray_type type~tem_indexlvl_type->type~grw_intarray_type indexLvl type~tem_reduction_transient_config_type tem_reduction_transient_config_type type~tem_reduction_transient_type->type~tem_reduction_transient_config_type config

Contents


Components

Type Visibility Attributes Name Initial
type(tem_indexLvl_type), public, allocatable :: input_pntIndex(:)
type(c_ptr), public :: solver_bundle

A pointer to possibly additional solver data.

This is for example used to keep a link to the projection data in Ateles to enable the construction of element data from the point data for the operation variables.

type(tem_reduction_transient_type), public :: redTrans

time reduction data


Source Code

  type tem_varSys_op_data_type
    type(tem_indexLvl_type), allocatable :: input_pntIndex(:)

    !> A pointer to possibly additional solver data.
    !!
    !! This is for example used to keep a link to the projection data
    !! in Ateles to enable the construction of element data from the
    !! point data for the operation variables.
    type(c_ptr) :: solver_bundle

    !> time reduction data
    type(tem_reduction_transient_type) :: redTrans
  end type tem_varSys_op_data_type