Left boundary is reflecting (nleftx = 0)
if R > Rjet, fixed inflow (nleftx = 2)
if R < Rjet. This switch will have to be made within the
sweepx.f subroutine since different rows will need different
boundary conditions, e.g.,
if(j.lt.jjet) then
nleftx = 2
else
nleftx = 0
endif
The variable jjet must be set somewhere, and put in global.h
so that other subroutines know its value. jjet should be at least
10, 20 would be even better.