<?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 Steeldeck roof problem in Modeling</title>
    <link>https://community.graphisoft.com/t5/Modeling/Steeldeck-roof-problem/m-p/135091#M72196</link>
    <description>&lt;DIV class="actalk-migrated-content"&gt;&lt;T&gt;Hi,&lt;BR /&gt;
&lt;BR /&gt;
i'm having a problem by drawing a steeldeck roof on an industrial building.&lt;BR /&gt;
&lt;BR /&gt;
I tried to draw it by the object 'Profiled Sheet Inc 13' from the archicad library 2010. The problem I have is the direction of the slope. I want the sheets to lay in the other direction put I can't find how to do this?&lt;BR /&gt;
&lt;BR /&gt;
You can see on the image included what I mean. The sheets should lay in the direction of the red lines.&lt;BR /&gt;
&lt;BR /&gt;
Thanks!!&lt;/T&gt;&lt;/DIV&gt;&lt;BR /&gt;&lt;IMG src="http://community.graphisoft.com/t5/image/serverpage/image-id/73609i534322C6AD3AE575/image-size/large?v=v2&amp;amp;px=999" border="0" alt="steeldeck 2.jpg" title="steeldeck 2.jpg" /&gt;</description>
    <pubDate>Tue, 23 May 2023 12:53:26 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2023-05-23T12:53:26Z</dc:date>
    <item>
      <title>Steeldeck roof problem</title>
      <link>https://community.graphisoft.com/t5/Modeling/Steeldeck-roof-problem/m-p/135091#M72196</link>
      <description>&lt;DIV class="actalk-migrated-content"&gt;&lt;T&gt;Hi,&lt;BR /&gt;
&lt;BR /&gt;
i'm having a problem by drawing a steeldeck roof on an industrial building.&lt;BR /&gt;
&lt;BR /&gt;
I tried to draw it by the object 'Profiled Sheet Inc 13' from the archicad library 2010. The problem I have is the direction of the slope. I want the sheets to lay in the other direction put I can't find how to do this?&lt;BR /&gt;
&lt;BR /&gt;
You can see on the image included what I mean. The sheets should lay in the direction of the red lines.&lt;BR /&gt;
&lt;BR /&gt;
Thanks!!&lt;/T&gt;&lt;/DIV&gt;&lt;BR /&gt;&lt;IMG src="http://community.graphisoft.com/t5/image/serverpage/image-id/73609i534322C6AD3AE575/image-size/large?v=v2&amp;amp;px=999" border="0" alt="steeldeck 2.jpg" title="steeldeck 2.jpg" /&gt;</description>
      <pubDate>Tue, 23 May 2023 12:53:26 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Modeling/Steeldeck-roof-problem/m-p/135091#M72196</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2023-05-23T12:53:26Z</dc:date>
    </item>
    <item>
      <title>Re: Steeldeck roof problem</title>
      <link>https://community.graphisoft.com/t5/Modeling/Steeldeck-roof-problem/m-p/135092#M72197</link>
      <description>Hy Dave&lt;BR /&gt;
&lt;BR /&gt;
This object needs an additional parameter for the "rotation about longitudinal axis". Maybe someone of the GDL gurus on this forum can do it?</description>
      <pubDate>Sat, 20 Nov 2010 09:10:41 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Modeling/Steeldeck-roof-problem/m-p/135092#M72197</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2010-11-20T09:10:41Z</dc:date>
    </item>
    <item>
      <title>Re: Steeldeck roof problem</title>
      <link>https://community.graphisoft.com/t5/Modeling/Steeldeck-roof-problem/m-p/135093#M72198</link>
      <description>Dave:&lt;BR /&gt;
