besselj0 Function

public function besselj0(x)

Bessel function of the first kind of order zero .

Arguments

Type IntentOptional Attributes Name
real(kind=wp), intent(in) :: x

Return Value real(kind=wp)


Calls

proc~~besselj0~~CallsGraph proc~besselj0 besselj0 proc~caljy0 caljy0 proc~besselj0->proc~caljy0

Source Code

  real(wp) function besselj0(x)
    !! Bessel function of the first kind of order zero \(J_0(x)\).
    !
    !! \(x \in \mathbb{R}\)

    real(wp), intent(in) :: x

    call caljy0(x, besselj0, 0)
  end function besselj0