<?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: Getting Floor Gross Area in Revit API Forum</title>
    <link>https://forums.autodesk.com/t5/revit-api-forum/getting-floor-gross-area/m-p/9820097#M73606</link>
    <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I have kind of the same problem. However, I would like to get the total floor area for enclosed part of the building. i.e. balconies or decks to be excluded.&lt;/P&gt;&lt;P&gt;My first thought was to exclude the floors which are not fully bounded by elements like ceiling and walls, which I couldn't manage it.&lt;/P&gt;&lt;P&gt;Then I switched to second option, to get the outmost walls of the building and then calculating the area enclosed by the walls. Which I still need to think more how to apply it.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Does anyone have an idea of how to retrieve total floor area for enclosed part of the building? or any suggestion how to apply my thoughts.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Best Regards,&lt;/P&gt;&lt;P&gt;Soheila&lt;/P&gt;</description>
    <pubDate>Fri, 23 Oct 2020 09:33:48 GMT</pubDate>
    <dc:creator>soheila.bigdeli</dc:creator>
    <dc:date>2020-10-23T09:33:48Z</dc:date>
    <item>
      <title>Getting Floor Gross Area</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/getting-floor-gross-area/m-p/5527432#M73602</link>
      <description>&lt;P&gt;Using the API, I want to be able to get the Floor Gross Area (outside of exterior wall) and the Floor Rentable/Measured Area (inside of exterior wall).&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;First, is it required to have Area Plans to get these values?&amp;nbsp; If not, where can they be queried from?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If it is required to have two Area Plans to get these values, is there an example of finding the appropriate area plans for a level, and how to get the area value from them?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you in advance.&lt;/P&gt;&lt;P&gt;-Ed&lt;/P&gt;</description>
      <pubDate>Wed, 04 Mar 2015 02:03:29 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/getting-floor-gross-area/m-p/5527432#M73602</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-03-04T02:03:29Z</dc:date>
    </item>
    <item>
      <title>Re: Getting Floor Gross Area</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/getting-floor-gross-area/m-p/5527580#M73603</link>
      <description>&lt;P&gt;Dear Ed,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Have you explored what support Revit provides for this through the user interface?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;It would help a lot to know the optimal UI workflow and best practices before diving into the API side of things.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;In general, if a feature is not available in the Revit product manually through the user interface, then the Revit API will not provide it either.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Therefore, before thinking about possibly automating any task, it is important to explore the possibilities and develop an optimal solution through the user interface first. For that, I would suggest asking an application engineer, product usage expert, or product support for help on finding a suitable workflow and laying down best practices.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I can think of various way to achieve what you are asking for just analysing the geometry, but that might be complex and would certainly generate different results than the 'official' Revit UI ones.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Actually, on second thoughts, retrieving the gross floor area programmatically seems like a&amp;nbsp;very simple task.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;First, determine the top or bottom face of the floor slab:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="http://thebuildingcoder.typepad.com/blog/2008/10/slab-boundary.html" target="_blank"&gt;http://thebuildingcoder.typepad.com/blog/2008/10/slab-boundary.html&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Next, calculate its area:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="http://thebuildingcoder.typepad.com/blog/2008/12/2d-polygon-areas-and-outer-loop.html" target="_blank"&gt;http://thebuildingcoder.typepad.com/blog/2008/12/2d-polygon-areas-and-outer-loop.html&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;For the net area, determine the bottom faces of all the walls that you wish to subtract:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="http://thebuildingcoder.typepad.com/blog/2009/08/bottom-face-of-a-wall.html" target="_blank"&gt;http://thebuildingcoder.typepad.com/blog/2009/08/bottom-face-of-a-wall.html&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Then subtract them.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;But, as said, I would explore the officially supported UI possibilities fully before resorting to pure geometrical analysis.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Cheers,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Jeremy&lt;/P&gt;</description>
      <pubDate>Wed, 04 Mar 2015 07:21:49 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/getting-floor-gross-area/m-p/5527580#M73603</guid>
      <dc:creator>jeremytammik</dc:creator>
      <dc:date>2015-03-04T07:21:49Z</dc:date>
    </item>
    <item>
      <title>Re: Getting Floor Gross Area</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/getting-floor-gross-area/m-p/5528284#M73604</link>
      <description>&lt;P&gt;Thank you Jeremy,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I agree with you, that I would rather not calculate it.&amp;nbsp; For the Gross area (outside of wall) there aren't too many options on how it is calculated, but for the Rentable/Usable (inside of wall) there are a number of options.&amp;nbsp; So, I guess my question becomes more of...&amp;nbsp; How would I retrieve that area using the API?&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If there is an alternate of using an Area Plan, I would like to know about it.&lt;/P&gt;&lt;P&gt;If I need to require the user to select an Area Plan I can do that, but given the selected Area Plan, how do I retrieve the area value using the API?&amp;nbsp; (from the UI, I can see it in a label)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks again,&lt;/P&gt;&lt;P&gt;-Ed&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 04 Mar 2015 16:53:56 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/getting-floor-gross-area/m-p/5528284#M73604</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-03-04T16:53:56Z</dc:date>
    </item>
    <item>
      <title>Re: Getting Floor Gross Area</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/getting-floor-gross-area/m-p/5529381#M73605</link>
      <description>&lt;P&gt;Dear Ed,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Aha, you can see it in a label. That is good news. The next step is to use RevitLookup, determine what element that label belongs to, and which property or parameter value it is stored in. Then you can retrieve it programmatically.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Cheers,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Jeremy&lt;/P&gt;</description>
      <pubDate>Thu, 05 Mar 2015 12:41:40 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/getting-floor-gross-area/m-p/5529381#M73605</guid>
      <dc:creator>jeremytammik</dc:creator>
      <dc:date>2015-03-05T12:41:40Z</dc:date>
    </item>
    <item>
      <title>Re: Getting Floor Gross Area</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/getting-floor-gross-area/m-p/9820097#M73606</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I have kind of the same problem. However, I would like to get the total floor area for enclosed part of the building. i.e. balconies or decks to be excluded.&lt;/P&gt;&lt;P&gt;My first thought was to exclude the floors which are not fully bounded by elements like ceiling and walls, which I couldn't manage it.&lt;/P&gt;&lt;P&gt;Then I switched to second option, to get the outmost walls of the building and then calculating the area enclosed by the walls. Which I still need to think more how to apply it.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Does anyone have an idea of how to retrieve total floor area for enclosed part of the building? or any suggestion how to apply my thoughts.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Best Regards,&lt;/P&gt;&lt;P&gt;Soheila&lt;/P&gt;</description>
      <pubDate>Fri, 23 Oct 2020 09:33:48 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/getting-floor-gross-area/m-p/9820097#M73606</guid>
      <dc:creator>soheila.bigdeli</dc:creator>
      <dc:date>2020-10-23T09:33:48Z</dc:date>
    </item>
    <item>
      <title>Re: Getting Floor Gross Area</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/getting-floor-gross-area/m-p/9827168#M73607</link>
      <description>&lt;P&gt;Revit does support&amp;nbsp;creating rooms in enclosed regions:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://forums.autodesk.com/t5/revit-api-forum/enclosed-region-using-room-separator/m-p/6600192" target="_blank"&gt;https://forums.autodesk.com/t5/revit-api-forum/enclosed-region-using-room-separator/m-p/6600192&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Can that help?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 27 Oct 2020 12:58:01 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/getting-floor-gross-area/m-p/9827168#M73607</guid>
      <dc:creator>jeremytammik</dc:creator>
      <dc:date>2020-10-27T12:58:01Z</dc:date>
    </item>
  </channel>
</rss>

