Metadata-Version: 2.4
Name: goad-py
Version: 0.3.0
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Science/Research
Classifier: Topic :: Scientific/Engineering :: Physics
Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Classifier: Programming Language :: Rust
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Programming Language :: Python :: Implementation :: PyPy
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Operating System :: OS Independent
Summary: Physical optics light scattering computation
Keywords: light-scattering,optics,simulation,scientific-computing,physics
Home-Page: https://github.com/hballington12/goad
Author-email: Harry Ballington <ballington@uni-wuppertal.de>
License: GPL-3.0
Requires-Python: >=3.8
Description-Content-Type: text/markdown; charset=UTF-8; variant=GFM
Project-URL: Homepage, https://github.com/hballington12/goad
Project-URL: Documentation, https://docs.rs/goad/0.1.0/goad/index.html
Project-URL: Repository, https://github.com/hballington12/goad
Project-URL: Rust Crate, https://crates.io/crates/goad

# GOAD-PY

Python bindings for GOAD (Geometric Optics Approximation with Diffraction) - a physical optics light scattering computation library.

## Installation

```bash
pip install goad-py
```

## Quick Start

```python
import goad_py

# Create a problem with minimal setup
problem = goad_py.Problem("path/to/geometry.obj")

# Solve and get results
results = problem.py_solve()

# Access scattering data
print(f"Number of angles: {results.num_angles}")
print(f"Scattering cross section: {results.sca_cross_section}")
```

## Features

- Fast light scattering computations using physical optics
- Support for various 3D geometry formats
- Configurable wavelength, refractive index, and orientations
- Multi-orientation averaging capabilities
- Efficient parallel computation with GIL release

## Documentation

- [Rust API Documentation](https://docs.rs/goad/0.1.0/goad/index.html)
- [GitHub Repository](https://github.com/hballington12/goad)

## License

GPL-3.0 License - see the LICENSE file in the main repository for details.
