Filter löschen
Filter löschen

Problem in computing the curl of 2D velocity vector field

6 Ansichten (letzte 30 Tage)
Hi everyone,
I'm trying the compute the curl of a 2D velocity vector field using the function
[curlz,cav] = curl(X,Y,UU,VV);
X, Y are generated using meshgrid. However I obtain a matrix of NaNs and + - Inf ... Do you know what's happening? I think I followed the correct instructions from the Matlab Help... Please let me know.
Emanuele
  2 Kommentare
Thorsten
Thorsten am 3 Dez. 2014
Bearbeitet: Thorsten am 3 Dez. 2014
No, we don't know what's happening because you have not told us how you computed X, Y, UU and VV. Please do so and provide the code...
Andreas Passos
Andreas Passos am 25 Feb. 2021
Bearbeitet: Andreas Passos am 25 Feb. 2021
Hi, I want to calculate the curl from a single trajectory.
Basically, I want to identify if the trajectory rotates clockwise of anti-clock wise and measure the rotation speed.
I use something like the below:
x = data(:,1);
y = data(:,2);
u = data(:,3);
v = data(:,4);
V = [u v];
R = [x y];
curlRes = curl(V,R);
The result is 0 everywhere.
I also tried [curlz,cav] = curl(x,y,u,v) and it gives the follwoing error
'Index in position 1 is invalid. Array indices must be positive integers or logical values.'
the vectors u,v contain negative values as well as they indicate the velocity direction
Thank you

Melden Sie sich an, um zu kommentieren.

Akzeptierte Antwort

Emanuele Spinosa
Emanuele Spinosa am 3 Dez. 2014
I sorted out the problem, however it seems that the curl is too big at the extremes of the domain... any idea how to fix this?
  1 Kommentar
Andreas Passos
Andreas Passos am 25 Feb. 2021
How did you sort the problem, I have the same issue. Can you explain please?

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (1)

Youssef  Khmou
Youssef Khmou am 3 Dez. 2014
Generally, the input velocity matrices may contain NaNs, try :
sum(isnan(UU(:))); % must be zero if there is no NaN, same for VV
  1 Kommentar
Emanuele Spinosa
Emanuele Spinosa am 3 Dez. 2014
yes, they're both 0, both for UU and VV... can it depend on X and Y matrices?

Melden Sie sich an, um zu kommentieren.

Kategorien

Mehr zu Linear Algebra finden Sie in Help Center und File Exchange

Tags

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by