The Lorenz system is a simplified model for atmospheric convection introduced by Edward Lorenz in 1963. It consists of three ODEs:
This project explores numerical solutions and the chaotic behavior of the Lorenz attractor.
- RK4 integration of the Lorenz system
- 2D/3D trajectory plots
- Sensitivity to initial conditions
- Least squares analysis of divergence
Lorenz63/
βββ 01_report/ # PDF and LaTeX report (documentation and analysis)
βββ 02_src/ # Source code (Jupyter notebooks, Python scripts)
βββ LICENSE # MIT License
βββ README.md # Project documentation
This project uses the following Python libraries:
numpy
β numerical computing and array operationsscipy
β solving ODEs and cubic spline interpolationmatplotlib
β 2D and 3D plottingplotly
β interactive 3D visualizationspandas
β organizing and exporting data tablestabulate
β rendering tables in notebook-friendly formatsscikit-learn
β performance metrics (MAE, MSE, explained variance)