Panelization
When you want to panelize a board, you are expected to load the kikit.panelize
module and create an instance of the Panel
class.
All units are in the internal KiCAD units (1 nm). You can use predefined constants to convert from/to them:
from kikit.units import *
l = 1 * mm # 1 mm
l = 42 * inch # 42 inches
l = 15 * cm # 15 cm
a = 90 * deg # 90°
a = 1 * rad # 1 radian
You can also use functions fromMm(mm)
and
toMm(kiUnits)
to convert to/from them if you like them more. You are
also encouraged to use the functions and objects the native KiCAD Python API
offers, e.g.: VECTOR2I(args),
BOX2I(args).
Basic Concepts
The kikit.panelize.Panel
class holds a panel under construction. Basically it
is pcbnew.BOARD
without outlines. The outlines are held separately as
shapely.MultiPolygon
so we can easily merge pieces of a substrate, add cuts
and export it back to pcbnew.BOARD
. This is all handled by the class
kikit.substrate.Substrate
.
Tabs
There are two ways to create tabs: generate a piece of a substrate by hand, or use tab generator.
To generate a piece of a substrate, create a shapely.Polygon. Then add the piece
of substrate via panelize.Panel.appendSubstrate
. This method also accepts a
BOX2I
for convenience.
The tab generator is available via panelize.Panel.boardSubstrate.tab
. This
method takes an origin point, direction, and tab width. It tries to build a tab
by extruding a tab with the given width in the given direction and stops when it
reaches an existing substrate. It returns a tuple - the tab substrate and a
piece of the outline of the original board, which was removed by the tab. Then
add the piece of a substrate via panelize.Panel.appendSubstrate
. This design
choice was made as batch adding of substrates is more efficient. Therefore, you
are advised to first generate all the tabs and then append them to the board.
You read more about the algorithms for generating tabs in a separate document understanding tabs.
Cuts
All methods constructing panels do not create cuts directly, instead, they return them. This allows the users to decided how to perform the cuts - e.g., mouse bites, V-Cuts, silk-screen...
The cuts are represented by shapely.LineString
. The string is oriented - a
positive side of the string should face the inner side of the board. This is
important when, e.g., offsetting mouse bites.
To perform the cuts, see methods of the panelize.Panel
class below.
Source Area And Tolerance
When placing a board, you might specify source area -- a rectangle from which the components are extracted. If no source area is specified, the smallest bounding box of all Edge.Cuts is taken.
Only components that fully fit inside source area are copied to the panel. To include components sticking out of the board outline, you can specify tolerance -- a distance by which the source area is expanded when copying components.
appendBoard
appendBoard(self, filename, destination, sourceArea=None, origin=Origin.Center,
rotationAngle=<pcbnew.EDA_ANGLE; proxy of <Swig Object of type 'EDA_ANGLE *' at 0x7f7a1f7f94a0> >,
shrink=False, tolerance=0, bufferOutline=1000, netRenamer=None,
refRenamer=None, inheritDrc=True, interpretAnnotations=True,
bakeText=False)
Panel class
This class has the following relevant members:
- board
- pcbnew.BOARD
of the panel. Does not contain any edges.
- substrates
- kikit.substrate.Substrate
- individual substrates appended
via None
. You can use them to get the
original outline (and e.g., generate tabs accroding to it).
- boardSubstrate
- kikit.substrate.Substrate
of the whole panel.
- backboneLines
- a list of lines representing backbone candidates. Read more
about it in understanding tabs.
addCornerChamfers
Add chamfers to the panel frame. The chamfer is specified as size in
horizontal and vertical direction. If you specify only the horizontal
one, the chamfering will be 45°.
addCornerFiducials
addCornerFiducials(self, fidCount, horizontalOffset, verticalOffset,
copperDiameter, openingDiameter, paste=False)
The offsets are measured from the outer edges of the substrate.
addCornerFillets
None
addCornerTooling
Add up to 4 tooling holes to the top-left, top-right, bottom-left and
bottom-right corner of the board (in this order). This function expects
there is enough space on the board/frame/rail to place the feature.
The offsets are measured from the outer edges of the substrate.
addFiducial
Add fiducial, i.e round copper pad with solder mask opening to the
position (VECTOR2I
), with given copperDiameter and openingDiameter. By
setting bottom to True, the fiducial is placed on bottom side. The
fiducial can also have an opening on the stencil. This is enabled by
paste = True.
addKeepout
Add a keepout area to all copper layers. Area is a shapely
polygon. Return the keepout area.
addLine
Add a line to the panel based on starting and ending point
addMillFillets
Add fillets to inner conernes which will be produced a by mill with
given radius. This operation simulares milling.
addNPTHole
Add a drilled non-plated hole to the position (VECTOR2I
) with given
diameter. The paste option allows to place the hole on the paste layers.
addPanelDimensions
Add vertial and horizontal dimensions to the panel
addTabMillFillets
Add fillets to inner conernes which will be produced a by mill with
given radius. Simulates milling only on the outside of the board;
internal features of the board are not affected.
addText
addText(self, text, position, orientation=0, width=1500000, height=1500000,
thickness=300000, hJustify=EDA_TEXT_HJUSTIFY_T.GR_TEXT_HJUSTIFY_CENTER,
vJustify=EDA_TEXT_VJUSTIFY_T.GR_TEXT_VJUSTIFY_CENTER,
layer=Layer.F_SilkS)
addVCutH
Adds a horizontal V-CUT at pos (integer in KiCAD units).
addVCutV
Adds a horizontal V-CUT at pos (integer in KiCAD units).
appendBoard
appendBoard(self, filename, destination, sourceArea=None, origin=Origin.Center,
rotationAngle=<pcbnew.EDA_ANGLE; proxy of <Swig Object of type 'EDA_ANGLE *' at 0x7f7a1f7f94a0> >,
shrink=False, tolerance=0, bufferOutline=1000, netRenamer=None,
refRenamer=None, inheritDrc=True, interpretAnnotations=True,
bakeText=False)
The sourceArea (BOX2I) of the board specified by filename is extracted and placed at destination (VECTOR2I). The source area (BOX2I) can be auto detected if it is not provided. Only board items which fit entirely into the source area are selected. You can also specify rotation. Both translation and rotation origin are specified by origin. Origin specifies which point of the sourceArea is used for translation and rotation (origin it is placed to destination). It is possible to specify coarse source area and automatically shrink it if shrink is True. Tolerance enlarges (even shrinked) source area - useful for inclusion of filled zones which can reach out of the board edges or footprints that extend outside the board outline, like connectors.
You can also specify functions which will rename the net and ref names. By default, nets are renamed to "Board_{n}-{orig}", refs are unchanged. The renamers are given board seq number and original name.
You can also decide whether you would like to inherit design rules from this boards or not.
Similarly, you can substitute variables in the text via bakeText.
Returns bounding box (BOX2I) of the extracted area placed at the destination and the extracted substrate of the board.
appendSubstrate
Append a piece of substrate or a list of pieces to the panel. Substrate
can be either BOX2I or Shapely polygon. Newly appended corners can be
rounded by specifying non-zero filletRadius.
boardsBBox
Return common bounding box for all boards in the design (ignores the
individual pieces of substrate) as a shapely box.
buildFullTabs
Make full tabs. This strategy basically cuts the bounding boxes of the
PCBs. Not suitable for mousebites or PCB that doesn't have a rectangular
outline. Expects there is a valid partition line.
Return a list of cuts.
buildPartitionLineFromBB
Builds partition & backbone line from bounding boxes of the substrates.
You can optionally pass extra substrates (e.g., for frame). Without
these extra substrates no partition line would be generated on the side
where the boundary is, therefore, there won't be any tabs.
buildTabAnnotationsCorners
Add tab annotations to the corners of the individual substrates.
buildTabAnnotationsFixed
Add tab annotations for the individual substrates based on number of
tabs in horizontal and vertical direction. You can specify individual
width in each direction.
If the edge is short for the specified number of tabs with given minimal spacing, the count is reduced.
You can also specify ghost substrates (for the future framing).
buildTabAnnotationsSpacing
Add tab annotations for the individual substrates based on their spacing.
You can also specify ghost substrates (for the future framing).
buildTabsFromAnnotations
Given annotations for the individual substrates, create tabs for them.
Tabs are appended to the panel, cuts are returned.
Expects that a valid partition line is assigned to the the panel.
clearTabsAnnotations
Remove all existing tab annotations from the panel.
copperFillNonBoardAreas
copperFillNonBoardAreas(self, clearance=1000000,
layers=[<Layer.F_Cu: 0>, <Layer.B_Cu: 31>],
hatched=False, strokeWidth=1000000,
strokeSpacing=1000000,
orientation=<pcbnew.EDA_ANGLE; proxy of <Swig Object of type 'EDA_ANGLE *' at 0x7f7a1f7f99b0> >)
By default, fills top and bottom layer, but you can specify any other copper layer that is enabled.
debugRenderBackboneLines
Render partition line to the panel to be easily able to inspect them via
Pcbnew.
debugRenderBoundingBoxes
None
debugRenderPartitionLines
Render partition line to the panel to be easily able to inspect them via
Pcbnew.
getAuxiliaryOrigin
None
getGridOrigin
None
getPageDimensions
Get page size in KiCAD units for the current panel
getPrlFilepath
None
getProFilepath
None
inheritCopperLayers
Update the panel's layer count to match the design being panelized.
Raise an error if this is attempted twice with inconsistent layer count
boards.
inheritDesignSettings
Inherit design settings from the given board specified by a filename or
a board
inheritPageSize
Inherit page size from a board specified by a filename or a board
inheritProperties
Inherit text properties from a board specified by a filename or a board
inheritTitleBlock
Inherit title block from a board specified by a filename or a board
locateBoard
Given a board filename, find its source area and optionally expand it by the given distance.
Parameters:
inputFilename - the path to the board file
expandDist - the distance by which to expand the board outline in each direction to ensure elements that are outside the board are included
makeCutsToLayer
Take a list of cuts and render them as lines on given layer. The cuts
can be prolonged just like with mousebites.
The purpose of this is to aid debugging when KiKit refuses to perform cuts. Rendering them into lines can give the user better understanding of where is the problem.
makeFrame
Build a frame around the boards. Specify width and spacing between the
boards substrates and the frame. Return a tuple of vertical and
horizontal cuts.
Parameters:
width - width of substrate around board outlines
slotwidth - width of milled-out perimeter around board outline
hspace - horizontal space between board outline and substrate
vspace - vertical space between board outline and substrate
minWidth - if the panel doesn't meet this width, it is extended
minHeight - if the panel doesn't meet this height, it is extended
maxWidth - if the panel doesn't meet this width, TooLargeError is raised
maxHeight - if the panel doesn't meet this height, TooLargeHeight is raised
makeFrameCutsH
Generate horizontal cuts for the frame corners and return them
makeFrameCutsV
Generate vertical cuts for the frame corners and return them
makeGrid
makeGrid(self, boardfile, sourceArea, rows, cols, destination, placer,
rotation=<pcbnew.EDA_ANGLE; proxy of <Swig Object of type 'EDA_ANGLE *' at 0x7f7a1f7f9320> >,
netRenamePattern=Board_{n}-{orig}, refRenamePattern=Board_{n}-{orig},
tolerance=0, bakeText=False)
Parameters:
boardfile - the path to the filename of the board to be added
sourceArea - the region within the file specified to be selected (see also tolerance, below) set to None to automatically calculate the board area from the board file with the given tolerance
rows - the number of boards to place in the vertical direction
cols - the number of boards to place in the horizontal direction
destination - the center coordinates of the first board in the grid (for example, VECTOR2I(100 * mm,50 * mm))
rotation - the rotation angle to be applied to the source board before placing it
placer - the placement rules for boards. The builtin classes are: BasicGridPosition - places each board in its original orientation OddEvenColumnPosition - every second column has the boards rotated by 180 degrees OddEvenRowPosition - every second row has the boards rotated by 180 degrees OddEvenRowsColumnsPosition - every second row and column has the boards rotated by 180 degrees
netRenamePattern - the pattern according to which the net names are transformed The default pattern is "Board_{n}-{orig}" which gives each board its own instance of its nets, i.e. GND becomes Board_0-GND for the first board , and Board_1-GND for the second board etc
refRenamePattern - the pattern according to which the reference designators are transformed The default pattern is "Board_{n}-{orig}" which gives each board its own instance of its reference designators, so R1 becomes Board_0-R1 for the first board, Board_1-R1 for the second board etc. To keep references the same as in the original, set this to "{orig}"
tolerance - if no sourceArea is specified, the distance by which the selection area for the board should extend outside the board edge. If you have any objects that are on or outside the board edge, make sure this is big enough to include them. Such objects often include zone outlines and connectors.
bakeText - substitute variables in text elements
Returns a list of the placed substrates. You can use these to generate tabs, frames, backbones, etc.
makeLayersVisible
Modify corresponding *.prl files so all the layers are visible by
default
makeMouseBites
Take a list of cuts and perform mouse bites. The cuts can be prolonged
to
makeRailsLr
Adds a rail to left and right. You can specify minimal width the panel
has to feature.
makeRailsTb
Adds a rail to top and bottom. You can specify minimal height the panel
has to feature. You can also specify maximal height of the panel. If the
height would be exceeded, TooLargeError is raised.
makeTightFrame
makeTightFrame(self, width, slotwidth, hspace, vspace, minWidth=0, minHeight=0,
maxWidth=None, maxHeight=None)
Parameters:
width - width of substrate around board outlines
slotwidth - width of milled-out perimeter around board outline
hspace - horizontal space between board outline and substrate
vspace - vertical space between board outline and substrate
minWidth - if the panel doesn't meet this width, it is extended
minHeight - if the panel doesn't meet this height, it is extended
maxWidth - if the panel doesn't meet this width, TooLargeError is raised
maxHeight - if the panel doesn't meet this height, TooLargeHeight is raised
makeVCuts
Take a list of lines to cut and performs V-CUTS. When boundCurves is
set, approximate curved cuts by a line from the first and last point.
Otherwise, raise an exception.
panelBBox
Return bounding box of the panel as a shapely box.
panelCorners
Return the list of top-left, top-right, bottom-left and bottom-right
corners of the panel. You can specify offsets.
renderBackbone
Render horizontal and vertical backbone lines. If zero thickness is
specified, no backbone is rendered.
vcut, hcut specifies if vertical or horizontal backbones should be cut.
vskip and hskip specify how many backbones should be skipped before rendering one (i.e., skip 1 meand that every other backbone will be rendered)
vfirst and hfirst are indices of the first backbone to render. They are 1-indexed.
Return a list of cuts
save
Saves the panel to a file and makes the requested changes to the prl and
pro files.
setAuxiliaryOrigin
Set the auxiliary origin used e.g., for drill files
setCopperLayers
Sets the copper layer count of the panel
setDesignSettings
Set design settings
setGridOrigin
Set grid origin
setPageSize
Set page size - either a string name (e.g., A4) or size in KiCAD units
setProperties
Set text properties cached in the board
setTitleBlock
Set panel title block
setVCutClearance
Set V-cut clearance
setVCutLayer
Set layer on which the V-Cuts will be rendered
transferProjectSettings
Examine DRC rules of the source boards, merge them into a single set of
rules and store them in *.kicad_pro file. Also stores board DRC
exclusions.
Also, transfers the list of net classes from the internal representation into the project file.
translate
Translates the whole panel by vec. Such a feature can be useful to
specify the panel placement in the sheet. When we translate panel as the
last operation, none of the operations have to be placement-aware.
Substrate class
This class represents a pice of substrate (with no components). Basically it is just a relatively thin wrapper around shapely polygons. On top of that, it keeps a partition line for the substrate. Read more about partition lines in understanding tabs.
backToSource
Return a point in the source form (if a reverse transformation was set)
boundary
Return shapely geometry representing the outer ring
boundingBox
Return bounding box as BOX2I
bounds
Return shapely bounds of substrates
cut
Remove a piece of substrate given a shapely polygon.
exterior
Return a geometry representing the substrate with no holes
exteriorRing
None
interiors
Return shapely interiors of the substrate
isSinglePiece
Decide whether the substrate consists of a single piece
midpoint
Return a mid point of the bounding box
millFillets
Add fillets to inner corners which will be produced by a mill with
given radius.
orient
Ensures that the substrate is oriented in a correct way.
removeIslands
Removes all islands - pieces of substrate fully contained within the
outline of another board
serialize
Produces a list of PCB_SHAPE on the Edge.Cuts layer
tab
Create a tab for the substrate. The tab starts at the specified origin
(2D point) and tries to penetrate existing substrate in direction (a 2D
vector). The tab is constructed with given width. If the substrate is
not penetrated within maxHeight, exception is raised.
When partitionLine is specified, the tab is extended to the opposite side - limited by the partition line. Note that if tab cannot span towards the partition line, then the tab is not created - it returns a tuple (None, None).
If a fillet is specified, it allows you to add fillet to the tab of specified radius.
Returns a pair tab and cut outline. Add the tab it via union - batch adding of geometry is more efficient.