Simphony, a simulator for photonic circuits, is a fundamental package for designing and simulating photonic integrated circuits with Python.
Key Features:
Developed by CamachoLab at Brigham Young University.
Simphony can be installed via pip for Python 3.8+:
python3 -m pip install simphony
The documentation is hosted online.
@article{DBLP:journals/corr/abs-2009-05146,
author = {Sequoia Ploeg and
Hyrum Gunther and
Ryan M. Camacho},
title = {Simphony: An open-source photonic integrated circuit simulation framework},
journal = {CoRR},
volume = {abs/2009.05146},
year = {2020},
url = {https://arxiv.org/abs/2009.05146},
eprinttype = {arXiv},
eprint = {2009.05146},
timestamp = {Thu, 17 Sep 2020 12:49:52 +0200},
biburl = {https://dblp.org/rec/journals/corr/abs-2009-05146.bib},
bibsource = {dblp computer science bibliography, https://dblp.org}
}
We welcome contributions to Simphony in the form of bug reports, feature requests, and pull requests. Please see the contributing guide.
To develop locally, clone the repository and run the make
commands to set
up your development environment.
git clone https://github.com/BYUCamachoLab/simphony.git
python3 -m venv env # or use your preferred virtual environment tool
source env/bin/activate
make install
We use pre-commit to maintain code quality. The hooks are automatically installed when invoking the make targets. Pre-commit will now run on every commit. If it makes any modifications, the commit will fail and you'll have to restage the changes before continuing with the commit.
If you truly, desperately need to skip pre-commit in one instance, you can use:
git commit --no-verify -m "Commit message"
Pleasee don't make a habit of it.
There are a few other useful targets in the Makefile:
make test
: Run the unit testsmake doc
: Build the documentationSimphony is available on PyPI and can be installed via pip:
python3 -m pip install simphony
Simphony is licensed under the MIT license. See the LICENSE file for more details.
Only the project maintainer should create releases.
A note on the development cycle. The master
branch is the "latest" branch
with a version of the project that always works. Features and bug fixes are
developed in separate branches and then merged into master when ready.
When preparing for a new release, it's appropriate to increment the version number in advance of the release and before all the changes are merged in. You can start the next version and increment the version number by running:
make major
make minor
make patch
This project adheres to Semantic Versioning, which means that the version number is incremented according to the following rules:
There are also software lifecycle parts to the version number:
A version with a "rc" number indicates it is not a final release. When you're ready to create the final release, make sure you've filled out the corresponding entry in the CHANGELOG. Follow the format of previous recent entries. Make sure you have a clean working tree (git). Then, run:
bumpversion release
make release
This will remove the "rc" number, tag the commit, push the tag to git, upload a build to PyPI, and publish the documentation to ReadTheDocs. Because this process is irreversible and version numbers cannot be reclaimed from PyPI, make sure all tests are passing and the documentation is up to date before running this command.
A standard version number progression might look something like this: