Metadata-Version: 2.4
Name: pymagba
Version: 0.3.1.dev2
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Requires-Dist: scipy>=1.16.2
License-File: LICENSE
Summary: Performant magnetic computation powered by Rust
Home-Page: https://github.com/p-sira/pymagba
Author-email: Sira Pornsiriprasert <code@psira.me>
Maintainer-email: Sira Pornsiriprasert <code@psira.me>
Requires-Python: >=3.11
Description-Content-Type: text/markdown; charset=UTF-8; variant=GFM

# PyMagba

<h1 align="center">
  <a href="https://github.com/p-sira/pymagba/">
    <img src="logo/pymagba-logo-fit.svg" alt="PyMagba" width="350">
  </a>
</h1>

<p align="center">
  <a href="https://opensource.org/license/BSD-3-clause" style="text-decoration: none">
    <img src="https://img.shields.io/badge/License-BSD--3--Clause-brightgreen.svg" alt="License">
  </a>
  <a href="https://pypi.org/project/pymagba" style="text-decoration: none">
    <img src="https://img.shields.io/pypi/v/pymagba?label=pypi%20package" alt="PyPI Package">
  </a>
  <a href="https://pypi.org/project/pymagba" style="text-decoration: none">
    <img src="https://static.pepy.tech/personalized-badge/pymagba?period=total&units=INTERNATIONAL_SYSTEM&left_color=GREY&right_color=BRIGHTGREEN&left_text=downloads" alt="Total Downloads">
  </a>
  <a href="https://p-sira.github.io/pymagba" style="text-decoration: none">
    <img src="https://img.shields.io/badge/Docs-github.io-blue" alt="Documentation">
  </a>
</p>

---

**PyMagba** is a package for analytical magnetic computation, powered by Rust. All functions support numpy and parallelization.

## Quick Start

```python
from pymagba.magnets import *
from pymagba.sensors import *

magnet = CylinderMagnet(
   position=[0.0, 0.0, 0.01],
   diameter=0.01,
   height=0.005,
   polarization=[0.0, 0.0, 1.0],
)
sensor = LinearHallSensor(
   position=[0.0, 0.0, 0.025],
   sensitive_axis=[0.0, 0.0, 1.0],
   sensitivity=0.05,
   supply_voltage=5.0,
)
b_field = magnet.compute_B([0.0, 0.0, 0.025])  # [[0, 0, 0.01652363]]
voltage = sensor.read_voltage_cylinder(magnet)  # 2.5008261
```

## Installation

To install PyMagba, use your preferred package manager:

```shell
pip install pymagba
```

```shell
uv add pymagba
```

To install from source:

```shell
git clone https://github.com/p-sira/pymagba.git
cd pymagba
maturin build --release
pip install target/wheels/pymagba-*.whl
```

