BoundaryInterp_Scalar2D Subroutine

public subroutine BoundaryInterp_Scalar2D(this)

Arguments

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

Calls

proc~~boundaryinterp_scalar2d~~CallsGraph proc~boundaryinterp_scalar2d BoundaryInterp_Scalar2D interface~boundaryinterp_2d_gpu BoundaryInterp_2D_gpu proc~boundaryinterp_scalar2d->interface~boundaryinterp_2d_gpu

Contents


Source Code

  subroutine BoundaryInterp_Scalar2D(this)
    implicit none
    class(Scalar2D),intent(inout) :: this

    call BoundaryInterp_2D_gpu(this%interp%bMatrix_gpu,this%interior_gpu,this%boundary_gpu, &
                               this%interp%N,this%nvar,this%nelem)

  endsubroutine BoundaryInterp_Scalar2D