<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Assembly Mass Supression in Virtual Components in Inventor Forum</title>
    <link>https://forums.autodesk.com/t5/inventor-forum/assembly-mass-supression-in-virtual-components/m-p/13444261#M6237</link>
    <description>&lt;P&gt;Thanks Howard.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I don't really want to go down the route of an iLogic solution - besides, I need to store the mass of the various components somewhere and if I manually set them to zero when suppressed I'd need to find some other method for storing the data in the file without it affecting the assembly mass - a sticking plaster on a bodge! I'd rather just get the Inventor team to fix the issue, although I'm having difficulty finding out if it's expected behaviour or a bug.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;It seems to me like there is something in the inventor code that isn't looking at the suppression state of a virtual component when doing the mass calculation (presumably most people use it for "massless" items like paints etc).&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If I can get this fixed though it would be such a massive improvement for me in the way a lot of the customers in my industry like their BoMs to be structured.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/486618"&gt;@johnsonshiue&lt;/a&gt;&amp;nbsp;- is this expected behaviour for the virtual components?&amp;nbsp; No one from the Inventor official team seems to be replying to my questions on this and it's really annoying me!&lt;/P&gt;&lt;P&gt;TLDR for the rest of the posts, the "mass" calculation seems to include the (manually set) mass of a virtual component regardless of whether that component is suppressed or not.&lt;/P&gt;</description>
    <pubDate>Fri, 25 Apr 2025 10:48:45 GMT</pubDate>
    <dc:creator>will.astill</dc:creator>
    <dc:date>2025-04-25T10:48:45Z</dc:date>
    <item>
      <title>Assembly Mass Supression in Virtual Components</title>
      <link>https://forums.autodesk.com/t5/inventor-forum/assembly-mass-supression-in-virtual-components/m-p/13264884#M6235</link>
      <description>&lt;P&gt;I'm not sure if this is intended behaviour or a bug in the software.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm using 2025.2.1&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If I:&lt;/P&gt;&lt;P&gt;&amp;nbsp;- have a virtual component in an assembly file,&lt;/P&gt;&lt;P&gt;&amp;nbsp;- assign that component a mass (manually overriding using iProperties),&lt;/P&gt;&lt;P&gt;&amp;nbsp;- supress the component&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The assembly mass still includes the mass of the virtual component.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Am I doing something wrong? Is this expected behaviour? Is there a way around it?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;It's really annoying as I was hoping to use a virtual component to get around a BoM structure issue I'm having for some of my customers when I have multiple model states.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Assemblies attached.&lt;/P&gt;</description>
      <pubDate>Thu, 16 Jan 2025 14:03:48 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-forum/assembly-mass-supression-in-virtual-components/m-p/13264884#M6235</guid>
      <dc:creator>will.astill</dc:creator>
      <dc:date>2025-01-16T14:03:48Z</dc:date>
    </item>
    <item>
      <title>Re: Assembly Mass Supression in Virtual Components</title>
      <link>https://forums.autodesk.com/t5/inventor-forum/assembly-mass-supression-in-virtual-components/m-p/13265820#M6236</link>
      <description>&lt;P&gt;Hi, I tried and have the same result. A workaround would be to try with Ilogic something like this :&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="general"&gt;Dim asm As AssemblyDocument = ThisApplication.ActiveDocument
Dim suppressedVirtualMass As Double = 0

For Each occ As ComponentOccurrence In asm.ComponentDefinition.Occurrences
    If TypeOf occ.Definition Is VirtualComponentDefinition Then
        Dim virtCompDef As VirtualComponentDefinition = CType(occ.Definition, VirtualComponentDefinition)
        If occ.Suppressed Then
            suppressedVirtualMass += occ.MassProperties.Mass
        End If
    End If
Next

