tem_cylindricalWave_type Derived Type

type, public :: tem_cylindricalWave_type

This type contains datas to define the scalar cylindrical wave.


Contents


Components

Type Visibility Attributes Name Initial
integer, public :: order

The wave order

real(kind=rk), public :: radialConstant

The radial constant

real(kind=rk), public :: radius

The cut radius of the cylindrical wave


Source Code

  type tem_cylindricalWave_type
    !> The wave order
    integer :: order
    !> The radial constant
    real(kind=rk) :: radialConstant
    !> The cut radius of the cylindrical wave
    real(kind=rk) :: radius
  end type tem_cylindricalWave_type