&lt;BR /&gt;
Strangely, the code is in the 3D Script as an option, but was not implemented (I don't know if this wall because there were odd problems with certain parameter settings that could cause issues the author did not want to work through). Open the library part, Save As.. a new object (to preserve the existing object), go to the 3D Script, and go to line 176 where you will see:
&lt;PRE&gt;!if hor = 0 then
	do
		extrude 5,0,0,gesamt,48,
				sumw,0,0,
				sumw+wl/4,h,0,
				sumw+wl/2,h,0,
				sumw+wl*3/4,0,0,
				sumw+wl,0,0

		sumw=sumw+wl

	while sumw&amp;lt;v
!else
!	rotx 90
!	roty 90
!	do 
!		extrude 5,0,0,v,48,
!			0,sumw,0,
!			h,sumw+wl/4,0,
!			h,sumw+wl/2,0,
!			0,sumw+wl*3/4,0,
!			0,sumw+wl,0
!
!		sumw=sumw+wl
!
!	while sumw&amp;lt;gesamt
!endif&lt;/PRE&gt;

This is an if/then statement for the direction of the corrugations in the sheet. The simplest solution is to reverse the commented out sections so the code reads like this:
&lt;PRE&gt;!if hor = 0 then
!	do
!		extrude 5,0,0,gesamt,48,
!				sumw,0,0,
!				sumw+wl/4,h,0,
!				sumw+wl/2,h,0,
!				sumw+wl*3/4,0,0,
!				sumw+wl,0,0
!
!		sumw=sumw+wl
!
!	while sumw&amp;lt;v
!else
	rotx 90
	roty 90
	do 
		extrude 5,0,0,v,48,
			0,sumw,0,
			h,sumw+wl/4,0,
			h,sumw+wl/2,0,
			0,sumw+wl*3/4,0,
			0,sumw+wl,0

		sumw=sumw+wl

	while sumw&amp;lt;gesamt
!endif&lt;/PRE&gt;

This object will only do the horizontal corrugations, like the original only does vertical. If you want to spend more time, you could uncomment all the code and add a parameter &lt;FONT color="blue"&gt;hor&lt;/FONT&gt; that controls whether the corrugations are horizontal or vertical.&lt;BR /&gt;
&lt;BR /&gt;
David</description>
      <pubDate>Sat, 20 Nov 2010 13:56:54 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Modeling/Steeldeck-roof-problem/m-p/135093#M72198</guid>
      <dc:creator>David Maudlin</dc:creator>
      <dc:date>2010-11-20T13:56:54Z</dc:date>
    </item>
    <item>
      <title>Re: Steeldeck roof problem</title>
      <link>https://community.graphisoft.com/t5/Modeling/Steeldeck-roof-problem/m-p/135094#M72199</link>
      <description>&lt;BLOCKQUOTE&gt;Dave wrote:&lt;BR /&gt;I tried to draw it by the object 'Profiled Sheet Inc 13' from the archicad library 2010. The problem I have is the direction of the slope. I want the sheets to lay in the other direction put I can't find how to do this?&lt;/BLOCKQUOTE&gt;
Try &lt;A href="http://www.encina.co.uk/objective.html" target="_blank"&gt;OBJECTiVE&lt;/A&gt;. It adds tools to easily cut/rotate objects in 3D. With your roof, for example:&lt;UL&gt;&lt;LI&gt;1.The profiled roof lying on the level.&lt;BR /&gt;
&lt;BR /&gt;
2. Switch to a section view looking along the profile, selected the profile, clicked the menu &lt;I&gt;&lt;/I&gt;&lt;S&gt;&lt;I&gt;&lt;I&gt;&lt;/I&gt;&lt;/I&gt;&lt;/S&gt;OBJECTiVE &amp;gt; Tools &amp;gt; Rotate&lt;E&gt;&lt;/E&gt;, clicked the rotation origin, and the start angle.&lt;BR /&gt;
&lt;BR /&gt;
3. Set the angle of rotation.&lt;BR /&gt;
&lt;BR /&gt;
4. The finished rotation in section.&lt;BR /&gt;
&lt;BR /&gt;
5. The result in 3D.&lt;/LI&gt;&lt;/UL&gt;Note that you can rotate any number of profiled objects simultaneously (about a common origin) so you could cover an entire roof easily. Out of interest, why do you want the profile to run against the slope - won't that cause ponding problems?&lt;BR /&gt;&lt;IMG src="https://community.graphisoft.com/t5/image/serverpage/image-id/10784i08E0048E43BD956C/image-size/large?v=v2&amp;amp;px=999" border="0" alt="Rotate Roofing.jpg" title="Rotate Roofing.jpg" /&gt;</description>
      <pubDate>Sat, 20 Nov 2010 14:34:25 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Modeling/Steeldeck-roof-problem/m-p/135094#M72199</guid>
      <dc:creator>Ralph Wessel</dc:creator>
      <dc:date>2010-11-20T14:34:25Z</dc:date>
    </item>
    <item>
      <title>Re: Steeldeck roof problem</title>
      <link>https://community.graphisoft.com/t5/Modeling/Steeldeck-roof-problem/m-p/135095#M72200</link>
      <description>That's annoying accessory limitation !!!!&lt;BR /&gt;
&lt;BR /&gt;
Another simple solution is the Complex Profile: create a section along the roof slope the width of each deck panel sheet and lay them down across the roof slope using the beam tool.</description>
      <pubDate>Sat, 20 Nov 2010 21:55:04 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Modeling/Steeldeck-roof-problem/m-p/135095#M72200</guid>
      <dc:creator>Dwight</dc:creator>
      <dc:date>2010-11-20T21:55:04Z</dc:date>
    </item>
    <item>
      <title>Re: Steeldeck roof problem</title>
      <link>https://community.graphisoft.com/t5/Modeling/Steeldeck-roof-problem/m-p/135096#M72201</link>
      <description>I am having exact same problem. profiled sheet has a slope but only in one direction which makes it useless in some situations, eg. supporting beams are sloping and profiled sheet is on them (obviously direction of the steel profiles depend on the supporting beams rather than pitch of the roof. Can somebody explain how to solve this problem ?</description>
      <pubDate>Mon, 02 Dec 2013 12:51:00 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Modeling/Steeldeck-roof-problem/m-p/135096#M72201</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2013-12-02T12:51:00Z</dc:date>
    </item>
  </channel>
</rss>

