<?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: Is there a way to automatically dimension derived from a solid thru Manage/Make Components part? in Inventor Forum</title>
    <link>https://forums.autodesk.com/t5/inventor-forum/is-there-a-way-to-automatically-dimension-derived-from-a-solid/m-p/11165398#M76507</link>
    <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/593550"&gt;@inventor_man&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This rule combined with event triggers can be useful to you.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;SPAN&gt;Dim&lt;/SPAN&gt; &lt;SPAN&gt;Parte&lt;/SPAN&gt; &lt;SPAN&gt;As&lt;/SPAN&gt; &lt;SPAN&gt;PartDocument&lt;/SPAN&gt;
&lt;SPAN&gt;Dim&lt;/SPAN&gt; &lt;SPAN&gt;ParteComp&lt;/SPAN&gt; &lt;SPAN&gt;As&lt;/SPAN&gt; &lt;SPAN&gt;PartComponentDefinition&lt;/SPAN&gt;
&lt;SPAN&gt;Dim&lt;/SPAN&gt; &lt;SPAN&gt;Parametro&lt;/SPAN&gt; &lt;SPAN&gt;As&lt;/SPAN&gt; &lt;SPAN&gt;Inventor&lt;/SPAN&gt;.&lt;SPAN&gt;Parameter&lt;/SPAN&gt;
&lt;SPAN&gt;Dim&lt;/SPAN&gt; &lt;SPAN&gt;ParametroDeriv&lt;/SPAN&gt; &lt;SPAN&gt;As&lt;/SPAN&gt; &lt;SPAN&gt;DerivedParameter&lt;/SPAN&gt;
&lt;SPAN&gt;Dim&lt;/SPAN&gt; &lt;SPAN&gt;ParametrosDerivados&lt;/SPAN&gt; &lt;SPAN&gt;As&lt;/SPAN&gt; &lt;SPAN&gt;DerivedParameters&lt;/SPAN&gt;

&lt;SPAN&gt;Try&lt;/SPAN&gt;
		&lt;SPAN&gt;Parte&lt;/SPAN&gt; = &lt;SPAN&gt;ThisDoc&lt;/SPAN&gt;.&lt;SPAN&gt;Document&lt;/SPAN&gt;
		&lt;SPAN&gt;ParteComp&lt;/SPAN&gt; = &lt;SPAN&gt;Parte&lt;/SPAN&gt;.&lt;SPAN&gt;ComponentDefinition&lt;/SPAN&gt;
		&lt;SPAN&gt;PrametrosDerivados&lt;/SPAN&gt; = &lt;SPAN&gt;ParteComp&lt;/SPAN&gt;.&lt;SPAN&gt;Parameters&lt;/SPAN&gt;.&lt;SPAN&gt;DerivedParameterTables&lt;/SPAN&gt;.&lt;SPAN&gt;Item&lt;/SPAN&gt;(1).&lt;SPAN&gt;DerivedParameters&lt;/SPAN&gt;
		&lt;SPAN&gt;ParametroDeriv&lt;/SPAN&gt; = &lt;SPAN&gt;PrametrosDerivados&lt;/SPAN&gt;.&lt;SPAN&gt;Item&lt;/SPAN&gt;(1)
		
		&lt;SPAN&gt;For&lt;/SPAN&gt; &lt;SPAN&gt;Each&lt;/SPAN&gt; &lt;SPAN&gt;ParametroDeriv&lt;/SPAN&gt; &lt;SPAN&gt;In&lt;/SPAN&gt; &lt;SPAN&gt;PrametrosDerivados&lt;/SPAN&gt;
			
			&lt;SPAN&gt;For&lt;/SPAN&gt; &lt;SPAN&gt;Each&lt;/SPAN&gt; &lt;SPAN&gt;Parametro&lt;/SPAN&gt; &lt;SPAN&gt;In&lt;/SPAN&gt; &lt;SPAN&gt;ParteComp&lt;/SPAN&gt;.&lt;SPAN&gt;Parameters&lt;/SPAN&gt;.&lt;SPAN&gt;UserParameters&lt;/SPAN&gt;
				
				&lt;SPAN&gt;If&lt;/SPAN&gt; &lt;SPAN&gt;Left&lt;/SPAN&gt;(&lt;SPAN&gt;ParametroDeriv&lt;/SPAN&gt;.&lt;SPAN&gt;Name&lt;/SPAN&gt;,1) = &lt;SPAN&gt;Parametro&lt;/SPAN&gt;.&lt;SPAN&gt;Name&lt;/SPAN&gt; &lt;SPAN&gt;Then&lt;/SPAN&gt;
					&lt;SPAN&gt;Parametro&lt;/SPAN&gt;.&lt;SPAN&gt;Expression&lt;/SPAN&gt; =&lt;SPAN&gt;ParametroDeriv&lt;/SPAN&gt;.&lt;SPAN&gt;Name&lt;/SPAN&gt;
				&lt;SPAN&gt;End&lt;/SPAN&gt; &lt;SPAN&gt;If&lt;/SPAN&gt;
				
			&lt;SPAN&gt;Next&lt;/SPAN&gt;
			
		&lt;SPAN&gt;Next&lt;/SPAN&gt;
