
Generate and Propagate a Wind Wave Over Variable Bathymetry
Source:R/build_wind_wave.R
build_wind_wave.RdThis function builds a wind-wave over input bathymetry and distances returning an estimate of final wave height and related wave characteristics (e.g., wave energy index, wave period, wave number, celerity)
Arguments
- fetch
Numeric. Total wind fetch distance (in meters).
- depths
Numeric vector Water depths (in meters) at each segment; must be one element longer than
distances.- distances
Numeric vector. Horizontal distances (in meters) between successive depth points. Must be one element shorter than
depths.- wind_speed
Numeric. Wind speed blowing from direction (in m/s).
Value
A data frame with the following columns:
- wave_height_final
Final wave height at the end of the fetch (in meters).
- WEI
Wave Energy Index
- wave_period
Estimated wave period (in seconds).
- wave_number
Average wave number (radians per meter).
- celerity_final
Final wave celerity (phase speed, in m/s).
- nnumber_final
Final group velocity coefficient.