Metadata-Version: 2.4
Name: udg
Version: 0.1.1
Summary: Upwind summation-by-parts discontinuous galerkin method for solving PDEs
License-File: LICENSE
Requires-Python: <3.13,>=3.11
Requires-Dist: click>=8.1
Requires-Dist: matplotlib>=3.7
Requires-Dist: mpltools>=0.2.0
Requires-Dist: numpy>=1.26.0
Requires-Dist: scipy>=1.10
Provides-Extra: dev
Requires-Dist: mypy>=1.19.0; extra == 'dev'
Requires-Dist: pre-commit>=4.5.1; extra == 'dev'
Requires-Dist: pytest-xdist>=3.5.0; extra == 'dev'
Requires-Dist: pytest>=8.3.4; extra == 'dev'
Requires-Dist: ruff>=0.14.8; extra == 'dev'
Description-Content-Type: text/markdown

# UDG - Upwind Discontinuous Galerkin Method

[![PyPI version](https://badge.fury.io/py/udg.svg)](https://pypi.org/project/udg/)
[![Python 3.11+](https://img.shields.io/badge/python-3.11+-blue.svg)](https://www.python.org/downloads/)
[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)

A minimal python implementation of the upwind discontinuous galerkin method for solving scalar advection equations.

## Installation

```bash
pip install udg
```

Or with uv:

```bash
uv pip install udg
```

## Quick Start

### Step 1: Run the DGSEM solver (Kopriva et al., 2009)

```bash
python -m udg.cli sem-dg
```

### Step 2: Run the Nodal-DG solver (Hesthaven et al., 2008)

```bash
python -m udg.cli nodal-dg
```

### Step 3: Run the entropy-stable DG solver (Gassner et al., 2013)

```bash
python -m udg.cli entropy-dg
```

### Step 4: Run the upwind summation-by-parts DG solver

```bash
python -m udg.cli upwind-dg
```

## Development

### Setup

```bash
# Install uv
curl -LsSf https://astral.sh/uv/install.sh | sh

# Clone and install
git clone https://github.com/jaisw7/udg.git
cd udg
uv sync --all-extras

# Activate virtual environment
source .venv/bin/activate

# Install pre-commit hooks (optional)
pre-commit install
```

### Code Quality

```bash
# Format code
make format

# Run linting
make lint

# Type checking
make type-check

# Run all checks
make pre-commit
```

## Contributing

Contributions are welcome! Please:

1. Fork the repository
2. Create a feature branch
3. Make your changes with tests
4. Run `make pre-commit` to ensure code quality
5. Submit a pull request

## License

MIT License - See LICENSE file for details

## Disclaimer

This software is for educational and research purposes only.

## Support

For issues, questions, or contributions:

- Open an issue on GitHub
- Check documentation
- Review test examples

## References

1. Kopriva, David A. Implementing spectral methods for partial differential equations: Algorithms for scientists and engineers. Springer Science & Business Media, 2009.
2. Hesthaven, Jan S., and Tim Warburton. Nodal Discontinuous Galerkin Methods: Algorithms, Analysis, and Applications. Springer Science & Business Media, 2008.
3. Gassner, Gregor J. "A skew-symmetric discontinuous Galerkin spectral element discretization and its relation to SBP-SAT finite difference methods." SIAM Journal on Scientific Computing 35.3 (2013): A1233-A1253.

## Results

### DGSEM

![DGSEM](assets/semdg_adv.pdf.png)

### Nodal-DG

![Nodal-DG](assets/nodaldg_adv.pdf.png)

### Entropy-Stable DG

![Entropy-Stable DG](assets/entropydg_adv.pdf.png)

### Upwind DG

![Upwind DG](assets/upwinddg_adv.pdf.png)
