Automated Assembly Generation with iLogic | Autodesk Virtual Academy

แชร์
ฝัง
  • เผยแพร่เมื่อ 17 ก.ย. 2024

ความคิดเห็น • 15

  • @adventurefilms
    @adventurefilms 6 หลายเดือนก่อน

    This is a great video, it has an example for almost everything!

  • @Tbm-ov5ky
    @Tbm-ov5ky 2 ปีที่แล้ว +2

    Is there a way to define folders in a generic fashion maybe related to the vault working folder, so the ilogic will work on different computers and for different users?

  • @robertcalliham8667
    @robertcalliham8667 หลายเดือนก่อน

    How do i name a certain hole to only imate and fill with the required bolt with similar names? Is that possible?

  • @ramp-mw4wt
    @ramp-mw4wt 3 หลายเดือนก่อน

    Capture Form Inputs and Generate BOMs? Like I have an design and in which I have 80 different variation and also I have created ilogic form for configuations. But If I select BOM it is giving same for all. but i want it for different material or different length bolt. please advice me for this.

  • @adventurefilms
    @adventurefilms ปีที่แล้ว

    Ahsoka, the best developed character in Star Wars (referencing the Clone War animated series)! Thanks for this video Cameron, is there a place we can go to "request" Virtual Academy topics?

  • @adventurefilms
    @adventurefilms 6 หลายเดือนก่อน

    Cameron, at 17:52, you hand type the offset of 1 inch, but is it possible to have that dimension or all of the dim's (x offset, y offset, z offset) pulled from the parameters of another part?.. example, instead of hand typing a 1inch offset, could that 1 inch offset be tied to the 1 inch dimension within the _Chassis.ipt file, that way if that file updates, so does this code?

  • @struchol
    @struchol 2 ปีที่แล้ว +1

    How can I place Content Center part that got Custom column fe Pipe with "length" to type in form??

  • @RayneDr0ps
    @RayneDr0ps 3 ปีที่แล้ว

    How would I go about this, Inserting a part that gradually changes in length the further right or left of center line. Let's say I have 60 blades of thin sheet metal that fit in a 60" diameter cylinder, each spaced 1" apart. However the next time, the diameter might be 72" and require 72 blades 1" apart?

    • @KETIVTechnologies
      @KETIVTechnologies  3 ปีที่แล้ว

      Thanks for reaching out Stephanie. For what you described, a switch case could be useful for setting up multiple buckets of dependent parameters if not just regular if-then statements. Implementation may vary on your specific example of course, but feel free to reach out to support@ketiv.com for more help!

  • @indrakumarcm
    @indrakumarcm 2 ปีที่แล้ว

    Can I do this on Profesional 2018?

  • @easycad7065
    @easycad7065 3 ปีที่แล้ว

    Hello, Is it possible to add iam files this new way? I don't think so.. but can it be added the old way?

    • @KETIVTechnologies
      @KETIVTechnologies  3 ปีที่แล้ว +3

      Thank you for your question! - The Components.Add method works for part components (IPT) and assembly components (IAM). Everything demonstrated in this video works for either IPT or IAM files, except Components.AddContentCenterPart, which only places IPT (content center is IPT-only). Cameron Whetten|KETIV Application Engineer

  • @fjnagle2nd
    @fjnagle2nd 4 ปีที่แล้ว

    Dim = ? Still baffled by this syntax...

    • @WillEhrendreich
      @WillEhrendreich 4 ปีที่แล้ว +1

      its thought of as "Dimension", as in , dimension out a plan to have this data stored. yeah it's bonkers. you'd think like.. Var or something.. if they were going to make it a one trick pony keyword.. but no... its dim.. very very dim.. lol. I much prefer C#'s way of actually SAYING what the variable type is as you go, so you don't have all the useless extra typing. welcome to VB!

    • @KETIVTechnologies
      @KETIVTechnologies  3 ปีที่แล้ว

      Thank you for your question. - As Will said, Dim is the Visual Basic keyword for creating a new variable. In your iLogic rules, you can actually leave out the Dim keyword entirely and it will work (for example, myTestVariable = "Hello"). In the demonstrated rule, except for the first line where a new variable is created explicitly as the 'String' type, every instance of Dim was added automatically by using the built-in snippets. Cameron Whetten|KETIV Application Engineer