DissociateGeometry_MappedVector2D_t Subroutine

public subroutine DissociateGeometry_MappedVector2D_t(this)

Arguments

TypeIntentOptionalAttributesName
class(MappedVector2D_t), intent(inout) :: this

Contents


Source Code

  subroutine DissociateGeometry_MappedVector2D_t(this)
    implicit none
    class(MappedVector2D_t),intent(inout) :: this

    if(associated(this%geometry)) then
      this%geometry => null()
      this%geometry_associated = .false.
    endif

  endsubroutine DissociateGeometry_MappedVector2D_t