This is a package for simulating super Brownian motions.
Project description
Super Brownian Motion Simulation
Introduction
This Python script simulates super Brownian Motion (SBm), a stochastic process where particles move randomly and branch under certain conditions. The script offers functionalities to simulate the motion, plot the paths, save the images, export the data, and generate an animation of the process in the gif format.
- Currently, all paths will branch or die after every fixed number of steps (default 100). More flexibility will be added in the future.
Requirements
- Python 3
- NumPy
- Matplotlib
Installation
Ensure you have Python 3 installed. You can install the required packages using pip:
pip install git+https://github.com/yourusername/mypackage.git
or from pypi
pip install simulation-super-brownian-motions
Usage
Command line
To run the simulation with default parameters, simply execute the script:
SuperBm --help
Command Line Arguments
You can customize the simulation using the following command line arguments:
-s
or--seed
: Random seed (default: 42), set to-1
for random seed based on current time (for random outcome)-n
or--num-steps
: Number of steps in the simulation (default: 301)-u
or--update-steps
: Number of steps between branching events (default: 100)-p
or--branching-prob
: Probability of branching at each step (default: 0.5)-c
or--scale
: Scale of the Brownian motion (default: 10.0)-d
or--dpi
: DPI parameter for the animation (default: 150)-a
or--save-animation
: Save the animation as a GIF
Example
SuperBm --num-steps 500 --branching-prob 0.7 --scale 15
This command runs the simulation with 500 steps, a branching probability of 0.7, a Brownian motion scale of 15, and with default values for the other parameters. The animation won't be saved as a GIF.
If you want the animation, run the following command:
SuperBm --num-steps 500 --branching-prob 0.7 --scale 15 --save-animation
Output
- The script will plot the paths of the Brownian motion.
- Paths will be exported as a CSV file.
- The plot will be saved as files in both PNG and JPET formats.
- With additional argument
-a
or--save-animation
, the script will generate an animation of the process and save it as a GIF file.
Within Python as a Module
You can use the script within Python as a module. The following example shows how to run the simulation with default parameters:
import simulation_super_brownian_motions.super_bm_simulation as sbm
# Create an instance of the class
instance = sbm.Branching_BM()
# Use the instance and its methods
instance.simulate()
instance.plot_paths()
Contributing
Contributions to this project are welcome! Please feel free to submit pull requests or open issues to discuss potential improvements or features.
Acknowledgments
Thanks for helpful discussions with Yumin Zhong and Panqiu Xia from Auburn University.
License
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file simulation_super_brownian_motions-1.2.3.tar.gz
.
File metadata
- Download URL: simulation_super_brownian_motions-1.2.3.tar.gz
- Upload date:
- Size: 7.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.18
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3e78ccf546cc5098461cb2254769fe72c7ca3c67e2063e07babe63957468f1b6 |
|
MD5 | 40027eeec93b9f1a7f93a26697fd8604 |
|
BLAKE2b-256 | af360540e1b0550ad38a0152c779acd36a3661bf35f7f2f3d48b726f5ec560d7 |
File details
Details for the file simulation_super_brownian_motions-1.2.3-py3-none-any.whl
.
File metadata
- Download URL: simulation_super_brownian_motions-1.2.3-py3-none-any.whl
- Upload date:
- Size: 8.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.18
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | bd16bd29e7098461418f8c60be049acb66f7af7908120824e61a6b2ee691ad82 |
|
MD5 | 235edd7671a8053ab4d6ab6eae2180d6 |
|
BLAKE2b-256 | 06d71304e2fe419d6ce5fcc5bb56cbd32b6f5808e1d33dd38105fb792c851169 |