attractor/20 Shimizu-Morioka

2 Views
Find Similar (BETA)Download
Author name
n-
Source
Sketchfab
Polygon Count
79,996
Release Date
2017-09-23
License
CC BY 4.0

Asset Overview

> Lorenz-like: λ = 0.75, ξ = 0.45, > Burke-Shaw-like: λ = 0.81, ξ = 0.1914, ``` def shimizu_morioka(λ, ξ): return lambda x, y, z:( y, (1 - z)*x - λ*y, x*x - ξ*z, ) ```