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

Summary

Description
Русский: Проекция аттрактора Рёсслера на плоскость при , , . Красная точка в середине спирали и черная точка внизу слева - неподвижные точки системы дифференциальных уравнений Рёсслера.
日本語: xy位相平面におけるレスラー・アトラクタの軌道(a = 0.2、b = 0.2、c = 5.7
English: plane of Rössler attractor with , ,
Date
Source Own work based on: RosslerstdXY.png by Logicalrealist
Author Shiyu Ji
SVG development
InfoField
 The SVG code is valid.
 This vector image was created with an unknown SVG tool.
# An Euler method based simulation of the Rossler system.
import matplotlib.pyplot as pl
from matplotlib.lines import Line2D
import numpy as np

t0 = 0.0
dt = 0.02
t_final = 60
T = np.arange(t0, t_final, dt)
a, b, c = 0.2, 0.2, 5.7
ax = pl.figure().add_subplot(111)
pl.xlim([-10, 15])
pl.ylim([-30, 10])
pl.xlabel('X')
pl.ylabel('Y')

# We consider many initial conditions.
for y in np.arange(-8,-3,1.0):
    x, z = 0.0, 1.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.scatter(0,0,color='red')

pl.show()

Licensing

Shiyu Ji, the copyright holder of this work, hereby publishes 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.
Attribution:
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.

Captions

Add a one-line explanation of what this file represents

Items portrayed in this file

depicts

5 November 2016

File history

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

Date/TimeThumbnailDimensionsUserComment
current09:51, 5 November 2016Thumbnail for version as of 09:51, 5 November 2016720 × 540 (2.97 MB)Shiyu JiUser created page with UploadWizard

The following page uses this file:

Metadata