how can I calculate ocean current speed from u and v data?
    19 visualizzazioni (ultimi 30 giorni)
  
       Mostra commenti meno recenti
    
I have only eastward sea water velocity and northward sea water velocity.
With this two data, how can I calculate ocean current speed?
0 Commenti
Risposte (1)
  KSSV
      
      
 il 2 Nov 2022
        Let u and v be the components. 
s = sqrt(u.^2+v.^2)
1 Commento
  Jeffrey Clark
      
 il 1 Dic 2022
				@민준 배, since you are asking for velocity and not speed and have orthogonal velocities that I assume match your frame of reference you already have the answer. If you want direction and speed, @KSSV has provide the speed calculation above, and if the direction is to be in local compass where N=0, E=90 etc:
velN = -30;
velE = +20;
speed = norm([velE velN])
direction = atan2d(velE,velN)
Vedere anche
Categorie
				Scopri di più su Oceanography and Hydrology in Help Center e File Exchange
			
	Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!


