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


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