simulate_lorenz: Simulator for the Lorenz dynamical system

View source: R/system_ode.R

simulate_lorenzR Documentation

Simulator for the Lorenz dynamical system

Description

Describes a simplified mathematical model for atmospheric convection. The parameters are set so that the system exhibits a chaotic behavior (σ = 10, ρ = 28, β = 8/3).

Usage

simulate_lorenz(
  start_coords = c(x = 1, y = 1, z = 1),
  t_max = 10,
  t_step = 1/100
)

Arguments

start_coords

initial conditions (numeric vector)

t_max, t_step

end time and step of the simulation (numeric).

Value

a dataframe with time, x, and y columns


picasa/generate documentation built on Feb. 28, 2025, 6:51 a.m.