simulate_Lorenz_noise {mvDFA} | R Documentation |
Simulate the Lorenz System with noise
Description
Simulate the Lorenz System with noise
Usage
simulate_Lorenz_noise(
N = 1000,
delta_t = NULL,
tmax = 50,
X0 = 0,
Y0 = 1,
Z0 = 1,
sdX = NULL,
sdY = NULL,
sdZ = NULL,
sdnoiseX,
sdnoiseY,
sdnoiseZ,
s = 10,
r = 28,
b = 8/3,
naive = FALSE,
return_time = TRUE
)
Arguments
N |
Length of Times Series |
delta_t |
Step size for time scale. If |
tmax |
Upper bound of the time scale. This argument is ignored if |
X0 |
Initial value for X at t=0. |
Y0 |
Initial value for Y at t=0. |
Z0 |
Initial value for Z at t=0. |
sdX |
Use this argument to rescale the X-coordinate to have the desired standard deviation (exactly). This is ignored if set to |
sdY |
Use this argument to rescale the Y-coordinate to have the desired standard deviation (exactly). This is ignored if set to |
sdZ |
Use this argument to rescale the Z-coordinate to have the desired standard deviation (exactly). This is ignored if set to |
sdnoiseX |
Standard deviation of Gaussian noise of X-coordinate. If set to |
sdnoiseY |
Standard deviation of Gaussian noise of Y-coordinate. If set to |
sdnoiseZ |
Standard deviation of Gaussian noise of Z-coordinate. If set to |
s |
s-parameter of the Lorenz ODE. See Vignette for further details. |
r |
r-parameter of the Lorenz ODE. See Vignette for further details. |
b |
b-parameter of the Lorenz ODE. See Vignette for further details. |
naive |
Logical whether naive calculation should be used. |
return_time |
Logical whether the time-coordinate should be included in the returned |
Value
Returns a three dimensional time series as data.frame
following the Lorenz system (Lorenz, 1963, <doi:10.1175/1520-0469(1963)020<0130:DNF>2.0.CO;2>).
References
Lorenz, E. N. (1963). Deterministic nonperiodic flow. Journal of atmospheric sciences, 20(2), 130-141. <doi:10.1175/1520-0469(1963)020<0130:DNF>2.0.CO;2>