Best approach for chip size other than 10 x 10 mm? #65
-
Hi. I have been enjoying incorporating KQCircuits in my workflow, but not sure best way to proceed with writing chip classes for designs for sizes other than 10 x 10 mm. I know in the |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Hi, I'm so glad to hear that you are using KQCircuits! The preferred way to set the dimensions of your chip is to add the following class decorator before your chip class definition:
Set the
The first element Make sure to check what other parameters need changing after changing the chip dimensions, for example Hope this helps you started and let me know if this causes other issues. |
Beta Was this translation helpful? Give feedback.
Hi, I'm so glad to hear that you are using KQCircuits!
The preferred way to set the dimensions of your chip is to add the following class decorator before your chip class definition:
Set the
DBox
dimensions to your liking, and it doesn't need to be a perfect square.If you are considering to create a flip chip, to set the chip dimensions of other chips in the stack, add another decorator like this:
The first element
None
will d…