• Skip to main content
  • Skip to search
  • Skip to footer
Cadence Home
  • This search text may be transcribed, used, stored, or accessed by our third-party service providers per our Cookie Policy and Privacy Policy.

  1. Community Forums
  2. Custom IC SKILL
  3. Passing values through a Skill User Form

Stats

  • Locked Locked
  • Replies 4
  • Subscribers 143
  • Views 15140
  • Members are here 0
This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

Passing values through a Skill User Form

NKU10k
NKU10k over 12 years ago

 Hi,

I am trying to create a form accesible with a menu in Virtuoso Layout editor to create a complex shape. Managed to add the menu, couple of menu items and create a form using material in this forum and web but struggling to pass the values input through the form to a procedure. I am trying to draw a donutas a start.

My code is copied below and appriciate anyone can help figuring out the problem.

The error  message is

*Error* dbCreateDonut argument #4 should be a number (type template = "dglnn") - nil

procedure(CreateAddDoForm()
     let((InnerRadius OuterRadius Centre Layer)
        InnerRadius=hiCreateIntField(
                ?name 'InnerRadius
                ?prompt "Inner Radius"
                )
    OuterRadius=hiCreateIntField(
                ?name 'OuterRadius
                ?prompt "Outer Radius"
                )
    Centre=hiCreateIntField(
                ?name 'Centre
                ?prompt "Centre"
                )
        Layer=hiCreateIntField(
                ?name 'Layer
                ?prompt "Layer"
                )
               
        hiCreateAppForm(
            ?name 'AddDonutForm
            ?formTitle "Input Source Parameters"
            ?buttonLayout 'OKCancelApply
            ?callback "DrawDonut()"
            ?fields
                list(
                    list(InnerRadius 0:0 200:30 100)
                    list(OuterRadius 0:35 200:30 100)
                    list(Centre 0:70 200:30 100)
                    list(Layer 0:105 200:30 100)
                    )
                      )
         );let
      );procedure

