I am struggling with this. I need to convert this velocity in cylindrical coordinates to Cartesian coordinates:
$$ V(r, \theta, z) \: \mathrm{to} \: V(u,v,w) $$
$$ V_{r} = 10; \: V_{\theta}= 0; \: V_{z}=0; $$
How can I find the $u,v,w$ components?
Edit: Will it be?:
$$ u = V_{r} \cos(\theta) - V_{\theta} \sin(\theta) $$
$$ v = V_{r} \sin(\theta) + V_{\theta} \cos(\theta) $$
$$ w = V_{z} $$ Best regards
Put in terms of derivatives, $V_r=\frac{dr}{dt},$ $V_\theta=\frac{d\theta}{dt},$ and $V_z=\frac{dz}{dt}.$
Since $u=r\cos\theta,$ $v=r\sin\theta,$ and $w=z,$ then the Chain and Product rules get us $$V_u=\frac{du}{dt}=\frac{dr}{dt}\cos\theta - r\sin\theta\frac{d\theta}{dt}=V_r\cos\theta-rV_\theta\sin\theta,$$ $$V_v=\frac{dv}{dt}=\frac{dr}{dt}\sin\theta + r\cos\theta\frac{d\theta}{dt}=V_r\sin\theta+rV_\theta\cos\theta,$$ and $$V_w=V_z.$$
Consequently, in general, we need to know more than just the cylindrical velocities, but also the cylindrical coordinates. In this case we only need to know $\theta,$ as substitution gets us $V_u=10\cos\theta,$ $V_v=10\sin\theta,$ and $V_w=0.$