Adding options to DRC width check

edited November 2019 in Layout
Gentlemen,

I would like to experiment with the options on the DRC width check, but when I follow the directions I get a run error.

Manual version - layer.width(value [, options])

My attempt -
FCT1 = input(46,0)
FCT1.width(22.micron [, square]).output(300, 0)

What am I doing wrong?

Thank you,
Ken Shaw

Comments

  • You can try :

    FCT1 = input(46,0)
    FCT1.width(22.um, euclidian).output("FCT.width", "Min FCT1 width : 22 micron")
    

    Laurent

  • Maybe, you also have to add this line at the top :

    report("sample DRC runset", File.join(File.dirname(RBA::CellView::active.filename), "sample.txt"))
    

    Laurent

  • and omit the square brackets :)

    They are there for indicating that this specification is optional.

    Matthias

Sign In or Register to comment.