How to arrainge data to use streamline?
4 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Hello,
I have data exported from a finite element software that I want to use in MATLAB to plot streamlines. The format is
xc,yc,zc,vx,vy,vz
where xc, yc and zc are (M-by-1) vectors of the coordinates of the nodes. vx, vy and vz are the components of the velocity at those coordinate locations.
The help for streamline says the X, Y and Z inputs must be monotonic, but my vectors are not sorted. I think if I sort them to satisfy the monotonic condition then they will not match the vx, vy and vz sorting, and since it is very unlikely they will all sort the same way, there is no way to keep them meatched to the vx, vy and vz.
How can I get my data in a form that streamline can use?
Thanks
0 commentaires
Réponses (3)
KSSV
le 13 Fév 2020
I guess what you have is unstructured FEM mesh data. YOu need to convert it to grided data. You can do inteprolation using gridddata. Refer this link:
0 commentaires
David Winthrop
le 13 Fév 2020
Modifié(e) : David Winthrop
le 13 Fév 2020
1 commentaire
KSSV
le 15 Fév 2020
Increase the number in linspace. You have taken only 50. Keep increasing it and check.
David Winthrop
le 14 Fév 2020
1 commentaire
MS
le 11 Mai 2020
Hi David,
I am facing the same issue as you. My streamline plots also not picking up the recirculation zone. Would you able to solve your problem in the streamline plot. Please let me know how you solved the issue.
Voir également
Catégories
En savoir plus sur Surface and Mesh Plots dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!