Free_DGModel2D_t Subroutine

public subroutine Free_DGModel2D_t(this)

Arguments

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

Called by

proc~~free_dgmodel2d_t~~CalledByGraph proc~free_dgmodel2d_t Free_DGModel2D_t proc~free_ecdgmodel2d_t Free_ECDGModel2D_t proc~free_ecdgmodel2d_t->proc~free_dgmodel2d_t proc~free_dgmodel2d Free_DGModel2D proc~free_dgmodel2d->proc~free_dgmodel2d_t proc~free_ecadvection2d Free_ECAdvection2D proc~free_ecadvection2d->proc~free_ecdgmodel2d_t

Contents

Source Code


Source Code

  subroutine Free_DGModel2D_t(this)
    implicit none
    class(DGModel2D_t),intent(inout) :: this

    call this%solution%Free()
    call this%workSol%Free()
    call this%dSdt%Free()
    call this%solutionGradient%Free()
    call this%flux%Free()
    call this%source%Free()
    call this%fluxDivergence%Free()
    call this%hyperbolicBCs%Free()
    call this%parabolicBCs%Free()
    call this%AdditionalFree()

  endsubroutine Free_DGModel2D_t