gds_fdtd is a minimal Python module to assist in setting up FDTD simulations for planar nanophotonic devices using FDTD solvers such as Tidy3D.
You can install gds_fdtd
using the following options:
To install the core functionality of gds_fdtd
, clone the repository and install using pip
:
git clone git@github.com:mustafacc/gds_fdtd.git
cd gds_fdtd
pip install .
For contributing to the development or if you need testing utilities, install with the dev dependencies:
git clone git@github.com:mustafacc/gds_fdtd.git
cd gds_fdtd
pip install -e .[dev]
This will install additional tools like pytest
and coverage
for testing.
If your workflow includes specific dependencies such as gdsfactory or prefab, you can install those optional extras:
with gdsfactory:
pip install -e .[gdsfactory]
Refer to gdsfactory example for usage.
with prefab:
pip install -e .[prefab]
Refer to prefab example for usage.
If you want everything installed for both development and optional features, run the following command:
pip install -e .[dev,gdsfactory,prefab]
If you’ve installed the dev
dependencies, you can run the test suite with:
pytest