Metadata-Version: 2.4
Name: ordec
Version: 0.2.0
Summary: ORDeC
Maintainer-email: Tobias Kaiser <kaiser@tu-berlin.de>
License-Expression: Apache-2.0
Project-URL: Homepage, https://github.com/tub-msc/ordec
Project-URL: Documentation, https://ordec.readthedocs.io
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: REUSE.toml
License-File: LICENSES/Apache-2.0.txt
License-File: LICENSES/OFL-1.1.txt
License-File: LICENSES/CC0-1.0.txt
Requires-Dist: pyrsistent>=0.18.1
Requires-Dist: lark>=1.1.5
Requires-Dist: astor>=0.8.1
Requires-Dist: numpy>=1.24.2
Requires-Dist: scipy>=1.10.1
Requires-Dist: atpublic>=6.0.1
Requires-Dist: websockets>=15.0.1
Requires-Dist: tabulate>=0.8.9
Requires-Dist: inotify-simple>=1.3.0
Provides-Extra: test
Requires-Dist: pytest>=7.2.1; extra == "test"
Requires-Dist: pytest-cov>=4.0.0; extra == "test"
Requires-Dist: selenium>=4.8.3; extra == "test"
Provides-Extra: extra
Requires-Dist: black>=23.1.0; extra == "extra"
Dynamic: license-file

![ORDeC](https://raw.githubusercontent.com/tub-msc/ordec/refs/heads/main/docs/ordec_logo.svg)

[![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://opensource.org/licenses/Apache-2.0)
[![REUSE status](https://api.reuse.software/badge/github.com/tub-msc/ordec)](https://api.reuse.software/info/github.com/tub-msc/ordec)
[![ORDeC on PyPI](https://img.shields.io/pypi/v/ordec.svg)](https://pypi.python.org/pypi/ordec)
[![Read the Docs](https://img.shields.io/readthedocs/ordec)](https://ordec.readthedocs.io)
[![GitHub Actions Workflow Status](https://img.shields.io/github/actions/workflow/status/tub-msc/ordec/tests.yaml?label=tests)](https://github.com/tub-msc/ordec/actions/workflows/tests.yaml)

**ORDeC** (Open Rapid Design Composer) is an open-source **custom IC design platform**. Its goal is to provide an accessible and streamlined interface to design and analyze analog, mixed-signal and custom digital integrated circuits from schematic to layout. ORDeC consists of:

- the ORD hardware description language (HDL) for design entry,
- a data model and data structures for representing IC design data (such as schematics),
- external tool integration (e.g. to Ngspice for simulation),
- a web interface for immediate graphical feedback during the design process.

ORDeC is developed by the [Mixed Signal Circuit Design Group](https://www.tu.berlin/msc) at Technische Universität Berlin. 

The development of ORDeC is currently at an early, experimental stage. The main branch of this repository provides a **working demo of some basic features and ideas**:

## Getting Started

The easiest way to get started is via Docker:

```
docker pull ghcr.io/tub-msc/ordec:latest
docker run --rm -p 127.0.0.1:8100:8100 -it ghcr.io/tub-msc/ordec:latest
```

Then, access the web interface via the generated URL and try out examples.

![Web interface screenshot](https://raw.githubusercontent.com/tub-msc/ordec/refs/heads/main/docs/screenshot_demo.png)

Further documentation is located in the *docs/* folder and is available online: https://ordec.readthedocs.io/

## Motivation

ORDeC's goal is to provide an accessible and streamlined interface to design and analyze analog, mixed-signal and custom digital integrated circuits from schematic to layout.

Established open-source interfaces for IC design are mostly based on old-fashioned technologies (Tcl/Tk, C etc.) and lack a coherent experience across design stages such as schematic entry, simulation and layout. ORDeC offers a hardware description language (HDL) and interactive web interface across design stages. In the future, a public web-based ORDeC instance might make it possible to get started in custom IC design without any local setup. ORDeC's core is written in Python and is designed to make it easy to analyze and transform design data.

Why a new HDL instead of a WYSIWYG interface? The motivation is to make custom IC design more software-like. Design data is made transparent and suitable for software-style version control (e.g. Git), which improves maintainability and makes it possible to adapt workflows from software engineering.

Further goals of ORDeC are: built-in support for open PDKs, and visualizing silicon area and energy efficiency as sustainability design parameters. 

## Contact

Questions and feedback via GitHub issues are welcome! Alternatively, feel free to email Tobias Kaiser (kaiser@tu-berlin.de).

## Acknowledgements

This work is supported by the German Federal Ministry of Research, Technology and Space (BMFTR) under grant [16ME0996 (DI-ORDeC)](https://www.elektronikforschung.de/projekte/di-ordec).
