Metadata-Version: 2.4
Name: flexipde
Version: 0.3.3
Summary: Flexible high‑performance plasma physics solver in Python using JAX and NumPy
Author-email: UWPlasma <uwplasma@wisc.edu>
Maintainer-email: UWPlasma <uwplasma@wisc.edu>
License-Expression: MIT
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Operating System :: OS Independent
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Science/Research
Classifier: Topic :: Scientific/Engineering :: Physics
Requires-Python: >=3.10
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: numpy
Requires-Dist: tomli; python_version < "3.11"
Provides-Extra: jax
Requires-Dist: jax; extra == "jax"
Requires-Dist: equinox; extra == "jax"
Requires-Dist: diffrax; extra == "jax"
Requires-Dist: optax; extra == "jax"
Requires-Dist: jaxtyping; extra == "jax"
Provides-Extra: symbolic
Requires-Dist: sympy2jax; extra == "symbolic"
Provides-Extra: docs
Requires-Dist: mkdocs-material; extra == "docs"
Requires-Dist: mkdocstrings-python; extra == "docs"
Provides-Extra: testing
Requires-Dist: pytest; extra == "testing"
Requires-Dist: pytest-cov; extra == "testing"
Requires-Dist: mypy; extra == "testing"
Dynamic: license-file

# flexipde

[![CI](https://github.com/uwplasma/flexipde/actions/workflows/ci.yml/badge.svg)](https://github.com/uwplasma/flexipde/actions/workflows/ci.yml)
[![Docs](https://github.com/uwplasma/flexipde/actions/workflows/docs.yml/badge.svg)](https://uwplasma.github.io/flexipde)
[![PyPI version](https://badge.fury.io/py/flexipde.svg)](https://pypi.org/project/flexipde)
[![codecov](https://codecov.io/gh/uwplasma/flexipde/branch/main/graph/badge.svg)](https://codecov.io/gh/uwplasma/flexipde)

**flexipde** is a flexible, high‑performance library for solving plasma physics equations in any number of dimensions.  It combines the ease of writing Python with the speed of modern array libraries like NumPy and JAX.  The library draws inspiration from—and goes beyond—established simulation frameworks to have a performant, simple to use and flexible library.  Instead of low‑level C++ or Fortran, you write concise Python code that can automatically run on CPUs or GPUs via JAX, and you can differentiate simulations with respect to parameters to enable optimisation or machine‑learning pipelines.

## Features

- **Unified grid and coordinate system:** Create structured grids in 1D, 2D or 3D, including cylindrical coordinate systems with arbitrary metrics.
- **Multiple discretisation methods:** Choose between Fourier spectral methods for periodic domains and finite difference methods for general boundaries.  Additional schemes (e.g. finite volume/WENO) can be added easily.
- **Built‑in models:** Includes linear advection, diffusion, ideal Alfvén waves, resistive MHD, two‑fluid plasmas, drift‑kinetic equations and a Vlasov–Poisson solver.  Additional models can be implemented by subclassing a base class.
- **Custom equations:** Write your own PDEs without modifying the library—see the Burgers and Hasegawa–Wakatani examples.
- **JAX acceleration and differentiability:** When JAX is installed, simulations are JIT‑compiled and run on GPU/TPU.  You can compute gradients of objectives with respect to simulation parameters and plug them into optimisation routines (via Optax).
- **CLI and configuration files:** Run simulations from the command line using TOML configuration files.  You can specify the filename without the `.toml` suffix for convenience.
- **Extensive documentation:** A pedagogical guide introduces the mathematics and numerics behind each model, with worked examples and a gentle introduction for students and researchers.
- **Continuous integration and coverage:** GitHub workflows run tests, build the docs, and report coverage to codecov.

## Installation

```bash
pip install flexipde
# Or install with JAX support
pip install 'flexipde[jax]'
```

To install from source for development:

```bash
git clone https://github.com/uwplasma/flexipde.git
cd flexipde
pip install -e .[jax,testing,docs]
```

## Models

The library comes with several built‑in models:

- **LinearAdvection:** Advection of a scalar field with constant velocity.  You can supply a velocity vector of arbitrary dimension.
- **Diffusion:** Heat equation with configurable diffusivity.
- **IdealAlfvén:** A toy model of shear Alfvén waves in 1D with two fields (velocity and magnetic field).
- **ResistiveMHD:** A simplified resistive magnetohydrodynamics system with transverse velocity and magnetic field and resistivity parameter.
- **TwoFluid:** Ion and electron densities advect independently with prescribed velocity vectors.
- **DriftKinetic:** A drift–kinetic equation in 1D phase space (x,v) with a constant electric field.
- **VlasovTwoStream:** A 1D Vlasov–Poisson solver modelling the two‑stream instability with Maxwellian streams.  You can adjust the number of velocity grid points and thermal velocities.
- **Custom models:** You can implement arbitrary PDE systems by subclassing :class:`flexipde.models.base.PDEModel` or by writing a simple Python function in a driver script.  See the Hasegawa–Wakatani and Burgers examples for guidance.

## Features

Run a 1D diffusion simulation from a TOML file:

```bash
flexipde examples/diffusion_1d
# automatically appends `.toml` if missing
```

Or run the same simulation from Python:

```python
from flexipde.io import build_simulation

sim = build_simulation('examples/diffusion_1d.toml')
times, states = sim.run()

import matplotlib.pyplot as plt
plt.plot(sim.grid.coords[0], states[-1]['u'])
plt.show()
```

See the `examples` directory for more scripts illustrating custom models and optimisation tasks.

## Documentation

The full documentation, including a tutorial introduction, API reference, and mathematical derivations, is available at **https://uwplasma.github.io/flexipde**.  The docs are built with MkDocs and use MathJax to render equations.

## Tests and coverage

To run the test suite with coverage:

```bash
pip install 'flexipde[testing]'
pytest --cov=flexipde tests
```

Manufactured solution tests are provided for each model to verify that spatial operators and PDE right‑hand sides are correct.  We use functions like `f(x,t)=cos(2x)*cos(3t)` to ensure the gradients, divergences and Laplacians match analytic expressions.

## Contributing

Contributions are welcome!  Please open issues or pull requests on GitHub.  We follow PEP8 coding style and maintain a high level of test coverage.

## License

This project is licensed under the MIT license—see the [LICENSE](LICENSE) file for details.
