whm_final_pl Subroutine

public subroutine whm_final_pl(self)

Finalize the WHM massive body object - deallocates all allocatables

Arguments

Type IntentOptional Attributes Name
type(whm_pl), intent(inout) :: self

WHM massive body object


Calls

proc~~whm_final_pl~~CallsGraph proc~whm_final_pl whm_final_pl interface~whm_util_dealloc_pl whm_pl%whm_util_dealloc_pl proc~whm_final_pl->interface~whm_util_dealloc_pl

Source Code

      subroutine whm_final_pl(self)
         !! author: David A. Minton
         !!
         !! Finalize the WHM massive body object - deallocates all allocatables
         implicit none
         ! Argument
         type(whm_pl),  intent(inout) :: self 
            !! WHM massive body object
         call self%dealloc()
         return
      end subroutine whm_final_pl