whm_final_tp Subroutine

public subroutine whm_final_tp(self)

Finalize the WHM test particle object - deallocates all allocatables

Arguments

TypeIntentOptionalAttributesName
type(whm_tp), intent(inout) :: self

WHM test particle object


Contents

Source Code


Source Code

      subroutine whm_final_tp(self)
         !! author: David A. Minton
         !!
         !! Finalize the WHM test particle object - deallocates all allocatables
         implicit none
         ! Arguments
         type(whm_tp),  intent(inout) :: self 
            !! WHM test particle object
         call self%dealloc()
         return
      end subroutine whm_final_tp