Ajout des objets logiques capacite, resistance et inductance
This commit is contained in:
parent
c9ba2b0acf
commit
7a545c360b
|
@ -0,0 +1,77 @@
|
|||
.\" $Id: getlocap.3,v 1.1 2002/08/14 21:56:40 pnt Exp $
|
||||
.\" @(#)getlocap.2 2.11 2002/08/14 ; Labo LIP6/ASIM cao-vlsi; Author : Pierre Nguyen Tuong
|
||||
.if t \{\
|
||||
.so man1/alc_contents.mac
|
||||
.XS \n%
|
||||
.ti 0.2i
|
||||
getlocap
|
||||
.XE
|
||||
.XS2 \n%
|
||||
.ti 0.2i
|
||||
getlocap
|
||||
.XE2 \}
|
||||
.TH GETLOCAP 3 "August 14, 2002" "ASIM/LIP6" "MBK LOGICAL FUNCTIONS"
|
||||
.SH NAME
|
||||
getlocap \- retrieve a logical capacitor
|
||||
.so man1/alc_origin.1
|
||||
.SH SYNOPSYS
|
||||
.nf
|
||||
.if n \{\
|
||||
.ft B \}
|
||||
.if t \{\
|
||||
.ft CR \}
|
||||
#include "mlo.h"
|
||||
|
||||
locap_list \(**getlocap(ptfig,name)
|
||||
lofig_list \(**ptfig ;
|
||||
const char \(**name ;
|
||||
.ft R
|
||||
.fi
|
||||
.SH PARAMETERS
|
||||
.TP 20
|
||||
\fIptfig\fP
|
||||
Pointer to the figure in which the capacitor should be seeked
|
||||
.TP
|
||||
\fIname\fP
|
||||
Instance name of the capacitor
|
||||
.SH DESCRIPTION
|
||||
\fBgetlocap\fP looks in the list of capacitors of the logical model pointed
|
||||
to by \fIptfig\fP for a capacitor identified by its instance \fIname\fP.
|
||||
.SH RETURN VALUE
|
||||
\fBgetlocap\fP returns a pointer to the given capacitor.
|
||||
.SH ERRORS
|
||||
.if n \{\
|
||||
.ft B \}
|
||||
.if t \{\
|
||||
.ft CR \}
|
||||
"\(**\(**\(** mbk error \(**\(**\(** getlocap impossible :
|
||||
capacitor \fIname\fP doesn't exist in figure \fIptfig \-> NAME\fP"
|
||||
.ft R
|
||||
.RS
|
||||
No capacitor matches the name.
|
||||
.RE
|
||||
.SH EXAMPLE
|
||||
.ta 3n 6n 9n 12n 15n 18n 21n
|
||||
.nf
|
||||
.if n \{\
|
||||
.ft B \}
|
||||
.if t \{\
|
||||
.ft CR \}
|
||||
#include "mlo.h"
|
||||
|
||||
locap_list \(**exist(char \(**figname,char \(**capname)
|
||||
{
|
||||
return getlocap(getlofig(figname),capname) ;
|
||||
}
|
||||
.ft R
|
||||
.fi
|
||||
.SH SEE ALSO
|
||||
.BR mbk (1),
|
||||
.BR lofig (3),
|
||||
.BR locap (3),
|
||||
.BR addlocap (3),
|
||||
.BR dellocap (3).
|
||||
|
||||
|
||||
.so man1/alc_bug_report.1
|
||||
|
|
@ -0,0 +1,77 @@
|
|||
.\" $Id: getlores.3,v 1.1 2002/08/14 21:56:40 pnt Exp $
|
||||
.\" @(#)getlores.2 2.11 2002/08/14 ; Labo LIP6/ASIM cao-vlsi; Author : Pierre Nguyen Tuong
|
||||
.if t \{\
|
||||
.so man1/alc_contents.mac
|
||||
.XS \n%
|
||||
.ti 0.2i
|
||||
getlores
|
||||
.XE
|
||||
.XS2 \n%
|
||||
.ti 0.2i
|
||||
getlores
|
||||
.XE2 \}
|
||||
.TH GETLORES 3 "August 14, 2002" "ASIM/LIP6" "MBK LOGICAL FUNCTIONS"
|
||||
.SH NAME
|
||||
getlores \- retrieve a logical resistor
|
||||
.so man1/alc_origin.1
|
||||
.SH SYNOPSYS
|
||||
.nf
|
||||
.if n \{\
|
||||
.ft B \}
|
||||
.if t \{\
|
||||
.ft CR \}
|
||||
#include "mlo.h"
|
||||
|
||||
lores_list \(**getlores(ptfig,name)
|
||||
lofig_list \(**ptfig ;
|
||||
const char \(**name ;
|
||||
.ft R
|
||||
.fi
|
||||
.SH PARAMETERS
|
||||
.TP 20
|
||||
\fIptfig\fP
|
||||
Pointer to the figure in which the resistor should be seeked
|
||||
.TP
|
||||
\fIname\fP
|
||||
Instance name of the resistor
|
||||
.SH DESCRIPTION
|
||||
\fBgetlores\fP looks in the list of resistors of the logical model pointed
|
||||
to by \fIptfig\fP for a resistor identified by its instance \fIname\fP.
|
||||
.SH RETURN VALUE
|
||||
\fBgetlores\fP returns a pointer to the given resistor.
|
||||
.SH ERRORS
|
||||
.if n \{\
|
||||
.ft B \}
|
||||
.if t \{\
|
||||
.ft CR \}
|
||||
"\(**\(**\(** mbk error \(**\(**\(** getlores impossible :
|
||||
resistor \fIname\fP doesn't exist in figure \fIptfig \-> NAME\fP"
|
||||
.ft R
|
||||
.RS
|
||||
No resistor matches the name.
|
||||
.RE
|
||||
.SH EXAMPLE
|
||||
.ta 3n 6n 9n 12n 15n 18n 21n
|
||||
.nf
|
||||
.if n \{\
|
||||
.ft B \}
|
||||
.if t \{\
|
||||
.ft CR \}
|
||||
#include "mlo.h"
|
||||
|
||||
lores_list \(**exist(char \(**figname,char \(**resname)
|
||||
{
|
||||
return getlores(getlofig(figname),resname) ;
|
||||
}
|
||||
.ft R
|
||||
.fi
|
||||
.SH SEE ALSO
|
||||
.BR mbk (1),
|
||||
.BR lofig (3),
|
||||
.BR lores (3),
|
||||
.BR addlores (3),
|
||||
.BR dellores (3).
|
||||
|
||||
|
||||
.so man1/alc_bug_report.1
|
||||
|
|
@ -0,0 +1,77 @@
|
|||
.\" $Id: getloself.3,v 1.1 2002/08/14 21:56:40 pnt Exp $
|
||||
.\" @(#)getloself.2 2.11 2002/08/14 ; Labo LIP6/ASIM cao-vlsi; Author : Pierre Nguyen Tuong
|
||||
.if t \{\
|
||||
.so man1/alc_contents.mac
|
||||
.XS \n%
|
||||
.ti 0.2i
|
||||
getloself
|
||||
.XE
|
||||
.XS2 \n%
|
||||
.ti 0.2i
|
||||
getloself
|
||||
.XE2 \}
|
||||
.TH GETLOSELF 3 "August 14, 2002" "ASIM/LIP6" "MBK LOGICAL FUNCTIONS"
|
||||
.SH NAME
|
||||
getloself \- retrieve a logical inductor
|
||||
.so man1/alc_origin.1
|
||||
.SH SYNOPSYS
|
||||
.nf
|
||||
.if n \{\
|
||||
.ft B \}
|
||||
.if t \{\
|
||||
.ft CR \}
|
||||
#include "mlo.h"
|
||||
|
||||
loself_list \(**getloself(ptfig,name)
|
||||
lofig_list \(**ptfig ;
|
||||
const char \(**name ;
|
||||
.ft R
|
||||
.fi
|
||||
.SH PARAMETERS
|
||||
.TP 20
|
||||
\fIptfig\fP
|
||||
Pointer to the figure in which the inductor should be seeked
|
||||
.TP
|
||||
\fIname\fP
|
||||
Instance name of the inductor
|
||||
.SH DESCRIPTION
|
||||
\fBgetloself\fP looks in the list of inductors of the logical model pointed
|
||||
to by \fIptfig\fP for a inductor identified by its instance \fIname\fP.
|
||||
.SH RETURN VALUE
|
||||
\fBgetloself\fP returns a pointer to the given inductor.
|
||||
.SH ERRORS
|
||||
.if n \{\
|
||||
.ft B \}
|
||||
.if t \{\
|
||||
.ft CR \}
|
||||
"\(**\(**\(** mbk error \(**\(**\(** getloself impossible :
|
||||
inductor \fIname\fP doesn't exist in figure \fIptfig \-> NAME\fP"
|
||||
.ft R
|
||||
.RS
|
||||
No inductor matches the name.
|
||||
.RE
|
||||
.SH EXAMPLE
|
||||
.ta 3n 6n 9n 12n 15n 18n 21n
|
||||
.nf
|
||||
.if n \{\
|
||||
.ft B \}
|
||||
.if t \{\
|
||||
.ft CR \}
|
||||
#include "mlo.h"
|
||||
|
||||
loself_list \(**exist(char \(**figname,char \(**selfname)
|
||||
{
|
||||
return getloself(getlofig(figname),selfname) ;
|
||||
}
|
||||
.ft R
|
||||
.fi
|
||||
.SH SEE ALSO
|
||||
.BR mbk (1),
|
||||
.BR lofig (3),
|
||||
.BR loself (3),
|
||||
.BR addloself (3),
|
||||
.BR delloself (3).
|
||||
|
||||
|
||||
.so man1/alc_bug_report.1
|
||||
|
Loading…
Reference in New Issue