tem_load_cylindricalWave Subroutine

public subroutine tem_load_cylindricalWave(conf, thandle, me)

Load definition of the scalar cylindrical wave.

Arguments

Type IntentOptional Attributes Name
type(flu_State) :: conf

lua state type

integer, intent(in) :: thandle

aotus parent handle

type(tem_cylindricalWave_type), intent(out) :: me

Calls

proc~~tem_load_cylindricalwave~2~~CallsGraph proc~tem_load_cylindricalwave~2 tem_load_cylindricalWave proc~tem_abort tem_abort proc~tem_load_cylindricalwave~2->proc~tem_abort mpi_abort mpi_abort proc~tem_abort->mpi_abort

Contents


Source Code

  subroutine tem_load_cylindricalWave(conf, thandle, me)
    ! ---------------------------------------------------------------------------
    !> lua state type
    type(flu_State) :: conf
    !> aotus parent handle
    integer, intent(in) :: thandle
    type(tem_cylindricalWave_type), intent(out) :: me
    ! ---------------------------------------------------------------------------
    integer :: iError
    ! ---------------------------------------------------------------------------

    write(logUnit(0),*)'ERROR: the cylindrical wave function is not available' &
      &                // ' in this'
    write(logUnit(0),*)'       executable, due to the compiler lacking ' &
      &                // 'support of'
    write(logUnit(0),*)'       Bessel functions!'
    call tem_abort()

  end subroutine tem_load_cylindricalWave