Draws a capacitor of type Poly-Poly or Metal-Metal in 350 nm AMS CMOS technology. More...
Public Member Functions | |
def | __init__ (self, device, capacitorType, abutmentBoxPosition, capacitance=0, capDim={}) |
This is the class constructor. More... | |
def | __setCapacitorPerUnit__ (self, capacitorType) |
Sets the area and perimeter capacitances as specified in 350 nm AMS technology and according to capacitorType (MIM or PIP). More... | |
def | __computeCapDim__ (self, capacitance, capacitorType) |
Computes width and length of the capacitor. More... | |
def | __isCapacitorUnitOK__ (self, capDim) |
Checks if the computed capacitor dimensions exceed or are less than maximum and minimum limits, respectively, as specified in technology rules. More... | |
def | setRules (self) |
Selects technological rules according to the capacitor type. More... | |
def | getCapacitorType (self) |
def | getMaximumCapWidth (self) |
def | getMinimumCapWidth (self) |
def | getLayers (self) |
Loads the technology file then extracts the adequate layers according to the capacitor type (MIM or PIP). More... | |
def | create (self, t, b, bbMode=False, vEnclosure_botPlate_abtBox=None, hEnclosure_botPlate_abtBox=None) |
When bonding box mode is activated, the function draws all layout physical layers of the capacitor after checking its dimensions. More... | |
def | drawCapacitor (self, layerDict, t, b) |
Draws all layout physicial layers of the capacitor. More... | |
def | computeBottomPlateCuts (self) |
Computes needed parameters to draw bottom plate cuts in its exact position, including : More... | |
def | computeTopPlateCuts (self) |
Computes needed parameters to draw top plate cuts in its exact position, including : More... | |
def | drawAbutmentBox (self) |
Draws the abutment box of the capacitor in position < (abutmentBoxXMin, abutmentBoxYMin)>. More... | |
def | drawOnePlate (self, layer, net, boxDimensions) |
Draws the top or bottom plate through inflation of the Box under it. More... | |
def | drawBottomPlateCut (self, layer, b) |
Draws the required cuts to connect the bottom plate. More... | |
def | drawTopPlateCut (self, layer, t) |
Draws the top plate's cuts after computing the maximal number of cuts that can be placed and its exact enclosure in the top plate. More... | |
def | drawRoutingLayers (self, bottomPlateLayer, topPlateLayer, t, b) |
Draws the routing layers of both bottom and top plates after computing widths and the exact position of these layers. More... | |
def | cutMaxNumber (self, width_layer, width_cut, spacing_cut, enclosure_cut) |
Computes the maximal number of cuts to be placed on a layer of width width_layer considering specifications such as the spacing between the cuts, its width and its enclosure in the layer. More... | |
def | cutLine (self, net, layer, firstCutXCenter, firstCutYCenter, width_cut, height_cut, spacing_cut, cutNumber, direction) |
Creates a horizontal or vertical line of contacts according to the specified direction. More... | |
def | cutMatrix (self, net, layer, firstCutXCenter, firstCutYCenter, width_cut, height_cut, spacing_cut, cutColumnNumber, cutRowNumber) |
Creates a matrix of cuts by vertically stacking horizontal lines of identical cuts. More... | |
def | getBottomPlateYMax (self) |
def | getBottomPlateLeftCutXMin (self) |
def | getBottomPlateLeftCutYMin (self) |
def | getBottomPlateLeftCutYMax (self) |
def | getBottomPlateRightCutXMin (self) |
def | getBottomPlateRightCutYMin (self) |
def | getBottomPlateRightCutYMax (self) |
def | getBotPlateLeftRLayerXMax (self) |
def | getBottomPlateRightCutYCenter (self) |
def | getBotPlateLeftRLayerXMin (self) |
def | getBotPlateRLayerYMin (self) |
def | getBotPlateRLayerYMax (self) |
def | getBotPlateRLayerWidth (self) |
def | getBotPlateRightRLayerXCenter (self) |
def | getBotPlateLeftRLayerXCenter (self) |
def | getTopPlateRLayerYMin (self) |
def | getTopPlateRLayerYMax (self) |
def | getTopPlateRLayerWidth (self) |
def | getTopPlateRLayerXCenter (self) |
def | getTopPlateRLayerXMin (self) |
def | getTopPlateRLayerXMax (self) |
Draws a capacitor of type Poly-Poly or Metal-Metal in 350 nm AMS CMOS technology.
PIP and MIM capacitors are the result of surface superposition between poly1 and poly2 or metal2 and metalcap layers, respectively. Given the capacitor value, layout dimensions are computed, then, capacitor layers are drawn. Capacitor value, , is given in the expression below, where
and
are, area capacitance, perimeter capacitance, area and permiter of the capacitor, respectively :
The drawn layout shape is square. Thus, metcap or poly2 length and width are equal and are computed using the capacitor expression. Furthermore, given ,
and enclosure technological rules, dimensions and positions of the abutment box as well as the bottom plate are computed. Layouts with dimensions that exceed technological limits cannot be drawn.
def __init__ | ( | self, | |
device, | |||
capacitorType, | |||
abutmentBoxPosition, | |||
capacitance = 0 , |
|||
capDim = {} |
|||
) |
This is the class constructor.
Few of the class attributes final values are computed in this level. Most of attributes are only initialized to zero or empty values. Then, it is computed in dedicated class method. Input parameters are :
device | Hurricane AMS device into which layout is drawn. |
capacitance | Capacitor value, expressed in ![]() |
abutmentBoxPosition | A list containing abscissa and ordinate of the bottom left corner of the abutment box. |
Class attributes are described in the list below. Most of class attributes refer to layout dimensions. Dictionaries are used to group attributes related to the same layout varibale. Layout dimensions and variables are described in Figure 1.
device | Hurricane AMS device into which layout is drawn. |
capacitance | Capacitor value, expressed in ![]() |
capacitorType | Can be 'MIMCap' or 'PIPCap' as capacitor type. |
abutmentBoxDict | A dictionary containing abscissa and ordinate of the bottom left corner of the abutment box, (XMin) and (YMin), respectively. |
abutmentBox | Abutment box drawn square. It is an object of type Box . |
bottomPlateBox | Bottom plate drawn square. It is an object of type Box . |
topPlateBox | Top plate drawn square. It is an object of type Box . |
cut2MatrixDict | A dictionary containing center position of the left bottom, which is cut the first to be drawn in the matrix of cuts. Initially, the dictionary is empty. It is only updated when self.capacitorType is equal to 'MIMCap' . |
cutLeftLineDict | A dictionary containing abcissa and ordinate of the bottom cut in the left line of cuts to be drawn on bottom plate's layer. |
cutRightLineDict | A dictionary containing abcissa and ordinate of the bottom cut in the right line of cuts to be drawn on bottom plate's layer. |
topCutLineDict | A dictionary containing abcissa and ordinate of the bottom cut in the right line of cuts to be drawn on top plate's layer. Initially, the dictionary is empty. It is only updated when self.capacitorType is equal to 'PIPCap' . |
topPlateRLayerDict | A dictionary containing position information of the top plate's routing layer. The dictionary includes ordinates of the layer's top and bottom extremities, 'XMin' and 'YMin' , respectively, the abcissa of it's center, 'XCenter' and its width, 'width' . |
bottomPlateRLayerDict | A dictionary containing |
enclosure_botPlate_topPlate | Top plate's layer encolusre in bottom plate's layer. |
minheight_topPlatecut | Minimum height of cuts for top plate connection to other metal layer. |
topCutLineNumber | Maximum possible number cuts to be drawn for top plate's connection. |
bottomCutLineNumber | Maximum possible number cuts to be drawn for top plate's connection. |
NonUnitCapacitor
class must be precisely defined. References CapacitorUnit.__computeCapacitance__(), CapacitorUnit.__computeCapDim__(), CapacitorUnit.__initCapDim__(), CapacitorStack.abutmentBox, CapacitorUnit.abutmentBox, VerticalRoutingTracks.abutmentBox, CapacitorUnit.abutmentBoxDict, CapacitorUnit.bottomCutLineNumber, CapacitorUnit.bottomPlateBox, CapacitorUnit.bottomPlateBoxDict, CapacitorUnit.bottomPlateRLayerDict, CapacitorStack.capacitorType, RoutMatchedCapacitor.capacitorType, CapacitorUnit.capacitorType, VerticalRoutingTracks.capacitorType, CapacitorUnit.capDim, CapacitorUnit.cut2MatrixDict, CapacitorUnit.cutLeftLineDict, CapacitorUnit.cutRightLineDict, CapacitorStack.device, CapacitorUnit.device, VerticalRoutingTracks.device, Stack.device, CapacitorUnit.enclosure_botPlate_abtBox, CapacitorUnit.enclosure_botPlate_topPlate, CapacitorUnit.minheight_topPlatecut, CapacitorUnit.topCutLineDict, CapacitorUnit.topCutLineNumber, CapacitorUnit.topPlateBox, CapacitorUnit.topPlateBoxDict, and CapacitorUnit.topPlateRLayerDict.
def __setCapacitorPerUnit__ | ( | self, | |
capacitorType | |||
) |
Sets the area and perimeter capacitances as specified in 350 nm AMS technology and according to capacitorType
(MIM or PIP).
Referenced by CapacitorUnit.__computeCapDim__().
def __computeCapDim__ | ( | self, | |
capacitance, | |||
capacitorType | |||
) |
Computes width and length of the capacitor.
Given capacitance
value as well as the permiter and area capacitances, a quadratic equation is solved where the unknown parameter is the width (also equivalent to the length).
References CapacitorUnit.__setCapacitorPerUnit__().
Referenced by CapacitorStack.__init__(), CapacitorUnit.__init__(), and CapacitorStack.setRules().
def __isCapacitorUnitOK__ | ( | self, | |
capDim | |||
) |
Checks if the computed capacitor dimensions exceed or are less than maximum and minimum limits, respectively, as specified in technology rules.
True
if all rules are respected. References CapacitorStack.capacitorType, RoutMatchedCapacitor.capacitorType, CapacitorUnit.capacitorType, VerticalRoutingTracks.capacitorType, CapacitorUnit.getMaximumCapWidth(), and CapacitorUnit.getMinimumCapWidth().
Referenced by CapacitorUnit.create(), and CapacitorStack.setRules().
def setRules | ( | self | ) |
Selects technological rules according to the capacitor type.
Reimplemented in VerticalRoutingTracks, RoutMatchedCapacitor, and CapacitorStack.
References CapacitorStack.capacitorType, RoutMatchedCapacitor.capacitorType, CapacitorUnit.capacitorType, VerticalRoutingTracks.capacitorType, CapacitorUnit.hpitch, CapacitorUnit.isVH, Stack.isVH, CapacitorUnit.METAL2Pitch, CapacitorUnit.metal2Width, CapacitorUnit.METAL3Pitch, CapacitorUnit.metal3Width, CapacitorUnit.minEnclo_botPlate_botPlateCut, CapacitorUnit.minEnclo_botPlateRMetal_botPlateCut, CapacitorUnit.minEnclo_routingTrackMetal_cut, CapacitorUnit.minEnclo_topPlate_topPlateCut, CapacitorUnit.minEnclo_topPlateRMetal_topPlateCut, CapacitorUnit.minheight_topPlatecut, CapacitorUnit.minSpacing_botPlate, CapacitorUnit.minSpacing_botPlateCut_topPlate, CapacitorUnit.minSpacingOnBotPlate_cut, CapacitorUnit.minSpacingOnTopPlate_cut, CapacitorUnit.minWidth_botPlatecut, CapacitorUnit.minWidth_botRMetal, CapacitorUnit.minWidth_routingTrackcut, CapacitorUnit.minWidth_topPlate, CapacitorUnit.minWidth_topPlatecut, CapacitorUnit.minWidth_topRMetal, and CapacitorUnit.vpitch.
Referenced by CapacitorStack.create(), CapacitorUnit.create(), RoutMatchedCapacitor.route(), and VerticalRoutingTracks.setRules().
def getCapacitorType | ( | self | ) |
'MIMCap'
or 'PIPCap'
. getCapacitorType()
is especially useful when an instance of CapacitorUnit
class is called in another classes instances to identify the capacitor's type. def getMaximumCapWidth | ( | self | ) |
getMaximumCapWidth()
is called to check if capacitor dimensions are within acceptable technological limits. An exception is raised if the entered capacitor type is unknown. getMaximumCapWidth()
References CapacitorStack.capacitorType, RoutMatchedCapacitor.capacitorType, CapacitorUnit.capacitorType, and VerticalRoutingTracks.capacitorType.
Referenced by CapacitorUnit.__isCapacitorUnitOK__().
def getMinimumCapWidth | ( | self | ) |
References CapacitorStack.capacitorType, RoutMatchedCapacitor.capacitorType, CapacitorUnit.capacitorType, and VerticalRoutingTracks.capacitorType.
Referenced by CapacitorUnit.__isCapacitorUnitOK__().
def getLayers | ( | self | ) |
Loads the technology file then extracts the adequate layers according to the capacitor type (MIM or PIP).
References CapacitorStack.capacitorType, RoutMatchedCapacitor.capacitorType, CapacitorUnit.capacitorType, and VerticalRoutingTracks.capacitorType.
Referenced by CapacitorUnit.create().
def create | ( | self, | |
t, | |||
b, | |||
bbMode = False , |
|||
vEnclosure_botPlate_abtBox = None , |
|||
hEnclosure_botPlate_abtBox = None |
|||
) |
When bonding box mode is activated, the function draws all layout physical layers of the capacitor after checking its dimensions.
All functions are excecuted in a new Update Session. In the contrary, only an exact estimation of layout dimensions is given. An error is raised when dimensions reach technological limits for MIM and PIP capacitors or when bbMode
parameters is other than True
or False
.
( | t , b ) nets of top and bottom plates, respectively |
bbMode | activates bonding box dimensions computing when set to True |
References CapacitorUnit.__isCapacitorUnitOK__(), CapacitorUnit.abutmentBoxDict, CapacitorUnit.capDim, Stack.computeDimensions(), RoutMatchedCapacitor.computeDimensions(), CapacitorUnit.computeDimensions(), CapacitorUnit.drawAbutmentBox(), CapacitorStack.drawAbutmentBox(), CapacitorUnit.drawCapacitor(), Technology.getLayers(), CapacitorUnit.getLayers(), CapacitorStack.setRules(), RoutMatchedCapacitor.setRules(), CapacitorUnit.setRules(), and VerticalRoutingTracks.setRules().
def drawCapacitor | ( | self, | |
layerDict, | |||
t, | |||
b | |||
) |
Draws all layout physicial layers of the capacitor.
layerDict | a dictionary containing a description of the required physical layers according to capacitor type |
( | t , b ) nets of top and bottom plates, respectively |
References CapacitorUnit.bottomPlateBox, CapacitorUnit.bottomPlateBoxDict, CapacitorUnit.drawBottomPlateCut(), CapacitorUnit.drawOnePlate(), CapacitorUnit.drawRoutingLayers(), CapacitorUnit.drawTopPlateCut(), CapacitorUnit.topPlateBox, and CapacitorUnit.topPlateBoxDict.
Referenced by CapacitorUnit.create().
def computeBottomPlateCuts | ( | self | ) |
Computes needed parameters to draw bottom plate cuts in its exact position, including :
Given parameters described above, it is possible to draw the entire lines of cuts on both sides of bottom plate using cutLine
function.
References CapacitorUnit.bottomCutLineNumber, CapacitorUnit.bottomPlateBoxDict, CapacitorUnit.cutLeftLineDict, CapacitorUnit.cutMaxNumber(), CapacitorUnit.cutRightLineDict, CapacitorUnit.minEnclo_botPlate_botPlateCut, CapacitorUnit.minheight_topPlatecut, CapacitorUnit.minSpacing_botPlateCut_topPlate, CapacitorUnit.minSpacingOnBotPlate_cut, CapacitorUnit.minWidth_topPlatecut, and CapacitorUnit.topPlateBoxDict.
Referenced by CapacitorUnit.drawAbutmentBox().
def computeTopPlateCuts | ( | self | ) |
Computes needed parameters to draw top plate cuts in its exact position, including :
Given parameters described above, it is possible to draw the entire lines of cuts on both sides of bottom plate using cutLine
function.
References CapacitorUnit.abutmentBoxDict, CapacitorUnit.bottomPlateBoxDict, CapacitorUnit.bottomPlateRLayerDict, CapacitorStack.capacitorType, RoutMatchedCapacitor.capacitorType, CapacitorUnit.capacitorType, VerticalRoutingTracks.capacitorType, CapacitorUnit.cut2MatrixDict, CapacitorUnit.cutLeftLineDict, CapacitorUnit.cutMaxNumber(), CapacitorUnit.cutRightLineDict, CapacitorUnit.enclosure_botPlate_topPlate, CapacitorUnit.hEnclosure_botPlate_abtBox, CapacitorUnit.minEnclo_botPlate_botPlateCut, CapacitorUnit.minEnclo_botPlateRMetal_botPlateCut, CapacitorUnit.minEnclo_routingTrackMetal_cut, CapacitorUnit.minEnclo_topPlate_topPlateCut, CapacitorUnit.minEnclo_topPlateRMetal_topPlateCut, CapacitorUnit.minheight_topPlatecut, CapacitorUnit.minSpacing_botPlate, CapacitorUnit.minSpacing_botPlateCut_topPlate, CapacitorUnit.minSpacingOnTopPlate_cut, CapacitorUnit.minWidth_botPlatecut, CapacitorUnit.minWidth_botRMetal, CapacitorUnit.minWidth_routingTrackcut, CapacitorUnit.minWidth_topPlatecut, CapacitorUnit.setBottomPlateAbtBoxEnclosure(), CapacitorUnit.topCutLineDict, CapacitorUnit.topCutLineNumber, CapacitorUnit.topPlateBoxDict, CapacitorUnit.topPlateRLayerDict, and CapacitorUnit.vEnclosure_botPlate_abtBox.
Referenced by CapacitorUnit.drawAbutmentBox().
def drawAbutmentBox | ( | self | ) |
Draws the abutment box of the capacitor in position <
(abutmentBoxXMin, abutmentBoxYMin)>.
First, the minimum enclosure of the top plate inside the bottom plate is computed. Second, using this parameters as well as the capacitor dimensions, the width and height of the abutment box are computed. The box is finally drawn.
References CapacitorStack.abutmentBox, CapacitorUnit.abutmentBox, VerticalRoutingTracks.abutmentBox, CapacitorUnit.abutmentBoxDict, CapacitorUnit.bottomPlateBoxDict, CapacitorStack.computeAbutmentBoxDimensions(), CapacitorUnit.computeAbutmentBoxDimensions(), CapacitorUnit.computeBottomPlateCuts(), CapacitorUnit.computeOnePlateBoxDimensions(), CapacitorUnit.computeRoutingLayersDimensions(), CapacitorUnit.computeTopPlateCuts(), CapacitorUnit.enclosure_botPlate_topPlate, CapacitorUnit.hEnclosure_botPlate_abtBox, CapacitorUnit.topPlateBoxDict, and CapacitorUnit.vEnclosure_botPlate_abtBox.
Referenced by CapacitorStack.create(), and CapacitorUnit.create().
def drawOnePlate | ( | self, | |
layer, | |||
net, | |||
boxDimensions | |||
) |
Draws the top or bottom plate through inflation of the Box under it.
These boxes are the abutment box in the case of the bottom plate and the bottom plate's box in the case of the top plate. This function also creates a a net for the drawn plate and sets it as external.
Referenced by CapacitorUnit.drawCapacitor().
def drawBottomPlateCut | ( | self, | |
layer, | |||
b | |||
) |
Draws the required cuts to connect the bottom plate.
First, the maximal possible number of cuts that can be drawn is computed. Second, using the computed number, the enclosure of this cuts in the bottom plate's layer is adjusted while the minimal enclosure is respected. Third, the relative positions of the cuts on both sides of the plate are computed. Finally, two vertical lines of cuts are drawns.
References CapacitorUnit.bottomCutLineNumber, CapacitorUnit.cutLeftLineDict, CapacitorUnit.cutLine(), CapacitorUnit.cutRightLineDict, CapacitorUnit.minheight_topPlatecut, CapacitorUnit.minSpacingOnBotPlate_cut, and CapacitorUnit.minWidth_botPlatecut.
Referenced by CapacitorUnit.drawCapacitor().
def drawTopPlateCut | ( | self, | |
layer, | |||
t | |||
) |
Draws the top plate's cuts after computing the maximal number of cuts that can be placed and its exact enclosure in the top plate.
References CapacitorStack.capacitorType, RoutMatchedCapacitor.capacitorType, CapacitorUnit.capacitorType, VerticalRoutingTracks.capacitorType, CapacitorUnit.cut2MatrixDict, CapacitorUnit.cutLine(), CapacitorUnit.cutMatrix(), CapacitorUnit.minheight_topPlatecut, CapacitorUnit.minSpacingOnTopPlate_cut, CapacitorUnit.minWidth_topPlatecut, CapacitorUnit.topCutLineDict, and CapacitorUnit.topCutLineNumber.
Referenced by CapacitorUnit.drawCapacitor().
def drawRoutingLayers | ( | self, | |
bottomPlateLayer, | |||
topPlateLayer, | |||
t, | |||
b | |||
) |
Draws the routing layers of both bottom and top plates after computing widths and the exact position of these layers.
Also computes positions if rlayers that are crucial for routing.
References CapacitorUnit.bottomPlateRLayerDict, CapacitorUnit.cutLeftLineDict, CapacitorUnit.cutRightLineDict, and CapacitorUnit.topPlateRLayerDict.
Referenced by CapacitorUnit.drawCapacitor().
def cutMaxNumber | ( | self, | |
width_layer, | |||
width_cut, | |||
spacing_cut, | |||
enclosure_cut | |||
) |
Computes the maximal number of cuts to be placed on a layer of width width_layer
considering specifications such as the spacing between the cuts, its width and its enclosure in the layer.
Referenced by CapacitorUnit.computeBottomPlateCuts(), and CapacitorUnit.computeTopPlateCuts().
def cutLine | ( | self, | |
net, | |||
layer, | |||
firstCutXCenter, | |||
firstCutYCenter, | |||
width_cut, | |||
height_cut, | |||
spacing_cut, | |||
cutNumber, | |||
direction | |||
) |
Creates a horizontal or vertical line of contacts according to the specified direction.
Referenced by CapacitorUnit.cutMatrix(), CapacitorUnit.drawBottomPlateCut(), and CapacitorUnit.drawTopPlateCut().
def cutMatrix | ( | self, | |
net, | |||
layer, | |||
firstCutXCenter, | |||
firstCutYCenter, | |||
width_cut, | |||
height_cut, | |||
spacing_cut, | |||
cutColumnNumber, | |||
cutRowNumber | |||
) |
Creates a matrix of cuts by vertically stacking horizontal lines of identical cuts.
net | net to which the cuts belong |
layer | cuts physical layer |
firstCutXCenter | center's abcissa of the bottom left cut ( that is the first cut to be drawn in the matrix ) |
firstCutYCenter | center's abcissa of the bottom left cut |
(width_cut,height_cut,spacing_cut) | cuts dimenions |
(cutColumnNumber,cutRowNumber) | matrix dimensions |
References CapacitorUnit.cutLine().
Referenced by CapacitorUnit.drawTopPlateCut().
def getBottomPlateYMax | ( | self | ) |
dySource
of the bottom plate's box ) . References CapacitorUnit.bottomPlateBoxDict.
def getBottomPlateLeftCutXMin | ( | self | ) |
Referenced by CapacitorStack.drawBottomPlatesRLayers(), and RoutMatchedCapacitor.drawCuts_vRoutingTrack_hRoutingTrack().
def getBottomPlateLeftCutYMin | ( | self | ) |
def getBottomPlateLeftCutYMax | ( | self | ) |
References CapacitorUnit.bottomCutLineNumber, CapacitorUnit.minSpacingOnBotPlate_cut, and CapacitorUnit.minWidth_botPlatecut.
def getBottomPlateRightCutXMin | ( | self | ) |
Referenced by CapacitorStack.drawBottomPlatesRLayers(), and RoutMatchedCapacitor.drawCuts_vRoutingTrack_hRoutingTrack().
def getBottomPlateRightCutYMin | ( | self | ) |
Referenced by RoutMatchedCapacitor.computeHRLayerYCenter(), and CapacitorUnit.getBottomPlateRightCutYCenter().
def getBottomPlateRightCutYMax | ( | self | ) |
References CapacitorUnit.bottomCutLineNumber, CapacitorUnit.minSpacingOnBotPlate_cut, and CapacitorUnit.minWidth_botPlatecut.
Referenced by RoutMatchedCapacitor.computeHRLayerYCenter(), and CapacitorUnit.getBottomPlateRightCutYCenter().
def getBotPlateLeftRLayerXMax | ( | self | ) |
Referenced by CapacitorStack.drawBottomPlatesRLayers().
def getBottomPlateRightCutYCenter | ( | self | ) |
References CapacitorUnit.getBottomPlateRightCutYMax(), and CapacitorUnit.getBottomPlateRightCutYMin().
def getBotPlateLeftRLayerXMin | ( | self | ) |
def getBotPlateRLayerYMin | ( | self | ) |
Referenced by RoutMatchedCapacitor.route().
def getBotPlateRLayerYMax | ( | self | ) |
Referenced by CapacitorStack.drawBottomPlatesRLayers().
def getBotPlateRLayerWidth | ( | self | ) |
Referenced by CapacitorStack.drawBottomPlatesRLayers(), RoutMatchedCapacitor.drawCuts_vRoutingTrack_hRoutingTrack(), and RoutMatchedCapacitor.route().
def getBotPlateRightRLayerXCenter | ( | self | ) |
Referenced by RoutMatchedCapacitor.route().
def getBotPlateLeftRLayerXCenter | ( | self | ) |
Referenced by RoutMatchedCapacitor.route().
def getTopPlateRLayerYMin | ( | self | ) |
Referenced by CapacitorStack.drawTopPlatesRLayers(), and RoutMatchedCapacitor.route().
def getTopPlateRLayerYMax | ( | self | ) |
Referenced by CapacitorStack.drawTopPlatesRLayers().
def getTopPlateRLayerWidth | ( | self | ) |
Referenced by RoutMatchedCapacitor.drawCuts_vRoutingTrack_hRoutingTrack(), CapacitorStack.drawTopPlatesRLayers(), and RoutMatchedCapacitor.route().
def getTopPlateRLayerXCenter | ( | self | ) |
Referenced by CapacitorStack.drawTopPlatesRLayers().
def getTopPlateRLayerXMin | ( | self | ) |
References CapacitorUnit.topPlateRLayerDict.
Referenced by RoutMatchedCapacitor.__computeConnections__(), and RoutMatchedCapacitor.drawCuts_vRoutingTrack_hRoutingTrack().
def getTopPlateRLayerXMax | ( | self | ) |
References CapacitorUnit.topPlateRLayerDict.
Generated by doxygen 1.9.1 on Wed Nov 20 2024 | Return to top of page |
Oroshi - Analog Devices Layouts | Copyright © 2018-2020 Sorbonne Universite, All rights reserved |