• VTF
  • FSI
  • AMROC
  • SFC
  • Motion
  • STLIB
  • Main Page
  • src/1d/dummy-routines/flx1xx.f

    c
    c =========================================================
          subroutine flx1(maxmx,meqn,mbc,mx,q,maux,aux,f)
    c =========================================================
    c
    c     # Dummy flux-function. If slope-limiting is applied (method(2)>2), this
    c     # function is required.
    c
          implicit double precision (a-h,o-z)
          dimension q(1-mbc:maxmx+mbc, meqn)
          dimension aux(1-mbc:maxmx+mbc, maux)
          dimension f(1-mbc:maxmx+mbc, meqn)
    c
          return
          end
    

<