Dim suppressedVirtualMassLbs As Double = suppressedVirtualMass * 2.20462
Dim totalMass As Double = asm.ComponentDefinition.MassProperties.Mass
totalMass -= suppressedVirtualMassLbs / 2.20462
asm.ComponentDefinition.MassProperties.Mass = totalMass
&lt;/LI-CODE&gt;&lt;P&gt;I made it with Chatgpt so no big hope with that hahaha&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 16 Jan 2025 20:31:29 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-forum/assembly-mass-supression-in-virtual-components/m-p/13265820#M6236</guid>
      <dc:creator>MKE_Howard</dc:creator>
      <dc:date>2025-01-16T20:31:29Z</dc:date>
    </item>
    <item>
      <title>Re: Assembly Mass Supression in Virtual Components</title>
      <link>https://forums.autodesk.com/t5/inventor-forum/assembly-mass-supression-in-virtual-components/m-p/13444261#M6237</link>
      <description>&lt;P&gt;Thanks Howard.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I don't really want to go down the route of an iLogic solution - besides, I need to store the mass of the various components somewhere and if I manually set them to zero when suppressed I'd need to find some other method for storing the data in the file without it affecting the assembly mass - a sticking plaster on a bodge! I'd rather just get the Inventor team to fix the issue, although I'm having difficulty finding out if it's expected behaviour or a bug.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;It seems to me like there is something in the inventor code that isn't looking at the suppression state of a virtual component when doing the mass calculation (presumably most people use it for "massless" items like paints etc).&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If I can get this fixed though it would be such a massive improvement for me in the way a lot of the customers in my industry like their BoMs to be structured.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/486618"&gt;@johnsonshiue&lt;/a&gt;&amp;nbsp;- is this expected behaviour for the virtual components?&amp;nbsp; No one from the Inventor official team seems to be replying to my questions on this and it's really annoying me!&lt;/P&gt;&lt;P&gt;TLDR for the rest of the posts, the "mass" calculation seems to include the (manually set) mass of a virtual component regardless of whether that component is suppressed or not.&lt;/P&gt;</description>
      <pubDate>Fri, 25 Apr 2025 10:48:45 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-forum/assembly-mass-supression-in-virtual-components/m-p/13444261#M6237</guid>
      <dc:creator>will.astill</dc:creator>
      <dc:date>2025-04-25T10:48:45Z</dc:date>
    </item>
    <item>
      <title>Re: Assembly Mass Supression in Virtual Components</title>
      <link>https://forums.autodesk.com/t5/inventor-forum/assembly-mass-supression-in-virtual-components/m-p/13445070#M6238</link>
      <description>&lt;P&gt;Hi Will,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I am sorry I must have missed this posting. I have verified the behavior. It seems to carry over the legacy LOD behavior. But it is inconsistent with how Model State should work. I will work with the project team to understand it better.&lt;/P&gt;
&lt;P&gt;Many thanks!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 25 Apr 2025 19:25:31 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-forum/assembly-mass-supression-in-virtual-components/m-p/13445070#M6238</guid>
      <dc:creator>johnsonshiue</dc:creator>
      <dc:date>2025-04-25T19:25:31Z</dc:date>
    </item>
    <item>
      <title>Re: Assembly Mass Supression in Virtual Components</title>
      <link>https://forums.autodesk.com/t5/inventor-forum/assembly-mass-supression-in-virtual-components/m-p/13605468#M6239</link>
      <description>&lt;P&gt;Hi Will,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The issue has been confirmed as a defect by the project team (INVGEN-84503). Hopefully, it will be fixed soon.&lt;/P&gt;
&lt;P&gt;Many thanks!&lt;/P&gt;</description>
      <pubDate>Tue, 29 Apr 2025 11:36:14 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-forum/assembly-mass-supression-in-virtual-components/m-p/13605468#M6239</guid>
      <dc:creator>johnsonshiue</dc:creator>
      <dc:date>2025-04-29T11:36:14Z</dc:date>
    </item>
    <item>
      <title>Re: Assembly Mass Supression in Virtual Components</title>
      <link>https://forums.autodesk.com/t5/inventor-forum/assembly-mass-supression-in-virtual-components/m-p/13605613#M6240</link>
      <description>Hurrah! That's brilliant news.&lt;BR /&gt;&lt;BR /&gt;Thank you for sorting it out and I look forward to making my life easier once it's working! I knew you'd sort it for me!&lt;BR /&gt;&lt;BR /&gt;Fingers crossed it's a quick and easy fix!&lt;BR /&gt;</description>
      <pubDate>Tue, 29 Apr 2025 13:11:56 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-forum/assembly-mass-supression-in-virtual-components/m-p/13605613#M6240</guid>
      <dc:creator>will.astill</dc:creator>
      <dc:date>2025-04-29T13:11:56Z</dc:date>
    </item>
    <item>
      <title>Re: Assembly Mass Supression in Virtual Components</title>
      <link>https://forums.autodesk.com/t5/inventor-forum/assembly-mass-supression-in-virtual-components/m-p/13605649#M6241</link>
      <description>&lt;P&gt;Hi Will,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Many thanks for your kind words! I am very sorry for my omission. I should have replied earlier. Regarding the solution, it is unclear to me how costly it would be. But the behavior is very easy to understand and reproduce. The likelihood of a fix is proportional to that too.&lt;/P&gt;
