Skip to content

Commit

Permalink
Change name to inductance (#18)
Browse files Browse the repository at this point in the history
* small doc change

* passes precommit
  • Loading branch information
dgarnier authored Jun 30, 2023
1 parent 423f29c commit 234e1e4
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 1 deletion.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,8 @@
[pre-commit]: https://github.com/pre-commit/pre-commit
[black]: https://github.com/psf/black

This is a python library to calculate inductance. Mostly for the purposes of calcualting magnetically confined plasmas. It might someday actually contain some plasma physics, but lets not get too carried away.

## Features

- TODO
Expand Down
4 changes: 3 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,11 @@
name = "inductance"
# version set in git tag
version = "0.0.0"
description = "Code for 2D magnetostatics (aka Solenoids)"
description = "Code for 2D inductance calculations"
authors = ["Darren Garnier <[email protected]>"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/dgarnier/inductance"

[tool.poetry.dependencies]
python = "^3.8"
Expand Down
1 change: 1 addition & 0 deletions tests/test_elliptics.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
"""Test the elliptics module."""

import unittest

from inductance.elliptics import ellipke


Expand Down
2 changes: 2 additions & 0 deletions tests/test_ldx.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
"""Test filamentation and inducatance of LDX coils."""

import unittest

import numpy as np

from inductance.filaments import (
FilamentCoil,
Lfil,
Expand Down
1 change: 1 addition & 0 deletions tests/test_main.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
"""Test cases for the __main__ module."""
import pytest
from click.testing import CliRunner

from inductance import __main__


Expand Down

0 comments on commit 234e1e4

Please sign in to comment.