Plotting streamlines in an unsteady flow given vector field equation
5 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
How do i input the y equation into matlab to plot the stream lines on the vector field?
am I doing the correct way or is there another way of doing this, thanks for the help
The first picture shows the velocity fileld equaiton and the second picture shows the matlab codes to get the graphs.
0 commentaires
Réponse acceptée
Sam Chak
le 20 Avr 2022
@Kiat Tsen Lim
Since it involves the time dimension, I think you will need to use the quiver3() function.
3 commentaires
Sam Chak
le 21 Avr 2022
Because I thought you want to plot for .
Since t = 0, then you may be looking for this:
[X, Y] = meshgrid(0:10/14:10, -1:11/14:10);
U = 0.4 + 0.9*X;
V = 1.2 - 0.7*Y;
quiver(X, Y, U, V, 1.5)
axis square
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Vector Fields 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!