• Industries
  • Products
  • Buy
  • Services & Support
  • Communities
  • Discussion Groups

    Autodesk Factory Design Suite

    Reply
    Valued Contributor
    Posts: 76
    Registered: ‎04-13-2009

    Connector should be a point of the edge, can't use user defined point?

    82 Views, 3 Replies
    08-27-2012 03:21 AM

    Dear All,

     

    We are testing the connector definition. we meet problem that the conveyor's height can't automatically change if the connector isn't the a point of the edge.

     

    Please get the attachment. for ShockConveyor.ipt, we defined 2 connector of the right side, one is a midpoint of a edge(connector4), the other is intersect point of three plane(connector5).  the connector4 work correctly but failed with connector5.

     

    What wrong with it?it's the limited of the connector point?

     

    My Best Regards,

     

    Rick

     

     

     

     

     

     

    Please use plain text.
    Employee
    Posts: 217
    Registered: ‎03-15-2009

    Re: Connector should be a point of the edge, can't use user defined point?

    08-27-2012 07:17 PM in reply to: rick_hgy

    Hi Rick,

     

    Yes,  that is the limitation. The connector 5 only propagate the parameter "RightHeight'. Currently, the connector class didn't allow defining the expresion, say "RightHeight+300mm".

    Spoiler
     

     

    Thanks,

    -Xuesong

    Please use plain text.
    Employee
    Posts: 217
    Registered: ‎03-15-2009

    Re: Connector should be a point of the edge, can't use user defined point?

    08-27-2012 10:10 PM in reply to: rick_hgy

    Hi Rick,

     

    I am writing a ilogic code to control the RightHeight based on which Connector is consumed.

     

    If (RightHeight <> iProperties.Value("Custom", "RightHeight_backup")) Then
     RightHeight1= RightHeight+300 mm
      ParaChange = 0
    Else If (RightHeight1 <> iProperties.Value("Custom", "RightHeight1_backup")) Then
     RightHeight = RightHeight1 -300 mm
    End If
    iProperties.Value("Custom", "RightHeight_backup") = RightHeight
    iProperties.Value("Custom", "RightHeight1_backup") = RightHeight1

    Also,I added new parameter RightHeight1 and set as key (must be set as key) in model and update the connector class .

    Please use plain text.
    Valued Contributor
    Posts: 76
    Registered: ‎04-13-2009

    Re: Connector should be a point of the edge, can't use user defined point?

    08-27-2012 10:33 PM in reply to: rick_hgy

    Thanks, Xuesong, It's work very well!

    Please use plain text.