pynamicalsys 1.2.1__py3-none-any.whl → 1.2.2__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- pynamicalsys/__version__.py +2 -2
- {pynamicalsys-1.2.1.dist-info → pynamicalsys-1.2.2.dist-info}/METADATA +23 -15
- {pynamicalsys-1.2.1.dist-info → pynamicalsys-1.2.2.dist-info}/RECORD +5 -5
- {pynamicalsys-1.2.1.dist-info → pynamicalsys-1.2.2.dist-info}/WHEEL +0 -0
- {pynamicalsys-1.2.1.dist-info → pynamicalsys-1.2.2.dist-info}/top_level.txt +0 -0
pynamicalsys/__version__.py
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: pynamicalsys
|
3
|
-
Version: 1.2.
|
3
|
+
Version: 1.2.2
|
4
4
|
Summary: A Python toolkit for the analysis of dynamical systems
|
5
5
|
Author-email: Matheus Rolim Sales <rolim.sales.m@gmail.com>
|
6
6
|
License: GNU GENERAL PUBLIC LICENSE
|
@@ -689,6 +689,7 @@ Description-Content-Type: text/markdown
|
|
689
689
|
Requires-Dist: numpy>=1.21
|
690
690
|
Requires-Dist: matplotlib>=3.4
|
691
691
|
Requires-Dist: numba>=0.55
|
692
|
+
Requires-Dist: scipy>=0.6
|
692
693
|
|
693
694
|
# pynamicalsys: A Python toolkit for the analysis of dynamical systems
|
694
695
|
|
@@ -698,28 +699,28 @@ Requires-Dist: numba>=0.55
|
|
698
699
|
|
699
700
|
## Overview
|
700
701
|
|
701
|
-
**pynamicalsys** is designed to provide a fast, flexible, and user-friendly environment for analyzing **nonlinear dynamical systems**. It is
|
702
|
+
**pynamicalsys** is designed to provide a fast, flexible, and user-friendly environment for analyzing **nonlinear dynamical systems**. It is intended for students, researchers, educators, and enthusiasts who want to explore the world of chaos and dynamical systems. Beyond standard tools like trajectory generation and Lyapunov exponents calculation, **pynamicalsys** includes advanced features such as
|
702
703
|
|
703
|
-
-
|
704
|
-
-
|
705
|
-
-
|
706
|
-
-
|
707
|
-
-
|
708
|
-
-
|
709
|
-
-
|
704
|
+
- **Linear dependence index** for chaos detection.
|
705
|
+
- **Recurrence plots** and recurrence time statistics.
|
706
|
+
- Chaos indicators based on **weighted Birkhoff averages**.
|
707
|
+
- Statistical measures of **diffusion and transport** in dynamical systems.
|
708
|
+
- Computation of **periodic orbits**, their **stability** and their **manifolds**.
|
709
|
+
- Basin metric for **quantifying** the structure of **basins of attraction**.
|
710
|
+
- **Plot styling** for consistent and customizable visualizations.
|
710
711
|
|
711
|
-
pynamicalsys is built on top of NumPy and Numba, ensuring high performance and efficiency. Thanks to Numba accelerated computation, pynamicalsys offers speedups up to **130x** compared to the original Python implementation of the algorithms. This makes it suitable for large-scale simulations and analyses.
|
712
|
+
**pynamicalsys** is built on top of NumPy and Numba, ensuring high performance and efficiency. Thanks to Numba accelerated computation, **pynamicalsys** offers speedups up to **130x** compared to the original Python implementation of the algorithms. This makes it suitable for large-scale simulations and analyses.
|
712
713
|
|
713
714
|
## Installation
|
714
715
|
|
715
716
|
### Prerequisites
|
716
717
|
|
717
|
-
-
|
718
|
-
-
|
718
|
+
- Python 3.8 or higher
|
719
|
+
- pip (Python package installer)
|
719
720
|
|
720
721
|
### Install via PyPI
|
721
722
|
|
722
|
-
To install the latest stable release, run:
|
723
|
+
To install the latest stable release, run in your command line:
|
723
724
|
|
724
725
|
```bash
|
725
726
|
$ pip install pynamicalsys
|
@@ -727,6 +728,13 @@ $ pip install pynamicalsys
|
|
727
728
|
|
728
729
|
> **Note:** On **Windows**, it is **strongly recommended** to use [Anaconda](https://www.anaconda.com). It simplifies dependency management and avoids potential issues with scientific libraries during installation. Be sure to run the command from the **Anaconda Prompt**, not from Command Prompt or PowerShell, to ensure the correct environment is activated.
|
729
730
|
|
731
|
+
### Upgrade via PyPI
|
732
|
+
|
733
|
+
To upgrade your current version of **pynamicalsys** to the latest stable release, run in your command line:
|
734
|
+
|
735
|
+
```bash
|
736
|
+
$ pip install **pynamicalsys** --upgrade
|
737
|
+
```
|
730
738
|
|
731
739
|
### Install from source
|
732
740
|
|
@@ -761,13 +769,13 @@ Currently, our research paper is under review, but in the mean time, if you use
|
|
761
769
|
|
762
770
|
```bibtex
|
763
771
|
@misc{pynamicalsys,
|
764
|
-
title={pynamicalsys: A Python toolkit for the analysis of dynamical systems},
|
772
|
+
title={pynamicalsys: A Python toolkit for the analysis of dynamical systems},
|
765
773
|
author={Matheus Rolim Sales and Leonardo Costa de Souza and Daniel Borin and Michele Mugnaine and José Danilo Szezech Jr. and Ricardo Luiz Viana and Iberê Luiz Caldas and Edson Denis Leonel and Chris G. Antonopoulos},
|
766
774
|
year={2025},
|
767
775
|
eprint={2506.14044},
|
768
776
|
archivePrefix={arXiv},
|
769
777
|
primaryClass={nlin.CD},
|
770
|
-
url={https://arxiv.org/abs/2506.14044},
|
778
|
+
url={https://arxiv.org/abs/2506.14044},
|
771
779
|
}
|
772
780
|
```
|
773
781
|
|
@@ -1,5 +1,5 @@
|
|
1
1
|
pynamicalsys/__init__.py,sha256=IBHDcCD7wX8pULFXLk0yvF3uuNodvDKGirJektm1nR4,1215
|
2
|
-
pynamicalsys/__version__.py,sha256=
|
2
|
+
pynamicalsys/__version__.py,sha256=o0zEAUXpMoJZCULVYplCdjcZuIQ-3sIIZKyfNu_loQE,511
|
3
3
|
pynamicalsys/common/__init__.py,sha256=W4OESm7TA-EUTGUOtIgBgvSd1n80Mgl0KA2dCkw8yIw,721
|
4
4
|
pynamicalsys/common/basin_analysis.py,sha256=teGEOMPPOdzKNZsN0_OvkzBlcV-UOANRjcdFyI2-FLM,5473
|
5
5
|
pynamicalsys/common/recurrence_quantification_analysis.py,sha256=neBolgoWrGJYOQta71Jf2ZMwNK1RoaZb_wNHqb1mM7I,14356
|
@@ -22,7 +22,7 @@ pynamicalsys/discrete_time/models.py,sha256=u9MlaCzBzR_OomWRYbEC2sS2qpfDg7qzZjX8
|
|
22
22
|
pynamicalsys/discrete_time/trajectory_analysis.py,sha256=W3nqLJgqJYMV9DbBbSSOpzNDQ7XlroP3lC0sgSoFztY,48669
|
23
23
|
pynamicalsys/discrete_time/transport.py,sha256=29leQue2ReRbFzT_riqWXTZDvf2O7jMsMOUnAQPBrBU,15972
|
24
24
|
pynamicalsys/discrete_time/validators.py,sha256=4eWQAlZgCzFsrmijzVF10CZuoIMiu-jvrrvRokBFTkY,10013
|
25
|
-
pynamicalsys-1.2.
|
26
|
-
pynamicalsys-1.2.
|
27
|
-
pynamicalsys-1.2.
|
28
|
-
pynamicalsys-1.2.
|
25
|
+
pynamicalsys-1.2.2.dist-info/METADATA,sha256=UQDElv3HVAqJDDUM0251dJVDbQZPhyLTMe-hnHfPK-E,45834
|
26
|
+
pynamicalsys-1.2.2.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
27
|
+
pynamicalsys-1.2.2.dist-info/top_level.txt,sha256=1AqoHXye_hGRkvqu4KY0SdEuNTgqf3xyTlV8xhiJJFU,13
|
28
|
+
pynamicalsys-1.2.2.dist-info/RECORD,,
|
File without changes
|
File without changes
|