Presentation | AGDS | CIF | DTR | OPENCHAMS | SPICE | Links & Contact |
The OpenCHAMS format was developped as a part of the Chams Project (http://www-soc.lip6.fr/recherche/cian/chams/). It aims at offering a convenient way to describe analogic circuits' netlists and is based on XML. Some CHAMS specific informations, such as schematic properties, layout properties or sizing procedure, can be described in this format.
Damien Dupuis: damien.dupuis(at)lip6(.)fr
The database has many objects that can be arranged in five categories:
Simply load an OPENCHAMS file using the static function OpenChams::Circuit::readFromFile() and then get the netlist object (OpenChams::Circuit::getNetlist()) or the sizing procedure (OpenChams::Circuit::getSizing(), might be NULL) or any other useful information (see OpenChams::Circuit).
Using the driver is very simple, user has to create an OpenChams::Circuit object and simply add OpenChams::Netlist (mandatory) and OpenChams::Sizing (optionnal) or OpenChams::Schematic (optionnal) or OpenChams::Layout (optinnal) to it. Finally use the OpenChams::Circuit::writeToFile() method to dump the database to file.
As said is the global presentation, VLSI SAPD project provides C++ libraries and Python modules for each supported format. In this section we present simple code examples to parse and drive a OPENCHAMS file using C++ or Python. The OPENCHAMS files considered are the same for all examples: inverter.xml
and buffer.xml
All source codes are available in the examples
directory.
The following code (parseOpenChams.cpp
) is an example of how to parse a OPENCHAMS file using C++ library.
This C++ code (driveOpenChams.cpp
) generates an inverter.xml file equivalent to the included one.
The following python script (parseOpenChams.py
) is an example of how to parse a OPENCHAMS file using python module.
This python script (driveOpenChams.py
) generates an inverter.xml file equivalent to the included one.
parseOpenChams.py
& driveOpenChams.py), user must ensure that $PYTHONPATH variable points to the directory containing OPENCHAMS.so module. Generated by doxygen 1.8.14 on Sun May 26 2019 | Return to top of page |
VLSI SAPD Documentation | Copyright © 2010 - 2011 UPMC All rights reserved |