&lt;SPAN&gt;Catch&lt;/SPAN&gt;
	
&lt;SPAN&gt;End&lt;/SPAN&gt; &lt;SPAN&gt;Try&lt;/SPAN&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I enclose files applying what is detailed here, in my case the parameter names I used are L, U, P, it does not allow me to use L, W, T due to conflict with the unit system.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;In your template, in addition to this rule, you must have the previously generated user parameters (L,W,T) all with a value of 0.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;You will also need to configure the event trigger so that this rule is executed automatically, in this case I suggest you configure "Part geometry change".&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;When you derive your reference file, make sure to export the parameters you mention (L,W,T)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This rule will be based on the first letter of the name of each parameter, to compare derived parameters with user parameters.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Inventor by default, if the parameter name already exists, adds _1 or the corresponding number, that is, the user parameters would be L, W, T and the derived parameters would be L_1, W_1, T_1.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I hope you find it useful, if so, please mark it as answer.&lt;/P&gt;&lt;P&gt;Have a great day!&lt;/P&gt;</description>
    <pubDate>Thu, 12 May 2022 18:38:25 GMT</pubDate>
    <dc:creator>MateriaGris</dc:creator>
    <dc:date>2022-05-12T18:38:25Z</dc:date>
    <item>
      <title>Is there a way to automatically dimension derived from a solid thru Manage/Make Components part?</title>
      <link>https://forums.autodesk.com/t5/inventor-forum/is-there-a-way-to-automatically-dimension-derived-from-a-solid/m-p/11164941#M76505</link>
      <description>&lt;P&gt;The way we create sometimes our parts is to create solids within an .itp part for preliminary drawings and then convert each solid into separate .ipt by using Manage/Make Components option.&amp;nbsp;&lt;/P&gt;&lt;P&gt;We use a template that uses L, W and T parameters and when creating a part we use the template so in the end the part derived from solid is based on the template with L, W, T set up for BOM. The problem is the derived part comes with 0's and in order to get proper dimensions to the part we need to draw sketches on it, dimension it and then use numbers on the sketched for L, W and T. Is there a way to automatically dimension derived from a solid thru&amp;nbsp;Manage/Make Components part?&lt;/P&gt;</description>
      <pubDate>Thu, 12 May 2022 15:42:49 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-forum/is-there-a-way-to-automatically-dimension-derived-from-a-solid/m-p/11164941#M76505</guid>
      <dc:creator>inventor_man</dc:creator>
      <dc:date>2022-05-12T15:42:49Z</dc:date>
    </item>
    <item>
      <title>Re: Is there a way to automatically dimension derived from a solid thru Manage/Make Components part?</title>
      <link>https://forums.autodesk.com/t5/inventor-forum/is-there-a-way-to-automatically-dimension-derived-from-a-solid/m-p/11165265#M76506</link>
      <description>&lt;P&gt;You could export the parameters from the original part to the derived part so the values are accessible in the new part.&amp;nbsp; You won't be able to change them in the new part, but you can use them for equations, iProperties, etc..&lt;/P&gt;</description>
      <pubDate>Thu, 12 May 2022 17:49:57 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-forum/is-there-a-way-to-automatically-dimension-derived-from-a-solid/m-p/11165265#M76506</guid>
      <dc:creator>andrewiv</dc:creator>
      <dc:date>2022-05-12T17:49:57Z</dc:date>
    </item>
    <item>
      <title>Re: Is there a way to automatically dimension derived from a solid thru Manage/Make Components part?</title>
      <link>https://forums.autodesk.com/t5/inventor-forum/is-there-a-way-to-automatically-dimension-derived-from-a-solid/m-p/11165398#M76507</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/593550"&gt;@inventor_man&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This rule combined with event triggers can be useful to you.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;SPAN&gt;Dim&lt;/SPAN&gt; &lt;SPAN&gt;Parte&lt;/SPAN&gt; &lt;SPAN&gt;As&lt;/SPAN&gt; &lt;SPAN&gt;PartDocument&lt;/SPAN&gt;
