UpdateGRK3_DGModel3D Subroutine

public subroutine UpdateGRK3_DGModel3D(this, m)

Arguments

TypeIntentOptionalAttributesName
class(DGModel3D), intent(inout) :: this
integer, intent(in) :: m

Contents

Source Code


Source Code

  subroutine UpdateGRK3_DGModel3D(this,m)
    implicit none
    class(DGModel3D),intent(inout) :: this
    integer,intent(in) :: m
    ! Local
    integer :: ndof

    ndof = this%solution%nvar* &
           this%solution%nelem* &
           (this%solution%interp%N+1)* &
           (this%solution%interp%N+1)* &
           (this%solution%interp%N+1)

    call UpdateGRK_gpu(this%worksol%interior_gpu,this%solution%interior_gpu,this%dsdt%interior_gpu, &
                       rk3_a(m),rk3_g(m),this%dt,ndof)

  endsubroutine UpdateGRK3_DGModel3D