<?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: Object with nested opening for slabs in GDL</title>
    <link>https://community.graphisoft.com/t5/GDL/Object-with-nested-opening-for-slabs/m-p/358004#M1317</link>
    <description>&lt;P&gt;Thank you, so I have to rely on SEO operations then?&lt;/P&gt;</description>
    <pubDate>Wed, 05 Oct 2022 07:42:14 GMT</pubDate>
    <dc:creator>jc4d</dc:creator>
    <dc:date>2022-10-05T07:42:14Z</dc:date>
    <item>
      <title>Object with nested opening for slabs</title>
      <link>https://community.graphisoft.com/t5/GDL/Object-with-nested-opening-for-slabs/m-p/358001#M1315</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;I have to create a chimney in gdl, the tricky part is that in the section drawings the hole has to be shown in the slabs. Therefore, I was thinking on using the opening tool to cut the slabs, but I would like to avoid placing 2 separate objects (chimney and opening).&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Is there a way to achieve it with a gdl object?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Juan&lt;/P&gt;</description>
      <pubDate>Wed, 05 Oct 2022 07:03:42 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/GDL/Object-with-nested-opening-for-slabs/m-p/358001#M1315</guid>
      <dc:creator>jc4d</dc:creator>
      <dc:date>2022-10-05T07:03:42Z</dc:date>
    </item>
    <item>
      <title>Re: Object with nested opening for slabs</title>
      <link>https://community.graphisoft.com/t5/GDL/Object-with-nested-opening-for-slabs/m-p/358003#M1316</link>
      <description>&lt;P&gt;I don't think you can call an opening into an object.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;But it is possible to script a PRISM_ where you want the hole to be cut in the floor.&lt;/P&gt;
&lt;P&gt;Obviously the chimney is hollow inside so a Solid Element Operation with subtraction from the slab will only remove the solid walls of the chimney.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You then contain the PRISM_ for the hole in a command that only activates when you perform an SEO.&lt;/P&gt;
&lt;P&gt;Something like this that I use all the time for my vanity basins ....&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;!GLOB_CONTEXT = 44
!! use prism to cut bowls when used in Solid Element Operation
if GLOB_CONTEXT &amp;gt; 40 and GLOB_CONTEXT &amp;lt; 50 then
	ADDz 0
	
	for i=1 to 32
	PUT cos(i*11.25)*0.220,sin(i*11.25)*0.220,15-2
	next i
	
	PRISM_ 32, 0.200,
			GET(NSP)
	DEL 1
