c
c ==========================================================
subroutine flgout2ac(q,mx,my,lb,ub,qo,mxo,myo,lbo,ubo,aux,
& lbr,ubr,shaper,meqn,maux,nc,t)
c ==========================================================
c
c # Computes primitives for linearized Euler equations of acoustics
c # for output and flagging.
c
c # Copyright (C) 2002 Ralf Deiterding
c # Brandenburgische Universitaet Cottbus
c
c # Copyright (C) 2003-2007 California Institute of Technology
c # Ralf Deiterding, ralf@cacr.caltech.edu
c
implicit double precision(a-h,o-z)
integer meqn, mx, my, mxo, myo
dimension q(meqn,mx,my), qo(mxo,myo), aux(maux,mx,my)
integer lb(2), ub(2), lbo(2), ubo(2), lbr(2), ubr(2), shaper(2),
& stride, imin(2), imax(2), i, getindx, d
c
stride = (ub(1) - lb(1))/(mx-1)
do 5 d = 1, 2
imin(d) = max(lb(d), lbr(d))
imax(d) = min(ub(d), ubr(d))
if (mod(imin(d)-lb(d),stride) .ne. 0) then
imin(d) = imin(d) + stride - mod(imin(d)-lb(d),stride)
endif
imin(d) = getindx(imin(d), lb(d), stride)
if (mod(imax(d)-lb(d),stride) .ne. 0) then
imax(d) = imax(d) - mod(imax(d)-lb(d),stride)
endif
imax(d) = getindx(imax(d), lb(d), stride)
5 continue
do 10 i = imin(1), imax(1)
do 10 j = imin(2), imax(2)
c # Density
if (nc.eq.1) qo(i,j) = aux(1,i,j)
c # Velocity u fluctations
if (nc.eq.2) qo(i,j) = q(2,i,j)
c # Velocity v fluctations
if (nc.eq.3) qo(i,j) = q(3,i,j)
c # Pressure fluctations
if (nc.eq.6) qo(i,j) = q(1,i,j)
c # Speed of sound
if (nc.eq.8) qo(i,j) = aux(2,i,j)
10 continue
return
end