inductor
octagonal_inductor(d_i, n_turn, width, gap, layer_stack, layer_nb=-1, pin_name=('P1', 'P2'), port_ext=1.5e-05, port_gap=-1, bridge_nb=None)
¶
generate a multi-turn octagonal inductor.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
d_i
|
float
|
inner diameter in micron |
required |
n_turn
|
int
|
number of turn |
required |
width
|
float
|
width of the track |
required |
gap
|
float
|
gap between the track |
required |
layer_stack
|
LayerStack
|
the inductor will be drawn on the highest layer of the stack. |
required |
pin_name
|
[str, str]
|
name of the two ports of the inductor (default "P1" and "P2") |
('P1', 'P2')
|
port_gap
|
float
|
gap between the two ports (default value : gap). |
-1
|
port_ext
|
float
|
port extension outward the inductor (default value :µm) |
1.5e-05
|
layer_nb
|
int
|
layer index for inductor core drawing. |
-1
|
bridge_nb
|
Optional[int]
|
layer index o the bridge (for multi-turn inductor). |
None
|
Returns:
Type | Description |
---|---|
Cell
|
gdstk.Cell of the inductor |
Source code in hades\layouts\inductor.py
9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 |
|