File:RosslerC13.svg

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

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

Captions

Captions

Add a one-line explanation of what this file represents

Summary[edit]

Description
English: Rossler attractor a = b = 0.1, c = 13.0
Date
Source Own work
Author Shiyu Ji

Python/Matplotlib Code[edit]

# An Euler method based simulation of the Rossler system (c=13, chaotic).
import matplotlib.pyplot as pl
from matplotlib.lines import Line2D
import numpy as np

t0 = 0.0
dt = 0.002
t_final = 125
T = np.arange(t0, t_final, dt)
a, b, c = 0.1, 0.1, 13.0
ax = pl.figure().add_subplot(111)
pl.xlim([-20, 25])
pl.ylim([-20, 20])
pl.xlabel('X')
pl.ylabel('Y')

x, y, z = -10.0, 0.0, 0.0
for t in T:
    new_x = x + (-y - z) * dt
    new_y = y + (x + a*y) * dt
    new_z = z + (b + z*(x-c)) * dt
    line = Line2D([x, new_x], [y, new_y], color='blue', lw=0.5)
    ax.add_line(line)
    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
current02:55, 7 November 2016Thumbnail for version as of 02:55, 7 November 2016720 × 540 (12.37 MB)Shiyu Ji (talk | contribs)User created page with UploadWizard

There are no pages that use this file.

File usage on other wikis

The following other wikis use this file:

Metadata