spatial_parabol_type Derived Type

type, private :: spatial_parabol_type

defines parabola functions shape kind defines 2d or 3d parabola


Components

Type Visibility Attributes Name Initial
type(tem_shape_type), public :: geometry

define point, line or plane spatial profile

real(kind=rk), public, allocatable :: amplitude(:)

magnitude of the spatial value


Source Code

  type spatial_parabol_type
    !> define point, line or plane spatial profile
    type( tem_shape_type ) :: geometry
    !> magnitude of the spatial value
    real(kind=rk), allocatable :: amplitude(:)
  end type spatial_parabol_type