-
Hi KQC team, |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Hi Qvadi, Everything related to layer configuration is indeed under the
The configuration code that KQC uses can be configured from the Then we have a tool to generate the So a recommended way after making your own
Then in KLayout you can open For more reading check out https://iqm-finland.github.io/KQCircuits/user_guide/python_workflow.html#kqcircuit-s-layers chapters Alternative way, modifying my_layer_props.lyp directlyYou can also modify Right-clicking on the |
Beta Was this translation helpful? Give feedback.
Hi Qvadi,
Everything related to layer configuration is indeed under the
klayout_package/python/kqcircuits/layer_config
folder. Let me introduce the files that are there:default_layer_props.lyp
a file used by KLayout to load the layer properties, to display layer with correct colors, transparency, dithering etc. This can be loaded in KLayout from top toolbar usingFile > Load Layer Properties
. This file is messy xml style file that shouldn't really be modified by hand, unless all other options fail.default_layer_config.py
a file to make the KQC code work. In our workflow we group a set of layers and duplicate them over multiple faces of our chip stack. Take for example1t1
face. The fir…