&lt;SPAN&gt;Dim&lt;/SPAN&gt; &lt;SPAN&gt;ParteComp&lt;/SPAN&gt; &lt;SPAN&gt;As&lt;/SPAN&gt; &lt;SPAN&gt;PartComponentDefinition&lt;/SPAN&gt;
&lt;SPAN&gt;Dim&lt;/SPAN&gt; &lt;SPAN&gt;Parametro&lt;/SPAN&gt; &lt;SPAN&gt;As&lt;/SPAN&gt; &lt;SPAN&gt;Inventor&lt;/SPAN&gt;.&lt;SPAN&gt;Parameter&lt;/SPAN&gt;
&lt;SPAN&gt;Dim&lt;/SPAN&gt; &lt;SPAN&gt;ParametroDeriv&lt;/SPAN&gt; &lt;SPAN&gt;As&lt;/SPAN&gt; &lt;SPAN&gt;DerivedParameter&lt;/SPAN&gt;
&lt;SPAN&gt;Dim&lt;/SPAN&gt; &lt;SPAN&gt;ParametrosDerivados&lt;/SPAN&gt; &lt;SPAN&gt;As&lt;/SPAN&gt; &lt;SPAN&gt;DerivedParameters&lt;/SPAN&gt;

&lt;SPAN&gt;Try&lt;/SPAN&gt;
		&lt;SPAN&gt;Parte&lt;/SPAN&gt; = &lt;SPAN&gt;ThisDoc&lt;/SPAN&gt;.&lt;SPAN&gt;Document&lt;/SPAN&gt;
		&lt;SPAN&gt;ParteComp&lt;/SPAN&gt; = &lt;SPAN&gt;Parte&lt;/SPAN&gt;.&lt;SPAN&gt;ComponentDefinition&lt;/SPAN&gt;
		&lt;SPAN&gt;PrametrosDerivados&lt;/SPAN&gt; = &lt;SPAN&gt;ParteComp&lt;/SPAN&gt;.&lt;SPAN&gt;Parameters&lt;/SPAN&gt;.&lt;SPAN&gt;DerivedParameterTables&lt;/SPAN&gt;.&lt;SPAN&gt;Item&lt;/SPAN&gt;(1).&lt;SPAN&gt;DerivedParameters&lt;/SPAN&gt;
		&lt;SPAN&gt;ParametroDeriv&lt;/SPAN&gt; = &lt;SPAN&gt;PrametrosDerivados&lt;/SPAN&gt;.&lt;SPAN&gt;Item&lt;/SPAN&gt;(1)
		
		&lt;SPAN&gt;For&lt;/SPAN&gt; &lt;SPAN&gt;Each&lt;/SPAN&gt; &lt;SPAN&gt;ParametroDeriv&lt;/SPAN&gt; &lt;SPAN&gt;In&lt;/SPAN&gt; &lt;SPAN&gt;PrametrosDerivados&lt;/SPAN&gt;
			
			&lt;SPAN&gt;For&lt;/SPAN&gt; &lt;SPAN&gt;Each&lt;/SPAN&gt; &lt;SPAN&gt;Parametro&lt;/SPAN&gt; &lt;SPAN&gt;In&lt;/SPAN&gt; &lt;SPAN&gt;ParteComp&lt;/SPAN&gt;.&lt;SPAN&gt;Parameters&lt;/SPAN&gt;.&lt;SPAN&gt;UserParameters&lt;/SPAN&gt;
				
				&lt;SPAN&gt;If&lt;/SPAN&gt; &lt;SPAN&gt;Left&lt;/SPAN&gt;(&lt;SPAN&gt;ParametroDeriv&lt;/SPAN&gt;.&lt;SPAN&gt;Name&lt;/SPAN&gt;,1) = &lt;SPAN&gt;Parametro&lt;/SPAN&gt;.&lt;SPAN&gt;Name&lt;/SPAN&gt; &lt;SPAN&gt;Then&lt;/SPAN&gt;
					&lt;SPAN&gt;Parametro&lt;/SPAN&gt;.&lt;SPAN&gt;Expression&lt;/SPAN&gt; =&lt;SPAN&gt;ParametroDeriv&lt;/SPAN&gt;.&lt;SPAN&gt;Name&lt;/SPAN&gt;
				&lt;SPAN&gt;End&lt;/SPAN&gt; &lt;SPAN&gt;If&lt;/SPAN&gt;
				
			&lt;SPAN&gt;Next&lt;/SPAN&gt;
			
		&lt;SPAN&gt;Next&lt;/SPAN&gt;
