Skip to content

Commit 7c5bffc

Browse files
started migrating to md documentation
1 parent 330c5f3 commit 7c5bffc

17 files changed

Lines changed: 48 additions & 77 deletions

.github/workflows/sphinx.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
- name: Install Python
1818
uses: actions/setup-python@v3
1919
with:
20-
python-version: "3.11"
20+
python-version: "3.12"
2121
# I don't know where the "run" thing is documented.
2222
- name: Install dependencies
2323
run: |

docsource/additionalresources.md

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
# Additional Resources
2+
3+
4+
## Generic and Data Science
5+
6+
* NumPy: https://numpy.org/
7+
* SciPy: https://scipy.org/
8+
* Matplotlib: https://matplotlib.org/
9+
* SymPy: https://www.sympy.org/en/index.html
10+
* Pyomo: https://www.pyomo.org/
11+
* Pint: https://pint.readthedocs.io/en/stable/
12+
* numdifftools: https://numdifftools.readthedocs.io/en/latest/
13+
14+
## Electrical Engineering Focus
15+
16+
* Python COMTRADE File Interpreter: https://github.com/dparrini/python-comtrade
17+
* Python COMTRADE Writer: https://github.com/relihanl/comtradehandlers
18+
* Arc Flash Calculator: https://github.com/LiaungYip/arcflash
19+
* PandaPower: https://www.pandapower.org/start/
20+
* PyPSA: https://github.com/PyPSA/PyPSA
21+
* PyPower (no longer supported): https://pypi.org/project/PYPOWER/
22+
* minpower: http://adamgreenhall.github.io/minpower/index.html
23+
* oemof (Open Energy MOdeling Framework): https://oemof.org/
24+
* PowerGAMA: https://bitbucket.org/harald_g_svendsen/powergama/wiki/Home

docsource/additionalresources.rst

Lines changed: 0 additions & 41 deletions
This file was deleted.

docsource/changes.rst

Lines changed: 0 additions & 4 deletions
This file was deleted.

docsource/conf.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
# -- Project information -----------------------------------------------------
3939

4040
project = 'electricpy'
41-
copyright = '2022, Joe Stanley'
41+
copyright = '2026, Joe Stanley'
4242
author = 'Joe Stanley'
4343

4444
# The full version, including alpha/beta/rc tags
@@ -56,8 +56,6 @@
5656
'sphinx.ext.mathjax',
5757
'sphinx.ext.autosummary',
5858
'sphinx.ext.viewcode',
59-
'numpydoc',
60-
'sphinx_git',
6159
'myst_parser',
6260
'sphinx_immaterial',
6361
]

docsource/constants.md

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
# Constants
2+
3+
In addition to the variety of funcitons provided, several common, and useful,
4+
constants are provided to simplify arithmetic.
5+
6+
7+
| Name | Value |
8+
|----------------|----------------------------------------------------------------|
9+
| `pi` | π (derived from numpy.pi) |
10+
| `a` | :math:`1\angle{120}` |
11+
| `p` | 10^-12 (pico) |
12+
| `n` | 10^-9 (nano) |
13+
| `u` | 10^-6 (micro) |
14+
| `m` | 10^-3 (mili) |
15+
| `k` | 10^3 (kila) |
16+
| `M` | 10^6 (mega) |
17+
| `G` | 10^9 (giga) |
18+
| `u0` | :math:`µ0` (mu-not) 4πE-7 |
19+
| `e0` | :math:`ε0` (epsilon-not) 8.854E-12 |
20+
| `carson_r` | 9.869e-7 (Carson's Ristance Constant) |
21+
| `WATTS_PER_HP` | 745.699872 |
22+
| `KWH_PER_BTU` | 3412.14 |

docsource/constants.rst

Lines changed: 0 additions & 26 deletions
This file was deleted.

docsource/index.rst

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,6 @@ Contents:
3636
electricpyapi
3737
constants
3838
additionalresources
39-
changes
4039
Github <https://github.com/engineerjoe440/ElectricPy>
4140
PyPI <https://pypi.org/project/electricpy>
4241

1 Byte
Loading

docsource/static/PhasorPlot.png

1 Byte
Loading

0 commit comments

Comments
 (0)