1LOSELF(3) MBK LOGICAL STRUCTURE DEFINITIONS LOSELF(3)
2
3
4
6 loself - mbk logical inductor
7
9 The loself is used to describe a logical inductor. The created inductor
10 is a functional logical inductor, not a parasitic inductor. For the
11 time being, only MIM (i.e. metal) inductor type is supported.
12
13 The declarations needed to work on loself are available in the header
14 file "/labo/include/mlo.h".
15
16 The following C structure supports the description of the logical
17 inductor :
18
19 typedef struct loself
20 {
21 struct loself ∗NEXT ;
22 struct locon ∗SCON1 ;
23 struct locon ∗SCON2 ;
24 char ∗NAME ;
25 double SELF ;
26 char TYPE ;
27 struct ptype ∗USER ;
28 } loself_list ;
29
30 NEXT Pointer to the next loself of the list.
31
32 SCON1 Pointer to the scon1 connector of the inductor.
33 This connector is, of course unique. See locon(3)
34 for details.
35
36 SCON2 Pointer to the scon2 connector of the inductor.
37 This connector is, of course unique. See locon(3)
38 for details.
39
40 NAME Inductor instance name
41
42 SELF Inductance value
43
44 TYPE Layer type of the inductor. One legal values is
45 available :
46
47 SELFMIM Metal inductor.
48
49 USER Pointer to a ptype list, see ptype(3) for details,
50 that is a general purpose pointer used to share
51 information on the inductor.
52
54 mbk(1), addloself(3), getloself(3), delloself(3), setloself(3),
55 locon(3), lofig(3), ptype(3).
56
57
58
59
60
61
62ASIM/LIP6 August 14, 2002 LOSELF(3)