procedure(FunctionAddDonut()
     unless(boundp('AddDonutForm)
        CreateAddDoForm()
           )
  
     hiDisplayForm(AddDonutForm)
         )

procedure(DrawDonut()
      let( (Orad Irad)
        Orad=AddDonutForm->OuterRadius->Value
        Irad=AddDonutForm->InnerRadius->Value
        cvID=geGetWindowCellView()
        dbCreateDonut(cvID "DIFF"  0:0 Orad Irad)
       
       )

      )

 

  • Cancel
Parents
  • Andrew Beckett
    Andrew Beckett over 12 years ago

    The problem is that leChopShape will return a list of the new shapes - and you have no idea which is the one you want to do subsequent chops on. Now you're not removing the gaps you're chopping out (I suspect you want to though) - but even if you do that, it's not going to solve the problem - fundamentally you will end up with two or three shapes when you chop the remainder of the donut (depending on whether you keep the shapes in the chopped region). If you pick the wrong shape (you have arbitrarily chosen then cadr), then the next chop will return nil because there was nothing that was chopped.

    So I think you need to do something like the below - use dbGetTrueOverlaps to find the polygon underneath the mid point of the next segment to be chopped (I compute the midRadius and then a point half way through that segment) - and then chop that. In this example I also remove the chopped region (you must tell it that the chop points are a closed polygon for that to work) - whether you want to do that or not is up to you (this is the t t arguments in leChopShape).

    I also added local variables too, for good measure. Note that in the code, you might be able to use cc_mainR rather than computing cc_midRadius (I'll leave that to you - I only spotted this upon reviewing the code).

    Regards,

    Andrew.

    procedure( ConstructCog(cc_mainR cc_SourceNLength cc_NPolyOvelap cc_NWidth cc_PWidth)

      let((MainCirc NumOfSegs SegWidth SegNWidth cc_InnerR cc_OuterR cvID donutID NSegAngle
        PitchAngle cc_TempRadius cc_midRadius i_FirstX i_FirstY i_secondX i_secondY
        identifyX identifyY NewShapes)

         MainCirc= 2*3.14*cc_mainR
        NumOfSegs=round(MainCirc/(cc_NWidth+cc_PWidth))
        SegWidth=MainCirc/NumOfSegs
        SegNWidth=SegWidth*cc_NWidth/(cc_NWidth+cc_PWidth)
      
        cc_InnerR=cc_mainR-cc_NPolyOvelap
        cc_OuterR=cc_mainR+cc_SourceNLength
          
        cvID=geGetWindowCellView()
        donutID=dbCreateDonut(cvID "Metal2"  0:0  cc_OuterR cc_InnerR)
        ;hiZoomAbsoluteScale(cvID 1) ; want to zoom to fit, doesn't work

        NSegAngle=SegNWidth/cc_mainR
        PitchAngle=SegWidth/cc_mainR
        cc_TempRadius=cc_mainR+cc_SourceNLength+1

        cc_midRadius=(cc_OuterR+cc_InnerR)/2.0

        for(i 1 NumOfSegs

            i_FirstX=cc_TempRadius*cos((i-1)*PitchAngle)
            i_FirstY=cc_TempRadius*sin((i-1)*PitchAngle)
            i_secondX=cc_TempRadius*cos((i-1)*PitchAngle+NSegAngle)
            i_secondY=cc_TempRadius*sin((i-1)*PitchAngle+NSegAngle)

            identifyX=cc_midRadius*cos((i-1)*PitchAngle+NSegAngle/2.0)
            identifyY=cc_midRadius*sin((i-1)*PitchAngle+NSegAngle/2.0)
            donutID=car(dbGetTrueOverlaps(cvID list(identifyX:identifyY identifyX:identifyY) "Metal2" 0))
          
            ;dbCreateLine(cvID "PPLUS" list(0:0 i_FirstX:i_FirstY i_secondX:i_secondY 0:0))
          

            ;leChopShape( donutID list(0:0 i_FirstX:i_FirstY i_secondX:i_secondY 0:0) nil nil 300 )

            NewShapes=leChopShape( donutID list(0:0 i_FirstX:i_FirstY i_secondX:i_secondY 0:0)
            t t 300 )
        ;    donutID=car(NewShapes)
          
        );for
      )
    ) ;procedure
    • Cancel
    • Vote Up 0 Vote Down
    • Cancel
Reply
  • Andrew Beckett
    Andrew Beckett over 12 years ago

    The problem is that leChopShape will return a list of the new shapes - and you have no idea which is the one you want to do subsequent chops on. Now you're not removing the gaps you're chopping out (I suspect you want to though) - but even if you do that, it's not going to solve the problem - fundamentally you will end up with two or three shapes when you chop the remainder of the donut (depending on whether you keep the shapes in the chopped region). If you pick the wrong shape (you have arbitrarily chosen then cadr), then the next chop will return nil because there was nothing that was chopped.

    So I think you need to do something like the below - use dbGetTrueOverlaps to find the polygon underneath the mid point of the next segment to be chopped (I compute the midRadius and then a point half way through that segment) - and then chop that. In this example I also remove the chopped region (you must tell it that the chop points are a closed polygon for that to work) - whether you want to do that or not is up to you (this is the t t arguments in leChopShape).

    I also added local variables too, for good measure. Note that in the code, you might be able to use cc_mainR rather than computing cc_midRadius (I'll leave that to you - I only spotted this upon reviewing the code).

    Regards,

    Andrew.

    procedure( ConstructCog(cc_mainR cc_SourceNLength cc_NPolyOvelap cc_NWidth cc_PWidth)

      let((MainCirc NumOfSegs SegWidth SegNWidth cc_InnerR cc_OuterR cvID donutID NSegAngle
        PitchAngle cc_TempRadius cc_midRadius i_FirstX i_FirstY i_secondX i_secondY
        identifyX identifyY NewShapes)

         MainCirc= 2*3.14*cc_mainR
        NumOfSegs=round(MainCirc/(cc_NWidth+cc_PWidth))
        SegWidth=MainCirc/NumOfSegs
        SegNWidth=SegWidth*cc_NWidth/(cc_NWidth+cc_PWidth)
      
        cc_InnerR=cc_mainR-cc_NPolyOvelap
        cc_OuterR=cc_mainR+cc_SourceNLength
          
        cvID=geGetWindowCellView()
        donutID=dbCreateDonut(cvID "Metal2"  0:0  cc_OuterR cc_InnerR)
        ;hiZoomAbsoluteScale(cvID 1) ; want to zoom to fit, doesn't work

        NSegAngle=SegNWidth/cc_mainR
        PitchAngle=SegWidth/cc_mainR
        cc_TempRadius=cc_mainR+cc_SourceNLength+1

        cc_midRadius=(cc_OuterR+cc_InnerR)/2.0

        for(i 1 NumOfSegs

            i_FirstX=cc_TempRadius*cos((i-1)*PitchAngle)
            i_FirstY=cc_TempRadius*sin((i-1)*PitchAngle)
            i_secondX=cc_TempRadius*cos((i-1)*PitchAngle+NSegAngle)
            i_secondY=cc_TempRadius*sin((i-1)*PitchAngle+NSegAngle)

            identifyX=cc_midRadius*cos((i-1)*PitchAngle+NSegAngle/2.0)
            identifyY=cc_midRadius*sin((i-1)*PitchAngle+NSegAngle/2.0)
            donutID=car(dbGetTrueOverlaps(cvID list(identifyX:identifyY identifyX:identifyY) "Metal2" 0))
          
            ;dbCreateLine(cvID "PPLUS" list(0:0 i_FirstX:i_FirstY i_secondX:i_secondY 0:0))
          

            ;leChopShape( donutID list(0:0 i_FirstX:i_FirstY i_secondX:i_secondY 0:0) nil nil 300 )

            NewShapes=leChopShape( donutID list(0:0 i_FirstX:i_FirstY i_secondX:i_secondY 0:0)
            t t 300 )
        ;    donutID=car(NewShapes)
          
        );for
      )
    ) ;procedure
    • Cancel
    • Vote Up 0 Vote Down
    • Cancel
Children
No Data

Community Guidelines

The Cadence Design Communities support Cadence users and technologists interacting to exchange ideas, news, technical information, and best practices to solve problems and get the most from Cadence technology. The community is open to everyone, and to provide the most value, we require participants to follow our Community Guidelines that facilitate a quality exchange of ideas and information. By accessing, contributing, using or downloading any materials from the site, you agree to be bound by the full Community Guidelines.

© 2025 Cadence Design Systems, Inc. All Rights Reserved.

  • Terms of Use
  • Privacy
  • Cookie Policy
  • US Trademarks
  • Do Not Sell or Share My Personal Information