Description Usage Arguments Note References Examples
Provides an advection field corresponding to radial motion from or towards a specified reference point.
| 1 | advectionFradial(spacepoints, x0, y0, a, b)
 | 
| spacepoints | vector of coordinates (2 x d), where d is the number of locations/grid points | 
| x0 | x coordinate of the center of radial motion | 
| y0 | y coordinate of the center of radial motion | 
| a | parameter controlling the x component of radial velocity | 
| b | parameter controlling the y component of radial velocity | 
if a > 0, b > 0: divergence from (x0, y0) (source point effect)
if a < 0, b < 0: convergence to (x0, y0) (sink effect)
Papalexiou, S.M., Serinaldi, F., Porcu, E. (2021). Advancing Space-Time Simulation of Random Fields: From Storms to Cyclones and Beyond. Water Resources Research, 57, e2020WR029466, doi: 10.1029/2020WR029466
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | library(ggquiver)
library(ggplot2)
## specify coordinates
m = 25
aux <- seq(0, m - 1, length = m)
coord <- expand.grid(aux, aux)
af <- advectionFradial(spacepoints = coord,
                        x0 = floor(m / 2),
                        y0 = floor(m / 2),
                        a = 3,
                        b = 2)
## visualize advection field
dta <- data.frame(lon = coord[ ,1], lat = coord[ ,2], u = af[ ,1], v = af[ ,2])
ggplot(dta, aes(x = lon, y = lat, u = u, v = v)) +
geom_quiver() +
theme_light()
 | 
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.