Free_ECDGModel2D_t Subroutine

public subroutine Free_ECDGModel2D_t(this)

Arguments

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

Calls

proc~~free_ecdgmodel2d_t~~CallsGraph proc~free_ecdgmodel2d_t Free_ECDGModel2D_t proc~free_dgmodel2d_t Free_DGModel2D_t proc~free_ecdgmodel2d_t->proc~free_dgmodel2d_t

Called by

proc~~free_ecdgmodel2d_t~~CalledByGraph proc~free_ecdgmodel2d_t Free_ECDGModel2D_t proc~free_ecadvection2d Free_ECAdvection2D proc~free_ecadvection2d->proc~free_ecdgmodel2d_t

Contents

Source Code


Source Code

  subroutine Free_ECDGModel2D_t(this)
    implicit none
    class(ECDGModel2D_t),intent(inout) :: this

    call this%twoPointFlux%DissociateGeometry()
    call this%twoPointFlux%Free()
    call Free_DGModel2D_t(this)

  endsubroutine Free_ECDGModel2D_t