<?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: Model Parameters in 3D Part &amp; Assembly Design</title>
    <link>https://www.ptcusercommunity.com/t5/3D-Part-Assembly-Design/Model-Parameters/m-p/345249#M87347</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;In Relations:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;string_param = "1/4x4 SQ TUBE M@" + itos(angle_param) + "°"&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;assuming I've understood your requirement correctly (although you might have to use Symbol Palette in a drawing to get the degree sign, and clipboard it into the relation).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If it's not an integer it will, in fact, round up or down - I thought it only rounded down but I've just tested it (WF4) and itos(3.7) is "4"!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 19 Nov 2013 15:25:36 GMT</pubDate>
    <dc:creator>JonathanHodgson</dc:creator>
    <dc:date>2013-11-19T15:25:36Z</dc:date>
    <item>
      <title>Model Parameters</title>
      <link>https://www.ptcusercommunity.com/t5/3D-Part-Assembly-Design/Model-Parameters/m-p/345246#M87344</link>
      <description>I'm pretty sure I know the answer to this, but I'm going to ask anyway, hoping someone knows a way. Is there a way to have a string parameter look at a real number parameter.For example I have a string parameter called "PART_DESC" the value is "1/4x4 SQ TUBE M@X".</description>
      <pubDate>Sun, 13 Dec 2020 10:53:30 GMT</pubDate>
      <guid>https://www.ptcusercommunity.com/t5/3D-Part-Assembly-Design/Model-Parameters/m-p/345246#M87344</guid>
      <dc:creator>JamesBurcham</dc:creator>
      <dc:date>2020-12-13T10:53:30Z</dc:date>
    </item>
    <item>
      <title>Re: Model Parameters</title>
      <link>https://www.ptcusercommunity.com/t5/3D-Part-Assembly-Design/Model-Parameters/m-p/345247#M87345</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;There's a function called "itos" - &lt;STRONG&gt;I&lt;/STRONG&gt;nteger &lt;STRONG&gt;TO S&lt;/STRONG&gt;tring - which pretty much does what it says.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Getting it to round up is a little trickier (though entirely possible) but if your angle is an integer to start with, it should present no problem.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 Nov 2013 15:15:06 GMT</pubDate>
      <guid>https://www.ptcusercommunity.com/t5/3D-Part-Assembly-Design/Model-Parameters/m-p/345247#M87345</guid>
      <dc:creator>JonathanHodgson</dc:creator>
      <dc:date>2013-11-19T15:15:06Z</dc:date>
    </item>
    <item>
      <title>Re: Model Parameters</title>
      <link>https://www.ptcusercommunity.com/t5/3D-Part-Assembly-Design/Model-Parameters/m-p/345248#M87346</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I can make the angle parameter an integer. How would I write the string parameter to use the integer parameter? Remember I want the integer to replace the X at the end of the string. "4 X 1/4 SQ TUBE M1@X"&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 Nov 2013 15:18:36 GMT</pubDate>
      <guid>https://www.ptcusercommunity.com/t5/3D-Part-Assembly-Design/Model-Parameters/m-p/345248#M87346</guid>
      <dc:creator>JamesBurcham</dc:creator>
      <dc:date>2013-11-19T15:18:36Z</dc:date>
    </item>
    <item>
      <title>Re: Model Parameters</title>
      <link>https://www.ptcusercommunity.com/t5/3D-Part-Assembly-Design/Model-Parameters/m-p/345249#M87347</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;In Relations:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;string_param = "1/4x4 SQ TUBE M@" + itos(angle_param) + "°"&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;assuming I've understood your requirement correctly (although you might have to use Symbol Palette in a drawing to get the degree sign, and clipboard it into the relation).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If it's not an integer it will, in fact, round up or down - I thought it only rounded down but I've just tested it (WF4) and itos(3.7) is "4"!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 Nov 2013 15:25:36 GMT</pubDate>
      <guid>https://www.ptcusercommunity.com/t5/3D-Part-Assembly-Design/Model-Parameters/m-p/345249#M87347</guid>
      <dc:creator>JonathanHodgson</dc:creator>
      <dc:date>2013-11-19T15:25:36Z</dc:date>
    </item>
    <item>
      <title>Re: Model Parameters</title>
      <link>https://www.ptcusercommunity.com/t5/3D-Part-Assembly-Design/Model-Parameters/m-p/345250#M87348</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;That works perfectly and it rounding is far better then me writing a relation to round the angle. Knowing this I'm now wondering if I can incorporate this into a family table.&lt;/P&gt;&lt;P&gt;&lt;IMG __jive_id="61477" class="jive-image-thumbnail jive-image" onclick="" alt="Table.png" src="https://community.ptc.com/legacyfs/online/61477_Table.png" width="450" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 Nov 2013 15:34:35 GMT</pubDate>
      <guid>https://www.ptcusercommunity.com/t5/3D-Part-Assembly-Design/Model-Parameters/m-p/345250#M87348</guid>
      <dc:creator>JamesBurcham</dc:creator>
      <dc:date>2013-11-19T15:34:35Z</dc:date>
    </item>
    <item>
      <title>Re: Model Parameters</title>
      <link>https://www.ptcusercommunity.com/t5/3D-Part-Assembly-Design/Model-Parameters/m-p/345251#M87349</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I don't know whether that will work directly, but you can include a calculated parameter in a family table. The only drawback is that you have to open and regen each instance individually to update its parameter value, AFAIK - there's no way to update the whole table.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 Nov 2013 16:12:14 GMT</pubDate>
      <guid>https://www.ptcusercommunity.com/t5/3D-Part-Assembly-Design/Model-Parameters/m-p/345251#M87349</guid>
      <dc:creator>JonathanHodgson</dc:creator>
      <dc:date>2013-11-19T16:12:14Z</dc:date>
    </item>
    <item>
      <title>Re: Model Parameters</title>
      <link>https://www.ptcusercommunity.com/t5/3D-Part-Assembly-Design/Model-Parameters/m-p/345252#M87350</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I've been playing with this and so far I haven't found to do this in the family table. I was hoping to avoid using a calculated parameter, but I guess thats what I will have to do.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for the help.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 Nov 2013 16:15:14 GMT</pubDate>
      <guid>https://www.ptcusercommunity.com/t5/3D-Part-Assembly-Design/Model-Parameters/m-p/345252#M87350</guid>
      <dc:creator>JamesBurcham</dc:creator>
      <dc:date>2013-11-19T16:15:14Z</dc:date>
    </item>
    <item>
      <title>Re: Model Parameters</title>
      <link>https://www.ptcusercommunity.com/t5/3D-Part-Assembly-Design/Model-Parameters/m-p/345253#M87351</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The Family Table Tools-&amp;gt;Verify command should recalculate the whole table.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 Nov 2013 16:59:33 GMT</pubDate>
      <guid>https://www.ptcusercommunity.com/t5/3D-Part-Assembly-Design/Model-Parameters/m-p/345253#M87351</guid>
      <dc:creator>dschenken</dc:creator>
      <dc:date>2013-11-19T16:59:33Z</dc:date>
    </item>
    <item>
      <title>Re: Model Parameters</title>
      <link>https://www.ptcusercommunity.com/t5/3D-Part-Assembly-Design/Model-Parameters/m-p/345254#M87352</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I don't believe it recalculates relations and parameters in each instance, or if it does then they aren't stored back to the family table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;That was my experience last time I tried, anyway...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 Nov 2013 17:06:21 GMT</pubDate>
      <guid>https://www.ptcusercommunity.com/t5/3D-Part-Assembly-Design/Model-Parameters/m-p/345254#M87352</guid>
      <dc:creator>JonathanHodgson</dc:creator>
      <dc:date>2013-11-19T17:06:21Z</dc:date>
    </item>
    <item>
      <title>Re: Model Parameters</title>
      <link>https://www.ptcusercommunity.com/t5/3D-Part-Assembly-Design/Model-Parameters/m-p/345255#M87353</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It repopulated the family table correctly simply by verifying the instances. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 Nov 2013 17:08:32 GMT</pubDate>
      <guid>https://www.ptcusercommunity.com/t5/3D-Part-Assembly-Design/Model-Parameters/m-p/345255#M87353</guid>
      <dc:creator>JamesBurcham</dc:creator>
      <dc:date>2013-11-19T17:08:32Z</dc:date>
    </item>
  </channel>
</rss>

