Vector plots by Quiver in MATLAB
Afficher commentaires plus anciens
Hello everyone,
I created a vector plot by Glyph in Paraview (using OpenFOAM), but couldn't able to plot the same using Quiver in MATLAB.
The plot was mentioned below (Glyph images) at different times (1 hour and 10 hours). The plane locations are different: x = 0.05m for 1 hour and x = 0.20m for 10 hours, where the vectors are initiated from the plane.

In order to plot the similar results in MATLAB, I have discretized my equations clearly and coded it. When I type the command line,
quiver(x,y,u',v','AutoScaleFactor',0.2), I got the below image, which seems bit inapproriate when compared to above image.

Can someone help me, how to make it work in Matlab. I believe, I'm lagging some technique to solve by Quiver ?
Thank you
Réponses (1)
[X,Y,Z] = peaks(100) ;
[u,v] = gradient(Z) ;
w = sqrt(u.^2+v.^2) ;
pcolor(X,Y,w) ;
shading interp ; colormap(jet);
hold on
quiver(X,Y,u,v,'k')
If you want color on arrows try using: https://in.mathworks.com/matlabcentral/fileexchange/3225-quiverc?s_tid=ta_fx_results
1 commentaire
Kumaresh Kumaresh
le 26 Mar 2023
Modifié(e) : Kumaresh Kumaresh
le 26 Mar 2023
Catégories
En savoir plus sur Vector Fields dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!

