step_baro_harmonic | R Documentation |
Estimate the static barometric efficiency using harmonic methods (Ratio, Acworth, Rau, Transfer)
step_baro_harmonic(
.rec,
time,
water_level,
barometric_pressure,
earth_tide,
frequency = c(1.9324, 2),
cycle_size = 86400,
start = 0,
inverse = FALSE,
role = "augment",
...
)
.rec |
the R6 recipe object. |
water_level |
|
barometric_pressure |
|
earth_tide |
|
frequency |
numeric vector - the frequencies of the sin and cos curves |
cycle_size |
numeric - the period of the sin and cos curves |
inverse |
|
role |
character - the name of the role |
... |
additional arguments |
double
barometric efficiency using different methods
Acworth, R.I., Halloran, L.J., Rau, G.C., Cuthbert, M.O. and Bernardi, T.L., 2016. An objective frequency domain method for quantifying confined aquifer compressible storage using Earth and atmospheric tides. Geophysical Research Letters, 43(22), pp.11-671.
Other barometric:
step_baro_clark()
,
step_baro_least_squares()
data("kennel_2020")
library(data.table)
library(collapse)
formula <- as.formula(wl~.)
frec = recipe(formula = formula, data = kennel_2020) |>
step_baro_harmonic(datetime,
wl,
baro,
et,
inverse = FALSE)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.