I have made converging and diverging cone by code below. How I can made converging cone then diverging cone then cylider then diverging cone to pass fluid from top to bottom
Show older comments
>> [r,theta]=meshgrid(0:0.1:1, 0:pi/60:2*pi); >> x=r.*cos(theta); >> y=r.*sin(theta); >> z=r; >> mesh(x,y,z); >> hold on >> mesh(-x,-y,-z);
Answers (0)
Categories
Find more on Fluid Mechanics in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!