BoundaryInterp_Scalar1D Subroutine

public subroutine BoundaryInterp_Scalar1D(this)

Arguments

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

Calls

proc~~boundaryinterp_scalar1d~2~~CallsGraph proc~boundaryinterp_scalar1d~2 BoundaryInterp_Scalar1D interface~matrixop_1d_gpu~2 MatrixOp_1D_gpu proc~boundaryinterp_scalar1d~2->interface~matrixop_1d_gpu~2

Contents


Source Code

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

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

  endsubroutine BoundaryInterp_Scalar1D