|
NAMElocap - mbk logical capacitor DESCRIPTIONThe 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 ;
SEE ALSOmbk(1), addlocap(3), getlocap(3), dellocap(3), setlocap(3), locon(3), lofig(3), ptype(3). See the file man1/alc_bug_report.1.
|