The Tangled Bank
  • Home
  • Vignettes
    • Dates From netCDF Files: Two Approaches
    • Downloading and Prep: ERDDAP
    • Retrieving Chlorophyll-a Data from ERDDAP Servers
    • Downloading and Prep: Python + CDO
    • Detecting Events in Gridded Data
    • Regridding gridded data
    • Displaying MHWs and MCSs as Horizon Plots
    • heatwaveR Issues
    • Plotting the Whale Sightings and Chlorophyll-a Concentrations
    • Spatial Localisation, Subsetting, and Aggregation of the Chlorophyll-a Data
    • Wavelet Analysis of Diatom Time Series
    • Extracting gridded data within a buffer
  • High-Performace Computing
    • Using Lengau
    • PBSPro user and job management
    • Using tmux
  • Tangled Bank Blog
  • About
  • Blogroll
    • R-bloggers
    • Source Code
    • Report a Bug

Wind stress curl

This vignette demonstrates the basic calculation of wind stress curl in R.
Author

AJ Smit

Published

Invalid Date

Wind Stress Curl:

Wind stress curl is a measure of the spatial variation in wind stress across a given area. Specifically, it represents the rate of change of wind stress with respect to distance in a certain direction. It plays a vital role in ocean dynamics by driving oceanic circulation, particularly the formation of ocean gyres and upwelling or downwelling of water masses.

Mathematically, if we define the wind stress components as (\(\tau_x\)) and (\(\tau_y\)) in the \(x\) and \(y\) directions respectively, the wind stress curl (often represented by the symbol \(C\)) in a two-dimensional horizontal plane can be defined as:

\[C = \frac{\partial \tau_y}{\partial x} - \frac{\partial \tau_x}{\partial y}\]

Difference from Wind Speed:

  1. Nature of Measurement:
    • Wind Stress Curl: It measures the spatial variability or rotation in the wind-induced forces on the ocean’s surface.
    • Wind Speed: It simply measures how fast the wind is blowing, without accounting for direction or its interaction with the ocean’s surface.
  2. Implication:
    • Wind Stress Curl: It has a direct impact on ocean dynamics, particularly in driving vertical movement in the water column (upwelling or downwelling) and influencing the formation and motion of oceanic gyres.
    • Wind Speed: It gives a general sense of the strength of the wind but doesn’t indicate its impact on oceanic processes.
  3. Units & Dimensions:
    • Wind Stress Curl: Being a measure of spatial variability, it has dimensions of inverse length and is often measured in units like (\(N \times m^{-2} \times km^{-1}\)).
    • Wind Speed: It is typically measured in units of length per unit time, like meters per second (\(m/s\)) or kilometers per hour (\(km/h\)).

In essence, while wind speed tells us how fast the wind is blowing, wind stress curl gives insight into the rotational effect of wind patterns on ocean dynamics.

Reuse

CC BY-NC-SA 4.0

Citation

BibTeX citation:
@online{smit,_a._j.,
  author = {Smit, A. J., and Smit, AJ},
  title = {Wind Stress Curl},
  date = {},
  url = {http://tangledbank.netlify.app/vignettes/Wind_stress_curl.html},
  langid = {en}
}
For attribution, please cite this work as:
Smit, A. J., Smit A Wind stress curl. http://tangledbank.netlify.app/vignettes/Wind_stress_curl.html.
Source Code
---
author: "AJ Smit"
date: "`r Sys.Date()`"
title: "Wind stress curl"
description: "This vignette demonstrates the basic calculation of wind stress curl in R."
bibliography: ../references.bib
csl: ../marine-biology.csl
format:
  html:
    code-fold: false
    toc-title: "On this page"
    standalone: true
    toc-location: right
    page-layout: full
---

**Wind Stress Curl**:

Wind stress curl is a measure of the spatial variation in wind stress across a given area. Specifically, it represents the rate of change of wind stress with respect to distance in a certain direction. It plays a vital role in ocean dynamics by driving oceanic circulation, particularly the formation of ocean gyres and upwelling or downwelling of water masses.

Mathematically, if we define the wind stress components as ($\tau_x$) and ($\tau_y$) in the $x$ and $y$ directions respectively, the wind stress curl (often represented by the symbol $C$) in a two-dimensional horizontal plane can be defined as:

$$C = \frac{\partial \tau_y}{\partial x} - \frac{\partial \tau_x}{\partial y}$$

**Difference from Wind Speed**:

1. **Nature of Measurement**: 
   - **Wind Stress Curl**: It measures the spatial variability or rotation in the wind-induced forces on the ocean's surface. 
   - **Wind Speed**: It simply measures how fast the wind is blowing, without accounting for direction or its interaction with the ocean's surface.

2. **Implication**: 
   - **Wind Stress Curl**: It has a direct impact on ocean dynamics, particularly in driving vertical movement in the water column (upwelling or downwelling) and influencing the formation and motion of oceanic gyres.
   - **Wind Speed**: It gives a general sense of the strength of the wind but doesn't indicate its impact on oceanic processes.

3. **Units & Dimensions**: 
   - **Wind Stress Curl**: Being a measure of spatial variability, it has dimensions of inverse length and is often measured in units like ($N \times m^{-2} \times km^{-1}$).
   - **Wind Speed**: It is typically measured in units of length per unit time, like meters per second ($m/s$) or kilometers per hour ($km/h$).

In essence, while wind speed tells us how fast the wind is blowing, wind stress curl gives insight into the rotational effect of wind patterns on ocean dynamics.

© 2025, AJ Smit

  • Edit this page
  • Report an issue
Cookie Preferences

Made with and Quarto
View the source at GitHub