<?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: Dynamo script help! in Revit MEP Forum</title>
    <link>https://forums.autodesk.com/t5/revit-mep-forum/dynamo-script-help/m-p/12749349#M5149</link>
    <description>&lt;P&gt;Gotcha I attached the whole workspace below.&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Thu, 02 May 2024 20:49:58 GMT</pubDate>
    <dc:creator>avalentineT4CX6</dc:creator>
    <dc:date>2024-05-02T20:49:58Z</dc:date>
    <item>
      <title>Dynamo script help!</title>
      <link>https://forums.autodesk.com/t5/revit-mep-forum/dynamo-script-help/m-p/12749262#M5144</link>
      <description>&lt;P&gt;I am trying to create a script that places points on the bottom of conduit automatically, at a certain distance, bends, etc. I was able to create a script to place points on duct bank. Has anyone done one for conduit?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 02 May 2024 20:07:53 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-mep-forum/dynamo-script-help/m-p/12749262#M5144</guid>
      <dc:creator>avalentineT4CX6</dc:creator>
      <dc:date>2024-05-02T20:07:53Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamo script help!</title>
      <link>https://forums.autodesk.com/t5/revit-mep-forum/dynamo-script-help/m-p/12749287#M5145</link>
      <description>&lt;P&gt;Post what you have so far for duct banks and we can help modify it to be applicable to conduits.&lt;/P&gt;&lt;P&gt;Is this for standard Revit design or for FabricationMEP?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;What do you mean by placing points? Spot Elevations? Insert locations for hanger families?&lt;/P&gt;</description>
      <pubDate>Thu, 02 May 2024 20:21:52 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-mep-forum/dynamo-script-help/m-p/12749287#M5145</guid>
      <dc:creator>RLY_15</dc:creator>
      <dc:date>2024-05-02T20:21:52Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamo script help!</title>
      <link>https://forums.autodesk.com/t5/revit-mep-forum/dynamo-script-help/m-p/12749307#M5146</link>
      <description>&lt;P&gt;Here are some snips&lt;/P&gt;</description>
      <pubDate>Thu, 02 May 2024 20:27:55 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-mep-forum/dynamo-script-help/m-p/12749307#M5146</guid>
      <dc:creator>avalentineT4CX6</dc:creator>
      <dc:date>2024-05-02T20:27:55Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamo script help!</title>
      <link>https://forums.autodesk.com/t5/revit-mep-forum/dynamo-script-help/m-p/12749311#M5147</link>
      <description>&lt;P&gt;Rest of snips&lt;/P&gt;</description>
      <pubDate>Thu, 02 May 2024 20:28:30 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-mep-forum/dynamo-script-help/m-p/12749311#M5147</guid>
      <dc:creator>avalentineT4CX6</dc:creator>
      <dc:date>2024-05-02T20:28:30Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamo script help!</title>
      <link>https://forums.autodesk.com/t5/revit-mep-forum/dynamo-script-help/m-p/12749337#M5148</link>
      <description>&lt;P&gt;For future reference, there's an Export Workspace as Image button in Dynamo that will get you the entire script in one file. You just need to zoom in close enough to see the node titles, export, and everything will be readable.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;At a rough glance, it looks like you're familiar with geometry workflows and are currently working with surfaces.&lt;/P&gt;&lt;P&gt;Conduits should be much simpler than what you've done so far, because conduits have their locations stored as Line entities.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;You should be able to just GetLocation a conduit, use your PointAtChordLength logic, get the Outside Diameter parameter value, and just translate the Point list down the Z-axis based on the Outside Radius:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="robert2JCCH_0-1714682496528.png" style="width: 600px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1357698iF91318ECC8FC0093/image-size/medium?v=v2&amp;amp;px=400" role="button" title="robert2JCCH_0-1714682496528.png" alt="robert2JCCH_0-1714682496528.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;--------------------------------&lt;/P&gt;&lt;P&gt;As for bends, those are part of the Conduit fittings category. I don't know enough about electrical families, but the most basic bend family has an insertion point that doesn't align to a spot on the curve, so a GetLocation method isn't really going to work here.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If it's a symmetrical bend, I would think that you could find the centerpoint of the fitting using the Geometry of the family and the Solid.Centroid node, then apply the same Z-offset method as the pipes. If it's asymmetrical, are you still supporting it at the centroid? I'd have to default to you on that one.&lt;/P&gt;</description>
      <pubDate>Thu, 02 May 2024 20:45:26 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-mep-forum/dynamo-script-help/m-p/12749337#M5148</guid>
      <dc:creator>RLY_15</dc:creator>
      <dc:date>2024-05-02T20:45:26Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamo script help!</title>
      <link>https://forums.autodesk.com/t5/revit-mep-forum/dynamo-script-help/m-p/12749349#M5149</link>
      <description>&lt;P&gt;Gotcha I attached the whole workspace below.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 02 May 2024 20:49:58 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-mep-forum/dynamo-script-help/m-p/12749349#M5149</guid>
      <dc:creator>avalentineT4CX6</dc:creator>
      <dc:date>2024-05-02T20:49:58Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamo script help!</title>
      <link>https://forums.autodesk.com/t5/revit-mep-forum/dynamo-script-help/m-p/12749353#M5150</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/14391494"&gt;@avalentineT4CX6&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;&lt;P&gt;Gotcha I attached the whole workspace below.&amp;nbsp;&lt;/P&gt;&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;Yep, you just need to zoom in close enough to read the node titles before the export - otherwise all the text blanks out like in that image. Don't worry about not being able to see the whole script before you export - the command captures everything, even if it's not on your monitor display.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 02 May 2024 20:52:06 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-mep-forum/dynamo-script-help/m-p/12749353#M5150</guid>
      <dc:creator>RLY_15</dc:creator>
      <dc:date>2024-05-02T20:52:06Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamo script help!</title>
      <link>https://forums.autodesk.com/t5/revit-mep-forum/dynamo-script-help/m-p/12749360#M5151</link>
      <description>&lt;P&gt;Aghh, I see now. That is neat. Learn something new every day.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 02 May 2024 20:56:10 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-mep-forum/dynamo-script-help/m-p/12749360#M5151</guid>
      <dc:creator>avalentineT4CX6</dc:creator>
      <dc:date>2024-05-02T20:56:10Z</dc:date>
    </item>
  </channel>
</rss>

