Add area parameter to createBL() helper function.

This parameter allows to specify the minimum area for a layer.
This commit is contained in:
Staf Verhaegen 2020-11-26 17:17:36 +01:00
parent 13726d648b
commit 775a169e82
1 changed files with 4 additions and 1 deletions

View File

@ -43,7 +43,7 @@ def safeGetLibrary ( frameworkName, libName ):
return lib
def createBL ( tech, layerName, material, size=None, spacing=None, gds2Layer=None, gds2DataType=0 ):
def createBL ( tech, layerName, material, size=None, spacing=None, gds2Layer=None, gds2DataType=0, area=None ):
"""
Create a new BasicLayer. Parameters ``tech``, ``layerName`` and ``material``
are mandatory.
@ -55,6 +55,7 @@ def createBL ( tech, layerName, material, size=None, spacing=None, gds2Layer=Non
:param spacing: The minimal distance, edge to edge between two wires.
:param gds2layer: The GDSII layer number (for the GDSII driver).
:param gds2DataType: The GDSII DataType (i.e purpose).
:param area: The minimum area (in um2)
"""
layer = BasicLayer.create( tech, layerName, BasicLayer.Material(material) )
if size is not None:
@ -64,6 +65,8 @@ def createBL ( tech, layerName, material, size=None, spacing=None, gds2Layer=Non
if gds2Layer is not None:
layer.setGds2Layer ( gds2Layer )
layer.setGds2Datatype( gds2DataType )
if area is not None:
layer.setMinimalArea( area )
return layer