BoundaryFlux_ESAtmo2D Subroutine

public subroutine BoundaryFlux_ESAtmo2D(this)

LMARS interface flux on GPU.

Arguments

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

Calls

proc~~boundaryflux_esatmo2d~~CallsGraph proc~boundaryflux_esatmo2d BoundaryFlux_ESAtmo2D interface~boundaryflux_esatmo2d_gpu boundaryflux_esatmo2d_gpu proc~boundaryflux_esatmo2d->interface~boundaryflux_esatmo2d_gpu

Contents

Source Code


Source Code

  subroutine BoundaryFlux_ESAtmo2D(this)
    !! LMARS interface flux on GPU.
    implicit none
    class(ESAtmo2D),intent(inout) :: this

    call boundaryflux_esatmo2d_gpu( &
      this%solution%boundary_gpu, &
      this%solution%extboundary_gpu, &
      this%geometry%nhat%boundary_gpu, &
      this%geometry%nscale%boundary_gpu, &
      this%flux%boundarynormal_gpu, &
      this%p0,this%Rd,this%cp/this%cv, &
      this%solution%interp%N, &
      this%solution%nelem)

  endsubroutine BoundaryFlux_ESAtmo2D