MATLAB: How to extract the velocity profiles from quiver plot

flowvelocity

I'm trying to post-process my simulation data an to calculate the momentum and displacement thicknesses (Fluent) for flow over a cylinder problem. The velocity vectors in matlab can be seen below:
I want to extract the velocities ona radial lines at each theta position around cylinder. How can I do that?
Thanks in advance,
Acar

Best Answer

This you can achieve by using interpolation. Read about interp2. You have (X,Y) already. Make your required points at which you want velocities and use interp2 for (u,v) components seperately.
Related Question