tem_grwPoints_type Derived Type

type, public :: tem_grwPoints_type

Data type contain 1D growing array of points for each dimension. In general, they are space coordinate in the treelmesh but for Ateles solver variables, they are used to store local coordinate with in a reference element.

Points are stored in growing array since same spacetime function or state variables can be used by multiple boundaries or sources


Inherits

type~~tem_grwpoints_type~~InheritsGraph type~tem_grwpoints_type tem_grwPoints_type type~grw_realarray_type grw_realarray_type type~tem_grwpoints_type->type~grw_realarray_type coordX, coordY, coordZ

Inherited by

type~~tem_grwpoints_type~~InheritedByGraph type~tem_grwpoints_type tem_grwPoints_type type~tem_pointdata_type tem_pointData_type type~tem_pointdata_type->type~tem_grwpoints_type grwPnt type~tem_pointdata_list_type tem_pointData_list_type type~tem_pointdata_list_type->type~tem_pointdata_type pntLvl, mapToTree type~tem_st_fun_listelem_type tem_st_fun_listElem_type type~tem_st_fun_listelem_type->type~tem_pointdata_list_type pntData type~tem_st_fun_listelem_type->type~tem_st_fun_listelem_type next type~tem_st_fun_linkedlist_type tem_st_fun_linkedList_type type~tem_st_fun_linkedlist_type->type~tem_st_fun_listelem_type head

Contents

Source Code


Components

Type Visibility Attributes Name Initial
type(grw_realarray_type), public :: coordX

X-coordinate points

type(grw_realarray_type), public :: coordY

Y-coordinate points

type(grw_realarray_type), public :: coordZ

Z-coordinate points


Source Code

  type tem_grwPoints_type
    !> X-coordinate points
    type(grw_realArray_type) :: coordX
    !> Y-coordinate points
    type(grw_realArray_type) :: coordY
    !> Z-coordinate points
    type(grw_realArray_type) :: coordZ
  end type tem_grwPoints_type