boundaryflux_LinearShallowWater2D Subroutine

public subroutine boundaryflux_LinearShallowWater2D(this)

Arguments

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

Calls

proc~~boundaryflux_linearshallowwater2d~~CallsGraph proc~boundaryflux_linearshallowwater2d boundaryflux_LinearShallowWater2D interface~boundaryflux_linearshallowwater2d_gpu boundaryflux_LinearShallowWater2D_gpu proc~boundaryflux_linearshallowwater2d->interface~boundaryflux_linearshallowwater2d_gpu

Contents


Source Code

  subroutine boundaryflux_LinearShallowWater2D(this)
    implicit none
    class(LinearShallowWater2D),intent(inout) :: this

    call boundaryflux_LinearShallowWater2D_gpu(this%solution%boundary_gpu, &
                                               this%solution%extBoundary_gpu, &
                                               this%geometry%nhat%boundary_gpu, &
                                               this%geometry%nscale%boundary_gpu, &
                                               this%flux%boundaryNormal_gpu, &
                                               this%g, &
                                               this%H, &
                                               this%solution%interp%N, &
                                               this%solution%nelem, &
                                               this%solution%nvar)

  endsubroutine boundaryflux_LinearShallowWater2D