&lt;P&gt;Thanks again!&lt;/P&gt;</description>
      <pubDate>Tue, 29 Apr 2025 13:26:28 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-forum/assembly-mass-supression-in-virtual-components/m-p/13605649#M6241</guid>
      <dc:creator>johnsonshiue</dc:creator>
      <dc:date>2025-04-29T13:26:28Z</dc:date>
    </item>
    <item>
      <title>Re: Assembly Mass Supression in Virtual Components</title>
      <link>https://forums.autodesk.com/t5/inventor-forum/assembly-mass-supression-in-virtual-components/m-p/13725737#M397778</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/486618"&gt;@johnsonshiue&lt;/a&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I just tried to have a look at this again while I was on the forum but couldn't find &lt;SPAN&gt;INVGEN-84503 in any search results except for this&lt;/SPAN&gt;.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Is&amp;nbsp;&lt;SPAN&gt;INVGEN-84503 an internal reference or is there a place that I can look to see the list of open issues?&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 15 Jul 2025 12:17:33 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-forum/assembly-mass-supression-in-virtual-components/m-p/13725737#M397778</guid>
      <dc:creator>will.astill</dc:creator>
      <dc:date>2025-07-15T12:17:33Z</dc:date>
    </item>
    <item>
      <title>Re: Assembly Mass Supression in Virtual Components</title>
      <link>https://forums.autodesk.com/t5/inventor-forum/assembly-mass-supression-in-virtual-components/m-p/13725749#M397779</link>
      <description>&lt;P&gt;&lt;SPAN style="background: var(--ck-color-mention-background); color: var(--ck-color-mention-text);"&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/11969940"&gt;@will.astill&lt;/a&gt;&lt;/SPAN&gt;&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;Hi, the INVGEN number that &lt;SPAN style="background: var(--ck-color-mention-background); color: var(--ck-color-mention-text);"&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/486618"&gt;@johnsonshiue&lt;/a&gt;&lt;/SPAN&gt; shared is an internal report for the project team to track these issues. &amp;nbsp;I'll leave it to Johnson to give any updates if they are available. &amp;nbsp;Thank you!&lt;/P&gt;</description>
      <pubDate>Tue, 15 Jul 2025 12:21:18 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-forum/assembly-mass-supression-in-virtual-components/m-p/13725749#M397779</guid>
      <dc:creator>CGBenner</dc:creator>
      <dc:date>2025-07-15T12:21:18Z</dc:date>
    </item>
    <item>
      <title>Re: Assembly Mass Supression in Virtual Components</title>
      <link>https://forums.autodesk.com/t5/inventor-forum/assembly-mass-supression-in-virtual-components/m-p/13725785#M397780</link>
      <description>&lt;P&gt;Thanks Chris.&lt;/P&gt;</description>
      <pubDate>Tue, 15 Jul 2025 12:46:33 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-forum/assembly-mass-supression-in-virtual-components/m-p/13725785#M397780</guid>
      <dc:creator>will.astill</dc:creator>
      <dc:date>2025-07-15T12:46:33Z</dc:date>
    </item>
    <item>
      <title>Re: Assembly Mass Supression in Virtual Components</title>
      <link>https://forums.autodesk.com/t5/inventor-forum/assembly-mass-supression-in-virtual-components/m-p/13726404#M397811</link>
      <description>&lt;P&gt;Hi Will,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I just check the latest status of&amp;nbsp;&lt;SPAN&gt;INVGEN-84503. Unfortunately, it has not been resolved. Please feel free to contact Autodesk Product Support and escalate it.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Many thanks!&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 15 Jul 2025 21:05:11 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-forum/assembly-mass-supression-in-virtual-components/m-p/13726404#M397811</guid>
      <dc:creator>johnsonshiue</dc:creator>
      <dc:date>2025-07-15T21:05:11Z</dc:date>
    </item>
    <item>
      <title>Re: Assembly Mass Supression in Virtual Components</title>
      <link>https://forums.autodesk.com/t5/inventor-forum/assembly-mass-supression-in-virtual-components/m-p/13727146#M397834</link>
      <description>&lt;P&gt;Thanks&amp;nbsp;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/486618"&gt;@johnsonshiue&lt;/a&gt;&amp;nbsp;- I'm happy to keep waiting, it's just something that will be a good fix rather than something that's a daily pain.&lt;/P&gt;&lt;P&gt;Thank you for checking for me though.&lt;/P&gt;</description>
      <pubDate>Wed, 16 Jul 2025 10:49:52 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-forum/assembly-mass-supression-in-virtual-components/m-p/13727146#M397834</guid>
      <dc:creator>will.astill</dc:creator>
      <dc:date>2025-07-16T10:49:52Z</dc:date>
    </item>
  </channel>
</rss>

