oscode: Oscillatory ordinary differential equation solver
Project description
About
Oscode is a C++ tool with a Python interface that solves oscillatory ordinary differential equations efficiently. It is designed to deal with equations of the form
where (friction term) and (frequency) can be given as arrays.
Oscode makes use of an analytic approximation of x(t) embedded in a stepping procedure to skip over long regions of oscillations, giving a reduction in computing time. The approximation is valid when the frequency changes slowly relative to the timescales of integration, it is therefore worth applying when this condition holds for at least some part of the integration range.
For the details of the numerical method used by oscode, see Citation.
Installation
Dependencies
Basic requirements for using the C++ interface:
C++11 or later
Eigen (a header-only library included in this source)
The strictly necessary Python dependencies are automatically installed when you use pip or the setup.py. They are:
The optional dependencies are:
Python
pyoscode can be installed via pip
pip install pyoscode
or via the setup.py
git clone https://github.com/fruzsinaagocs/oscode
cd oscode
python setup.py install --user
or
git clone https://github.com/fruzsinaagocs/oscode
cd oscode
pip install .
You can then import pyoscode from anywhere. Omit the --user option if you wish to install globally or in a virtual environment. If you have any difficulties, check out the FAQs - Installation section below.
You can check that things are working by running tests/ (also ran by Travis continuous integration):
pytest tests/
C++
oscode is a header-only C++ package, it requires no installation.
git clone https://github.com/fruzsinaagocs/oscode
and then include the relevant header files in your C++ code:
#include "solver.hpp"
#include "system.hpp"
Quick start
Try the following quick examples. They are available in the examples.
Python
C++
- Introduction to oscode:
examples/burst.cpp
- To plot results from burst.cpp:
examples/plot_burst.py
To compile and run:
cd examples/
g++ -I../include/ -g -Wall -std=c++11 -c -o burst.o burst.cpp
g++ -I../include/ -g -Wall -std=c++11 -o burst burst.o
./burst
Documentation
Documentation is hosted at readthedocs.
To build your own local copy of the documentation you can run:
cd pyoscode/docs
make html
Citation
If you use oscode to solve equations for a publication, please cite:
Contributing
Any comments and improvements to this project are welcome. You can contribute by:
Opening and issue to report bugs and propose new features.
Making a pull request.
Further help
You can get help by submitting an issue or posting a message on Gitter.
FAQs
Installation
- Eigen import errors:
pyoscode/_pyoscode.hpp:6:10: fatal error: Eigen/Dense: No such file or directory #include <Eigen/Dense> ^~~~~~~~~~~~~
Try explicitly including the location of your Eigen library via the CPLUS_INCLUDE_PATH environment variable, for example:
CPLUS_INCLUDE_PATH=/usr/include/eigen3 python setup.py install --user # or CPLUS_INCLUDE_PATH=/usr/include/eigen3 pip install pyoscode
where /usr/include/eigen3 should be replaced with your system-specific eigen location.
Thanks
Many thanks to Will Handley, Lukas Hergt, Anthony Lasenby, and Mike Hobson for their support and advice regarding the algorithm behind oscode. There are many packages without which some part of oscode (e.g. testing and examples) wouldn’t run as nicely and smoothly, thank you all developers for making and maintaining these open-source projects. A special thanks goes to the devs of exhale for making the beautiful C++ documentation possible.
Changelog
- 1.1.2:
Dense output bug fix at the C++ interface
- 1.1.1:
Support for mac and Windows OS at CI.
- 1.1.0:
Users can now define w, g as functions in Python (pyoscode) and call the solver via pyoscode.solve_fn(…)
- 1.0.6:
Fix issues related to dense output not being correctly generated, e.g. when timepoints at which dense output was asked for are in descending order, etc.
- 1.0.5:
Fixes related to dense output generation
Support for w, g to be given as class member functions in C++
Switched to GH actions for continuous integration, and fixed code such that unit tests would run again
Minor tweaks
- 1.0.4:
set minimally required numpy version: numpy>=1.20.0
drop Python 2.7 support, instead support 3.8 and 3.9 in addition to 3.7
- 1.0.3:
paper accepted to JOSS
- 1.0.2:
Fixed getting correct numpy include directories
- 1.0.1:
Added pyproject.toml to handle build dependencies (numpy)
- 1.0.0:
Dense output
Arrays for frequency and damping term need not be evenly spaced
Automatic C++ documentation on readthedocs
Eigen included in source for pip installability
First pip release :)
- 0.1.2:
Bug that occurred when beginning and end of integration coincided corrected
- 0.1.1:
Automatic detection of direction of integration
- 0.1.0:
Memory leaks at python interface fixed
C++ documentation added
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
File details
Details for the file pyoscode-1.1.2.tar.gz
.
File metadata
- Download URL: pyoscode-1.1.2.tar.gz
- Upload date:
- Size: 8.2 MB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.10.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 262daec396ead91fcff04a7af3afb7fe087583a0fbd3d57ffc5b2516f0a73b09 |
|
MD5 | b2955ca26f148ccc22af65581903b71e |
|
BLAKE2b-256 | e242f6332be9032e13f9a58af52b56300d6eeb98a6d1a16fb8ba8afba22cacb3 |