Free_Scalar1D_t Subroutine

public subroutine Free_Scalar1D_t(this)

Arguments

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

Contents

Source Code


Source Code

  subroutine Free_Scalar1D_t(this)
    implicit none
    class(Scalar1D_t),intent(inout) :: this

    this%interp => null()
    deallocate(this%interior)
    deallocate(this%boundary)
    deallocate(this%boundarynormal)
    deallocate(this%extBoundary)
    deallocate(this%avgBoundary)
    deallocate(this%meta)
    deallocate(this%eqn)

  endsubroutine Free_Scalar1D_t