rhofun Function

private function rhofun(self, pbar)

Uses

FIXME : Add documentation

Type Bound

deq_type

Arguments

Type IntentOptional Attributes Name
class(deq_type), intent(in) :: self
real, intent(in) :: pbar

Return Value real


Contents

Source Code


Source Code

  real function rhofun (self, pbar)
    use splines, only: splint
    implicit none
    class(deq_type), intent(in) :: self
    real, intent(in) :: pbar
    rhofun = splint(pbar, self%rho_spl)
  end function rhofun