endif
&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;This will cut an oval shaped hole but you can substitute a rectangular PRISM_.&lt;/P&gt;
&lt;P&gt;Just uncomment the first line to see the prism in the object preview as you script.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Make the prism the same size and height as the void in the chimney and you won't have to worry about figuring out floor heights.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Basically what you will be doing is creating a solid centre to the chimney that will only activate when an SEO is performed.&lt;/P&gt;
&lt;P&gt;Just a simple 'Subtraction' with the slabs as the targets and the chimney object as the operator.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Barry.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 05 Oct 2022 07:31:03 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/GDL/Object-with-nested-opening-for-slabs/m-p/358003#M1316</guid>
      <dc:creator>Barry Kelly</dc:creator>
      <dc:date>2022-10-05T07:31:03Z</dc:date>
    </item>
    <item>
      <title>Re: Object with nested opening for slabs</title>
      <link>https://community.graphisoft.com/t5/GDL/Object-with-nested-opening-for-slabs/m-p/358004#M1317</link>
      <description>&lt;P&gt;Thank you, so I have to rely on SEO operations then?&lt;/P&gt;</description>
      <pubDate>Wed, 05 Oct 2022 07:42:14 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/GDL/Object-with-nested-opening-for-slabs/m-p/358004#M1317</guid>
      <dc:creator>jc4d</dc:creator>
      <dc:date>2022-10-05T07:42:14Z</dc:date>
    </item>
    <item>
      <title>Re: Object with nested opening for slabs</title>
      <link>https://community.graphisoft.com/t5/GDL/Object-with-nested-opening-for-slabs/m-p/358005#M1318</link>
      <description>&lt;P&gt;That is the only way I can think to semi-automate it.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Otherwise it is use a separate un-associated opening as you had thought of before.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Barry.&lt;/P&gt;</description>
      <pubDate>Wed, 05 Oct 2022 08:00:41 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/GDL/Object-with-nested-opening-for-slabs/m-p/358005#M1318</guid>
      <dc:creator>Barry Kelly</dc:creator>
      <dc:date>2022-10-05T08:00:41Z</dc:date>
    </item>
    <item>
      <title>Re: Object with nested opening for slabs</title>
      <link>https://community.graphisoft.com/t5/GDL/Object-with-nested-opening-for-slabs/m-p/358006#M1319</link>
      <description>&lt;P&gt;Ouch, this workarounds could be avoided is skylights could be used on slabs as well.&lt;/P&gt;&lt;P&gt;I will have to ask the archictects what workflow they would prefer.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The idea behind this question is that when designing a building with more than 10k m2 and having n amount to chimneys, keeping track of SEO operations it would become a real nightmare. But yeah, your tip worked as expected &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I did try by selecting a simple generated block and use the opening tool with the magic wand, to get size from the block and place a opening with those dimensions, but didn't work. &lt;span class="lia-unicode-emoji" title=":thinking_face:"&gt;🤔&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;You wrote this (sorry quoting selected text desn't work):&lt;BR /&gt;"I don't think you can call an opening into an object"&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;So, what about calling an object into an opening?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Juan.&lt;/P&gt;</description>
      <pubDate>Wed, 05 Oct 2022 08:10:30 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/GDL/Object-with-nested-opening-for-slabs/m-p/358006#M1319</guid>
      <dc:creator>jc4d</dc:creator>
      <dc:date>2022-10-05T08:10:30Z</dc:date>
    </item>
    <item>
      <title>Re: Object with nested opening for slabs</title>
      <link>https://community.graphisoft.com/t5/GDL/Object-with-nested-opening-for-slabs/m-p/358007#M1320</link>
      <description>&lt;P&gt;&lt;a href="https://community.graphisoft.com/t5/user/viewprofilepage/user-id/12002"&gt;@jc4d&lt;/a&gt;&amp;nbsp;Depending on the detail of your chimney, have you considered using a Complex Profile with a Column to create the chimney rather than GDL? If the column uses stronger materials it should &lt;A href="https://help.Graphisoft.com/AC/26/INT/index.htm?rhcsh=1&amp;amp;rhnewwnd=0&amp;amp;rhmapid=#t=_AC26_Help%2F040_ElementsVB%2F040_ElementsVB-270.htm%23XREF_12462_Basic_Junction&amp;amp;rhsearch=merge%20elements&amp;amp;rhsyns=%20" target="_blank" rel="noopener"&gt;automatically intersect&lt;/A&gt; and form the required opening in the slab.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 05 Oct 2022 08:17:02 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/GDL/Object-with-nested-opening-for-slabs/m-p/358007#M1320</guid>
      <dc:creator>DGSketcher</dc:creator>
      <dc:date>2022-10-05T08:17:02Z</dc:date>
    </item>
    <item>
      <title>Re: Object with nested opening for slabs</title>
      <link>https://community.graphisoft.com/t5/GDL/Object-with-nested-opening-for-slabs/m-p/358010#M1321</link>
      <description>&lt;P&gt;Great tip, thank you.&lt;/P&gt;&lt;P&gt;The details are kind of high. If I could call a wall, column or a beam (thank you for the link to the chart), would be great since the hole is a basic rectangular shape but not the object itself.&lt;/P&gt;</description>
      <pubDate>Wed, 05 Oct 2022 08:57:29 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/GDL/Object-with-nested-opening-for-slabs/m-p/358010#M1321</guid>
      <dc:creator>jc4d</dc:creator>
      <dc:date>2022-10-05T08:57:29Z</dc:date>
    </item>
  </channel>
</rss>