&lt;SPAN&gt;Catch&lt;/SPAN&gt;
	
&lt;SPAN&gt;End&lt;/SPAN&gt; &lt;SPAN&gt;Try&lt;/SPAN&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I enclose files applying what is detailed here, in my case the parameter names I used are L, U, P, it does not allow me to use L, W, T due to conflict with the unit system.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;In your template, in addition to this rule, you must have the previously generated user parameters (L,W,T) all with a value of 0.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;You will also need to configure the event trigger so that this rule is executed automatically, in this case I suggest you configure "Part geometry change".&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;When you derive your reference file, make sure to export the parameters you mention (L,W,T)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This rule will be based on the first letter of the name of each parameter, to compare derived parameters with user parameters.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Inventor by default, if the parameter name already exists, adds _1 or the corresponding number, that is, the user parameters would be L, W, T and the derived parameters would be L_1, W_1, T_1.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I hope you find it useful, if so, please mark it as answer.&lt;/P&gt;&lt;P&gt;Have a great day!&lt;/P&gt;</description>
      <pubDate>Thu, 12 May 2022 18:38:25 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-forum/is-there-a-way-to-automatically-dimension-derived-from-a-solid/m-p/11165398#M76507</guid>
      <dc:creator>MateriaGris</dc:creator>
      <dc:date>2022-05-12T18:38:25Z</dc:date>
    </item>
    <item>
      <title>Re: Is there a way to automatically dimension derived from a solid thru Manage/Make Components part?</title>
      <link>https://forums.autodesk.com/t5/inventor-forum/is-there-a-way-to-automatically-dimension-derived-from-a-solid/m-p/11165450#M76508</link>
      <description>&lt;P&gt;Following up on &lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/242037"&gt;@andrewiv&lt;/a&gt; 's post, here is how you export parameters from the master file:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="SBix26_0-1652382363118.png" style="width: 999px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1066534i345D84876ADD60B8/image-size/large?v=v2&amp;amp;px=999" role="button" title="SBix26_0-1652382363118.png" alt="SBix26_0-1652382363118.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;Parameters checked for export in the master file are then available in the Derive Part dialog to be selected for deriving into the part file.&lt;/P&gt;
&lt;HR /&gt;
&lt;P style="font-size: 14px;"&gt;&lt;STRONG&gt;Sam B&lt;/STRONG&gt;&lt;/P&gt;
&lt;P style="font-size: 11px;"&gt;Inventor Pro 2023.0.1 | Windows 10 Home 21H2&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="autodesk-expert-elite-member-logo-1line-rgb-black.png" style="width: 300px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/962943iDF6D27C26CA3B56D/image-size/small?v=v2&amp;amp;px=200" role="button" title="autodesk-expert-elite-member-logo-1line-rgb-black.png" alt="autodesk-expert-elite-member-logo-1line-rgb-black.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 12 May 2022 19:08:13 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-forum/is-there-a-way-to-automatically-dimension-derived-from-a-solid/m-p/11165450#M76508</guid>
      <dc:creator>SBix26</dc:creator>
      <dc:date>2022-05-12T19:08:13Z</dc:date>
    </item>
  </channel>
</rss>

