hycmos

About

Username
hycmos
Joined
Visits
7
Last Active
Roles
Member

Comments

  • I received one message telling me the bad link to download chipR. Now the link is repaired. Also if any problem during using this tool please let me know. Thanks.
  • get a script error: undefined method `text' for #-RBA::NetlistComparer:0x0000000030d94c18- can not run the line "puts comp.text". But I can see you defined the function text in class NetlistCompareTestLogger < RBA::GenericNetlistCompar…
  • Hi, By now, I have not any idea about a license. It seems that there are many types of licenses in the world. I am confused by them. So I write the words "free for personal use at home" just because of the clear meaning. "personal &q…
  • Sir, Thank you very much for your patience. I plan to study the code to understand the method. hope I can implement this work. <3
  • (Image) :) ,strange, My Klayout has this menu.
  • Thank you, I finished my work. I am not a programmer. To implement this tool I studied Klayout's API by myself. It is a hard work for me. So thank you for your help. Now the tool works well. It extracts the layout's parasitic parameter up to 3 lay…
  • Thanks to your great Klayout. I almost finish this tool. I studied the Class Delaunay in scipy.spatial. It seems that the spatial's Delaunay is based on Qhull.exe. So I studied www.Qhull.org. Maybe, this Qhull is more powerfull than Triangle.exe. B…
  • At this moment, GMT Time 14:21, Feb 2, 2020 I re-install by "pip install klayout". It works. I forgot what information was shown. Sorry for this post. and I test this script, it is OK: # Python version:import pyalayout = pya.Layout()top …
  • I got it. All holes can be identified. Thank Klayout's power functions! hole=[] # all holesfor he in input_polygons.holes(): # write the nodes of Hull #i h1=str(he.point_hull(0).x+1)+' '+str(he.point_hull(0).y+1) hole.append(h1) so cool! Below …
  • How to code to output the hole? Thanks.
  • I finish the Code(but it just works, It is very slower than your original code): # description: Export poly file to Triangle# autorunimport numpy as np#from scipy.spatial import Delaunaycellview = pya.CellView.active()ly = cellview.layout()cell = c…
  • When the Manager can not work I install this xsection by downloading the files from github manually. Maybe you can try.
  • Dear Matthias, Thank you very much. I will study every line of your code to familiar with Klayout's Python API. I try to create one tool to extract one layout's parasitic RLC. The tool is very like other tools such as Finite Element Analysis etc Th…