rmvs_final_tp Subroutine

public subroutine rmvs_final_tp(self)

Finalize the RMVS test particle object - deallocates all allocatables

Arguments

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

RMVS test particle object


Contents

Source Code


Source Code

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