Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

locap(3) [debian man page]

LOCAP(3)						 MBK LOGICAL STRUCTURE DEFINITIONS						  LOCAP(3)

NAME
locap - mbk logical capacitor DESCRIPTION
The locap is used to describe a logical capacitor. Please note, this description is different from the RCN description and has a different purpose: the created capacitor is a functional logical capacitor, not a parasitic capacitor. For the time being, only MIM (i.e. metal/metal) and POLY/NWELL capacitors type are supported. The declarations needed to work on locap are available in the header file "/labo/include/mlo.h". The following C structure supports the description of the logical capacitor : typedef struct locap { struct locap *NEXT ; struct locon *TCON ; struct locon *BCON ; char *NAME ; double CAPA ; char TYPE ; struct ptype *USER ; } locap_list ; NEXT Pointer to the next locap of the list. TCON Pointer to the tcon (top plate) connector of the capacitor. This connector is, of course unique. See locon(3) for details. BCON Pointer to the bcon (bottom plate) connector of the capacitor. This connector is, of course unique. See locon(3) for details. NAME Capacitor instance name CAPA Capacitance value TYPE Layer type of the capacitor. Two legal values are available : CAPMIM Metal/metal capacitor. The top plate and the bottom plate are in different metal layers. CAPPNWELL Poly/NWELL capacitor. The top plate layer is POLY, the bottom plate layer is NWELL. Note: this capacitor type is technological dependent and is not available for any technology. USER Pointer to a ptype list, see ptype(3) for details, that is a general purpose pointer used to share informations on the capacitor. This field is used with the LOCAP_INFO(3) ptype to store physical informations. SEE ALSO
mbk(1), addlocap(3), getlocap(3), dellocap(3), setlocap(3), locon(3), lofig(3), ptype(3). BUG REPORT
This tool is under development at the ASIM department of the LIP6 laboratory. We need your feedback to improve documentation and tools. ASIM
/LIP6 August 14, 2002 LOCAP(3)

Check Out this Related Man Page

LOCON(3)						 MBK LOGICAL STRUCTURE DEFINITIONS						  LOCON(3)

NAME
locon - mbk logical connector DESCRIPTION
The locon is used to describe a connector of the logical view of a figure. Connectors are describing the cell interface, and are the link between its physical and logical views, so the names must be the same. The declarations needed to work on locon are available in the header file "/labo/include/mlo404.h", where '404' is the actual mbk version. The following C structure supports the description of the logical connector : typedef struct locon { struct locon *NEXT; char *NAME; struct losig *SIG; void *ROOT; char DIRECTION; char TYPE; struct ptype *USER; } locon_list; NEXT Pointer to the next locon of the list. NAME Name of the connector. It identifies the connector, so it should unique in a given logical figure. A logical connector with a given name correspond to the physical connector or connectors of this name. SIG Pointer to the signal linked to the connector. This signal is, of course, unique. See losig(3) for details. ROOT Pointer to the object it belongs to. This object may be either a lofig, or a loins, depending on the type of the con- nector. See lofig(3) and loins for details. DIRECTION This indicates the way of the information going through the connector. Six directions are legal : IN input OUT output INOUT input and output UNKNOWN no information is available TRISTATE tristate output TRANSCV tristate output and input TYPE Character indicating if the connector belongs to a model or an instance. It can take two values : EXTERNAL for figure connectors INTERNAL for instance connectors The TYPE is needed to appropriatly cast the ROOT field, and must be approriatly filled by the parsers. A misuse of it may cause strange behaviours. USER Pointer to a ptype list, see ptype for details, that is a general purpose pointer used to share informations on the connector. SEE ALSO
mbk(1), mbk(3), addlocon(3), getlocon(3), dellocon(3), losig(3), ptype(3), loins(3), lofig(3). BUG REPORT
This tool is under development at the ASIM department of the LIP6 laboratory. We need your feedback to improve documentation and tools. ASIM
/LIP6 October 1, 1997 LOCON(3)
Man Page