kqcircuits.simulations.export.cross_section.xsection_export
- kqcircuits.simulations.export.cross_section.xsection_export.xsection_call(input_oas: Path, output_oas: Path, cut1: DPoint, cut2: DPoint, process_path: Path = PosixPath('/home/runner/work/KQCircuits/KQCircuits/xsection/kqc_process.xs'), parameters_path: Path | None = None) None [source]
Calls on KLayout to run the XSection plugin
- Parameters:
input_oas – Input OAS file (top-down geometry)
output_oas – Output OAS file (Cross-section of input geometry)
cut1 – DPoint of first endpoint of the cross-section cut
cut2 – DPoint of second endpoint of the cross-section cut
process_path – XSection process file that defines cross-section etching depths etc
parameters_path – If process_path points to kqc_process.xs, parameters_path should point to the XSection parameters json file containing sweeped parameters and layer information.
- kqcircuits.simulations.export.cross_section.xsection_export.create_xsections_from_simulations(simulations: list[~kqcircuits.simulations.simulation.Simulation], output_path: ~pathlib.Path, cuts: tuple[~klayout.pyacore.DPoint, ~klayout.pyacore.DPoint] | list[tuple[~klayout.pyacore.DPoint, ~klayout.pyacore.DPoint]], process_path: ~pathlib.Path = PosixPath('/home/runner/work/KQCircuits/KQCircuits/xsection/kqc_process.xs'), post_processing_function: ~typing.Callable[[~kqcircuits.simulations.cross_section_simulation.CrossSectionSimulation], None] | None = None, oxidise_layers_function: ~typing.Callable[[~kqcircuits.simulations.cross_section_simulation.CrossSectionSimulation, float, float, float], None] = <function _oxidise_layers>, ma_permittivity: float = 0, ms_permittivity: float = 0, sa_permittivity: float = 0, ma_thickness: float = 0, ms_thickness: float = 0, sa_thickness: float = 0, vertical_cull: tuple[float, float] | None = None, mer_box: ~klayout.pyacore.DBox | list[~klayout.pyacore.DBox] | None = None, london_penetration_depth: float | list = 0, magnification_order: int = 0, layout: ~klayout.pyacore.Layout | None = None) list[Simulation] [source]
Create cross-sections of all simulation geometries in the list. Will set ‘box’ and ‘cell’ parameters according to the produced cross-section geometry data.
- Parameters:
simulations – List of Simulation objects, usually produced by a sweep
output_path – Path for the exported simulation files
cuts –
A tuple (p1, p2), where p1 and p2 are endpoints of a cross-section cut or
a list of such tuples such that each Simulation object gets an individual cut
process_path – XSection process file that defines cross-section etching depths etc
post_processing_function – Additional function to post-process the cross-section geometry. Defaults to None, in which case no post-processing is performed. The function takes a CrossSectionSimulation object as argument
oxidise_layers_function – Set this argument if you have a custom way of introducing oxidization layers to the cross-section metal deposits and substrate. See expected function signature from pyhints
ma_permittivity – Permittivity of metal–vacuum (air) interface
ms_permittivity – Permittivity of metal–substrate interface
sa_permittivity – Permittivity of substrate–vacuum (air) interface
ma_thickness – Thickness of metal–vacuum (air) interface
ms_thickness – Thickness of metal–substrate interface
sa_thickness – Thickness of substrate–vacuum (air) interface
vertical_cull – Tuple of two y-coordinates, will cull all geometry not in-between the y-coordinates. None by default, which means all geometry is retained.
mer_box – If set as pya.DBox, will create a specified box as metal edge region, meaning that the geometry inside the region are separated into different layers with ‘_mer’ suffix
london_penetration_depth – London penetration depth of the superconducting material
magnification_order – Increase magnification of simulation geometry to accomodate more precise spacial units. 0 = no magnification with 1e-3 dbu 1 = 10x magnification with 1e-4 dbu 2 = 100x magnification with 1e-5 dbu etc Consider setting non-zero value when using oxide layers with < 1e-3 layer thickness or taking cross-sections of thin objects
layout – predefined layout for the cross-section simulation (optional)
- Returns:
List of CrossSectionSimulation objects for each Simulation object in simulations
