<?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: Rectangular vs Round Duct Dimensions in Revit MEP Forum</title>
    <link>https://forums.autodesk.com/t5/revit-mep-forum/rectangular-vs-round-duct-dimensions/m-p/8142245#M68663</link>
    <description>&lt;P&gt;Care to share said solution?&lt;/P&gt;</description>
    <pubDate>Thu, 19 Jul 2018 18:37:50 GMT</pubDate>
    <dc:creator>mastjaso</dc:creator>
    <dc:date>2018-07-19T18:37:50Z</dc:date>
    <item>
      <title>Rectangular vs Round Duct Dimensions</title>
      <link>https://forums.autodesk.com/t5/revit-mep-forum/rectangular-vs-round-duct-dimensions/m-p/6458237#M68657</link>
      <description>&lt;P&gt;I'm trying to create a single parameter that will read the largest duct dimension (regardless of rectangular or round) in a duct schedule. &amp;nbsp;Basically: Find the Greatest of Length, Width and Diameter, where some ducts have two of the three and some only have one.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;So far, every time I've mixed round duct diameter based parameters with the rectangular duct dimension parameters, I get a blank box.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm trying to save time by not writing the same downstream formulas twice (once for round and once for rectangular ducts). I want it to work like the Hydraulic Diameter and Equivalent Diameter parameters.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Has anyone seen this before or gotten around it?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks in advance!&lt;/P&gt;</description>
      <pubDate>Mon, 25 Jul 2016 18:12:53 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-mep-forum/rectangular-vs-round-duct-dimensions/m-p/6458237#M68657</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-07-25T18:12:53Z</dc:date>
    </item>
    <item>
      <title>Re: Rectangular vs Round Duct Dimensions</title>
      <link>https://forums.autodesk.com/t5/revit-mep-forum/rectangular-vs-round-duct-dimensions/m-p/6458892#M68658</link>
      <description>You need a Tag Family that reads the 'Size' property. This is common to round and rectangular duct. At the moment yours are reading width and depth or diameter.</description>
      <pubDate>Tue, 26 Jul 2016 00:23:43 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-mep-forum/rectangular-vs-round-duct-dimensions/m-p/6458892#M68658</guid>
      <dc:creator>CADmonkey_UK_Building_Services</dc:creator>
      <dc:date>2016-07-26T00:23:43Z</dc:date>
    </item>
    <item>
      <title>Re: Rectangular vs Round Duct Dimensions</title>
      <link>https://forums.autodesk.com/t5/revit-mep-forum/rectangular-vs-round-duct-dimensions/m-p/6459826#M68659</link>
      <description>&lt;P&gt;The Size parameter&amp;nbsp;seems to have a whole new set of challenges for creating formulas. &amp;nbsp;The rectangular ducts Size parameter is formatted as LxW and the round ducts Size parameters are Dø. &amp;nbsp;Is there a way to strip those down to just numbers usable in a formula to find the largest value? &amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This is for a schedule, not just a tag.&lt;/P&gt;</description>
      <pubDate>Tue, 26 Jul 2016 13:27:19 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-mep-forum/rectangular-vs-round-duct-dimensions/m-p/6459826#M68659</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-07-26T13:27:19Z</dc:date>
    </item>
    <item>
      <title>Re: Rectangular vs Round Duct Dimensions</title>
      <link>https://forums.autodesk.com/t5/revit-mep-forum/rectangular-vs-round-duct-dimensions/m-p/6459869#M68660</link>
      <description>&lt;P&gt;Try this with Schedule formalas::&lt;BR /&gt;1.Make a formula to derive the cross-sectional area from circular duct Diameter&lt;BR /&gt;2. Make another formula for Rectangular.Length &amp;amp; Width&lt;BR /&gt;3. Now you have the Surface Area the shape doesn't matter.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;*edit* I may have just re-discovered the 'area' property.&lt;/P&gt;</description>
      <pubDate>Tue, 26 Jul 2016 13:44:46 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-mep-forum/rectangular-vs-round-duct-dimensions/m-p/6459869#M68660</guid>
      <dc:creator>CADmonkey_UK_Building_Services</dc:creator>
      <dc:date>2016-07-26T13:44:46Z</dc:date>
    </item>
    <item>
      <title>Re: Rectangular vs Round Duct Dimensions</title>
      <link>https://forums.autodesk.com/t5/revit-mep-forum/rectangular-vs-round-duct-dimensions/m-p/6459950#M68661</link>
      <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm after the largest duct dimension. &amp;nbsp;Be it Length, Width or Diameter. &amp;nbsp;Surface Area&amp;nbsp;presents the same problem for combining the areas of round ducts into the same column as the areas of rectangular ducts.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm trying if(Diameter &amp;gt; 0, Diameter, if(Length &amp;gt; Width, Length, Width)). &amp;nbsp;This returns a blank box for all rectangular ducts and the diameter of all the round ducts.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Is there another way to write this?&lt;/P&gt;</description>
      <pubDate>Tue, 26 Jul 2016 14:11:09 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-mep-forum/rectangular-vs-round-duct-dimensions/m-p/6459950#M68661</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-07-26T14:11:09Z</dc:date>
    </item>
    <item>
      <title>Re: Rectangular vs Round Duct Dimensions</title>
      <link>https://forums.autodesk.com/t5/revit-mep-forum/rectangular-vs-round-duct-dimensions/m-p/6460062#M68662</link>
      <description>&lt;P&gt;I solved it.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks for responses.&lt;/P&gt;</description>
      <pubDate>Tue, 26 Jul 2016 14:46:59 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-mep-forum/rectangular-vs-round-duct-dimensions/m-p/6460062#M68662</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-07-26T14:46:59Z</dc:date>
    </item>
    <item>
      <title>Re: Rectangular vs Round Duct Dimensions</title>
      <link>https://forums.autodesk.com/t5/revit-mep-forum/rectangular-vs-round-duct-dimensions/m-p/8142245#M68663</link>
      <description>&lt;P&gt;Care to share said solution?&lt;/P&gt;</description>
      <pubDate>Thu, 19 Jul 2018 18:37:50 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-mep-forum/rectangular-vs-round-duct-dimensions/m-p/8142245#M68663</guid>
      <dc:creator>mastjaso</dc:creator>
      <dc:date>2018-07-19T18:37:50Z</dc:date>
    </item>
  </channel>
</rss>

