An open API service indexing awesome lists of open source software.

https://github.com/gdsfactory/kfactory

gdsfactory with a klayout backend
https://github.com/gdsfactory/kfactory

Last synced: 5 months ago
JSON representation

gdsfactory with a klayout backend

Awesome Lists containing this project

README

          

# KFactory 2.4.5

[![codecov](https://codecov.io/gh/gdsfactory/kfactory/graph/badge.svg?token=dArcfnQE4w)](https://codecov.io/gh/gdsfactory/kfactory)

Kfactory is the backend for [gdsfactory](https://github.com/gdsfactory/gdsfactory). It is built upon [KLayout](https://klayout.de).
It offers basic operations like gdsfactory, so it can be used on its own as a layout tool as well.

It is recommended to pin the version of KFactory in `requirements.txt` or `pyproject.toml` with `kfactory==2.4.5` for example.

Features similar to gdsfactory:

- [x] Cells & decorator for caching & storing cells
- [x] Simple routing (point to point and simpl bundle routes for electrical routes)
- [x] Basic cells like euler/circular bends, taper, waveguide
- [x] Path extrusion (no interface with CrossSections)
- [x] Jupyter integration
- [x] PDK/package configuration
- [x] Plugin system (simulations etc.) - Check [kplugins](https://github.com/gdsfactory/kplugins)
- [x] Generic PDK example - Check [kgeneric](https://github.com/gdsfactory/kgeneric)
- [x] CrossSection
- [x] Netlist/Schematics and LVS

Notable missing Features:

- [ ] More advanced routing

New/Improved Features:

- Fully hierarchical bi-directional conversion to YAML
- Automatic snapping to grid thanks to KLayout
- More features for vector geometries due to concept of Point/Edge/Vector/Polygon from Klayout
- Easy booleans thanks to KLayout Regions
- Enclosures: use the concept of enclosures, similar to cross sections, to allow automatic
calculation of boolean layers for structures based on [minkowski sum](https://en.wikipedia.org/wiki/Minkowski_addition),
which are built into KLayout

## Getting Started

### Installation

kfactory is available as [`kfactory`](https://pypi.org/project/kfactory/) on PyPI

Install kfactory with `uv`, or `pip`:

```bash
# Add kfactory to your project.
uv add kfactory

# With pip.
pip install kfactory
```

At the moment kfactory works only on python 3.11 and above

### Development Installation

A development environment can be installed with

```bash
just dev
```

For committing `pre-commit` should be installed with `pre-commit install` (this is done with `just dev`).