Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(abstract_geo_type), | intent(in) | :: | self | |||
real, | intent(in) | :: | pbar |
real function rhofun_null (self, pbar) result(rhofun) !Can't be pure as deq variant isnt
implicit none
class(abstract_geo_type), intent(in) :: self
real, intent (in) :: pbar
rhofun = 0.
UNUSED_DUMMY(self); UNUSED_DUMMY(pbar)
end function rhofun_null