File:ChuaAttractorModified.svg

From Wikimedia Commons, the free media repository
Jump to navigation Jump to search

Original file(SVG file, nominally 720 × 540 pixels, file size: 19.8 MB)

Captions

Captions

Add a one-line explanation of what this file represents

Summary[edit]

Description
English: Modified Chua chaotic attractor
Date
Source Own work
Author Shiyu Ji

Python Matplotlib Code[edit]

# A 3D Euler method based simulation of the Modified Chua Attractor.
from mpl_toolkits.mplot3d import axes3d
import matplotlib.pyplot as pl
import numpy as np

t0 = 0.0
dt = 0.01
t_final = 1000
T = np.arange(t0, t_final, dt)
alpha, beta = 10.82, 14.286
a, b, c, d = 1.3, .11, 7, 0
ax = pl.figure().add_subplot(111, projection='3d')
ax.set_xlabel('X')
ax.set_ylabel('Y')
ax.set_zlabel('Z')

x, y, z = 1, 1, 0
for t in T:
    h = -b*np.sin(np.pi*x/(2*a)+d)
    new_x = x + alpha*(y-h) * dt
    new_y = y + (x - y + z) * dt
    new_z = z - beta * y * dt
    ax.plot([x, new_x], [y, new_y], [z, new_z], 'b-', linewidth=0.5)
    x, y, z = new_x, new_y, new_z

pl.show()

Licensing[edit]

I, the copyright holder of this work, hereby publish it under the following license:
w:en:Creative Commons
attribution share alike
This file is licensed under the Creative Commons Attribution-Share Alike 4.0 International license.
You are free:
  • to share – to copy, distribute and transmit the work
  • to remix – to adapt the work
Under the following conditions:
  • attribution – You must give appropriate credit, provide a link to the license, and indicate if changes were made. You may do so in any reasonable manner, but not in any way that suggests the licensor endorses you or your use.
  • share alike – If you remix, transform, or build upon the material, you must distribute your contributions under the same or compatible license as the original.

File history

Click on a date/time to view the file as it appeared at that time.

Date/TimeThumbnailDimensionsUserComment
current09:20, 11 November 2016Thumbnail for version as of 09:20, 11 November 2016720 × 540 (19.8 MB)Shiyu Ji (talk | contribs)User created page with UploadWizard

The following page uses this file:

File usage on other wikis

The following other wikis use this file:

Metadata