I have readings of u,v,w component in Cartesian co-ordinate and want to convert it into cylindrical co-ordinate for detail explanation of flow physics.
If r is the radial distance and θ is the azimuthal angle in cylindrical polar coordinate system. Then Just put x=rcosθ and y=rsinθ in the equation which folows Cartesian coordinate system.
It is clear how someone can convert from cartesian to cylindrical. Assume that we have two points (x1,y1) and (x2,y2) with Ux=(x2-x1)/dt and Uy=(y2-y1)/dt. Of course Ur=Ux*cos(theta) + Uy*sin(theta) and Uf=-Ux*sin(theta) + Uy*cos(theta). But in this case, how's theta calculated from x1,x2,y1,y2? Is it correct to set theta=atan((y2-y1)/(x2-x1)) ?
Let (u, v, w) and (ur, ut, uz) denote the velocity field respectively in cartesian and cylindrical systems. Denote the Jacobian J=[cos (theta) sin(theta) 0; -sin(theta) cos(theta) 0; 0 0 1]
then you can use :
(ur,ut,uz)'=J(u,v,w)'.
Note here I assume uz and w follow the same orientation.