goss
is python wrapper around a C++ library for solving ordinary differential equations with a variety of different schemes.
Documentation is hosted at https://computationalphysiology.github.io/goss Source code is found at https://github.com/ComputationalPhysiology/goss
The general idea is that you define your ODE in a gotran ode file
and hand the ode over to goss
.
First define the ode in a gotran ODE file
# lorentz.ode
parameters(
sigma=10.0,
rho=28.0,
beta=8/3
)
# The values of the states represent the initial conditions
states(
x=0.0,
y=1.0,
z=1.05
)
dx_dt = sigma * (y - x)
dy_dt = x * (rho - z) - y
dz_dt = x * y - beta * z
You can now solve the ode as follows
import numpy as np
import matplotlib.pyplot as plt
from gotran import load_ode
import goss
# Import the ode in gotran
lorentz = load_ode("lorentz.ode")
# Jit compile the code for the right hand side
ode = goss.ParameterizedODE(lorentz)
# Select a solver and instantiate the solver
solver = goss.solvers.RKF32(ode)
# Select the time steps you want to solve for
t = np.linspace(0, 100, 10001)
# Solve the system
u = solver.solve(t)
# Plot the solution
fig = plt.figure()
ax = fig.add_subplot(projection="3d")
ax.plot(u[:, 0], u[:, 1], u[:, 2], lw=0.5)
ax.set_xlabel("X Axis")
ax.set_ylabel("Y Axis")
ax.set_zlabel("Z Axis")
ax.set_title("Lorenz Attractor")
plt.show()
For more examples, check out the demo folder
There is also a command line interface that can be used to list the available solvers, run the solver and generate the goss code
You can install goss with pip
python -m pip install pygoss
See installation instructions for more options
- There is currently an issue on Apple Silicon with exceptions raised from by the jit compiled code which means the one test is not passing. An issue has been filed for this here
- If you get the following type of error:
UnicodeDecodeError: 'utf-8' codec can't decode byte 0xc0 in position ...
, then you can try to installgoss
from source, i.e
python3 -m pip install pygoss --no-binary=pygoss --force-reinstall --no-deps
Contributions are very welcomed. To contribute please fork the repo, create a branch a submit a pull request. Before the pull request can be accepted it has to pass the test suit for the python and C++ code. Also note that we try to enforce an consistent coding style. To ensure that you follow the coding style you can install the pre-commit hook in the repo
python -m pip install pre-commit
pre-commit install
For every future commit, you will now run a set of tests that will make sure that you follow the coding style.
See the contributing section for more info.
goss
is licensed under the GNU LGPL, version 3 or (at your option) any later version.