Hi,
I'm not sure I understand your case properly, but a high divengence is a common problem near the outflow boundary.
A solution that worked well for me is to locally accelerate the flow at this boundary : just add the following lines in userchk :
real d(lx1,ly1,lz1,lelt),m1(lx1*ly1*lz1,lelt), rq,uin
rq = 1.5 !flowrate ratio : uout/uin (typically 1.5)
uin = 0. !will compute the exact flowrate if =0.
call turb_outflow(d,m1,rq,uin)
Hoping this helps you,
Emmanuel