BoundaryInterp_Scalar1D Subroutine

public subroutine BoundaryInterp_Scalar1D(this)

Arguments

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

Contents


Source Code

  subroutine BoundaryInterp_Scalar1D(this)
    implicit none
    class(Scalar1D),intent(inout) :: this

    call self_blas_matrixop_1d(this%interp%bMatrix_gpu, &
                               this%interior_gpu, &
                               this%boundary_gpu, &
                               2,this%N+1, &
                               this%nvar*this%nelem,this%blas_handle)

  endsubroutine BoundaryInterp_Scalar1D