sketchucation logo sketchucation
    • Login
    ℹ️ Licensed Extensions | FredoBatch, ElevationProfile, FredoSketch, LayOps, MatSim and Pic2Shape will require license from Sept 1st More Info

    3D Truss Models

    Scheduled Pinned Locked Moved Plugins
    1.5k Posts 31 Posters 869.7k Views 30 Watching
    Loading More Posts
    • Oldest to Newest
    • Newest to Oldest
    • Most Votes
    Reply
    • Reply as topic
    Log in to reply
    This topic has been deleted. Only users with topic management privileges can see it.
    • medeekM Offline
      medeek
      last edited by

      I like the new addition of the layers, it helps being able to hide certain aspects of the model. This has led me to think it might be useful to somehow implement materials (colors, textures), either at the layer level or based on the geometry (ie. specific color or texture for the I-joist web -> OSB wood).

      http://design.medeek.com/resources/images/truss_su14_800.jpg

      For now I don't think I will make the material assignment(s) customizable, in the global settings you will be able to turn it on or off, if it is turned on then I will have the plugin assign some fairly generic colors for lumber, pressure treated lumber and texture for OSB sheathing. Metal plates will be assigned a texture as well, this should be rather interesting.

      Nathaniel P. Wilkerson PE
      Medeek Engineering Inc
      design.medeek.com

      1 Reply Last reply Reply Quote 0
      • jujuJ Offline
        juju
        last edited by

        Thanks for the upgrades! I'm on holiday and am looking forward to this when I'm back at the grindstone in a few weeks time!

        Save the Earth, it's the only planet with chocolate.

        1 Reply Last reply Reply Quote 0
        • medeekM Offline
          medeek
          last edited by

          Version 1.7.3 - 12.17.2016

          • Added a "Materials" tab within the global settings; Auto material assigment (colors and textures) is now an option.
          • Enabled materials and custom layers for floor trusses and joists.
          • Enabled materials for common trusses: metal plate connectors, lumber, and OSB.

          http://design.medeek.com/resources/images/truss_su167_800.jpg

          View model here:

          Link Preview Image
          3D Warehouse

          3D Warehouse is a website of searchable, pre-made 3D models that works seamlessly with SketchUp.

          favicon

          (3dwarehouse.sketchup.com)

          http://design.medeek.com/resources/images/truss_su168_800.jpg

          A big thanks to those on the SketchUcation and SU board who helped me with the custom materials part of the API, the SketchUp community is a great asset.

          By default the metal plate connectors, custom layers and auto materials is turned off in the global settings.

          Nathaniel P. Wilkerson PE
          Medeek Engineering Inc
          design.medeek.com

          1 Reply Last reply Reply Quote 0
          • medeekM Offline
            medeek
            last edited by

            • Enabled metal plate connectors for floor trusses.

            http://design.medeek.com/resources/images/truss_su169_800.jpg

            View model here:

            Link Preview Image
            3D Warehouse

            3D Warehouse is a website of searchable, pre-made 3D models that works seamlessly with SketchUp.

            favicon

            (3dwarehouse.sketchup.com)

            The algorithm for the plate placement is fairly complex but not nearly as bad as I thought it would be, just knocking out some low hanging fruit while I'm recovering. The painkillers have kept me a bit off my "A" game so I haven't tackled anything big yet, like the completion of the stepdown hip truss set.

            Nathaniel P. Wilkerson PE
            Medeek Engineering Inc
            design.medeek.com

            1 Reply Last reply Reply Quote 0
            • medeekM Offline
              medeek
              last edited by

              Looking through some old plans I've managed to dig up I came upon a couple of designs by another engineering firm.

              Typically when I've dealt with truss designs I always seen a scarf cut on the bottom chord with the top chord remaining un-notched. In this other example the bottom chord is kept intact and the top chord is scarf cut or notched, while still allowing a continuous section to extend for the overhang with a depth equal to at least 1/2 the top chord depth. I think the picture below explains this far better than I can with words:

              http://design.medeek.com/resources/images/TIMBER_TRUSS2.jpg

              For MPC trusses I am used to seeing a 1/4" butt cut, however for timber trusses what is more appropriate?

              Which method above would go with (arch. and structural reasons)?

              View model here:

              Link Preview Image
              3D Warehouse

              3D Warehouse is a website of searchable, pre-made 3D models that works seamlessly with SketchUp.

              favicon

              (3dwarehouse.sketchup.com)

              Nathaniel P. Wilkerson PE
              Medeek Engineering Inc
              design.medeek.com

              1 Reply Last reply Reply Quote 0
              • medeekM Offline
                medeek
                last edited by

                Plates applied to the top truss:

                http://design.medeek.com/resources/images/TIMBER_TRUSS3.jpg

                Specs:

                • Truss Type: King Post
                • 6x10 TC, 6x8 BC, 6x6 kingpost
                • Plate thickness = 0.25"
                • single row of bolts with two bolts per row.
                • connector plate width = 4.0"
                • Bolt Dia. 3/4"
                • Bolt Edge Distance (timber) = 4.0"
                • Bolt Edge Distance (plate) = 2.0"
                • Bolt Spacing = 4.0"
                • Bolts and Washers not shown.

                View model here:

                Link Preview Image
                3D Warehouse

                3D Warehouse is a website of searchable, pre-made 3D models that works seamlessly with SketchUp.

                favicon

                (3dwarehouse.sketchup.com)

                Nathaniel P. Wilkerson PE
                Medeek Engineering Inc
                design.medeek.com

                1 Reply Last reply Reply Quote 0
                • medeekM Offline
                  medeek
                  last edited by

                  This particular joint on a gambrel attic roof I am finding particularly difficult to plate:

                  http://design.medeek.com/resources/images/truss_su170_800.jpg

                  Luckily I have a few samples to use as guides. Given my web configurations at this joint this seems to be the most reasonable method to plate this joint. Note that the plate should touch the interior corner and the exterior of the lower top chord but at the same time not project past the lumber into the spaces. Also the plate is rotated so that it is parallel to the upper top chords pitch.

                  The algorithm I devised to do this is quite clever I think but can be boiled down to a few concise lines of code:

                    # Plate 2 (Gambrel Left)
                  
                  	x2 = @W2x2 - (mpcyy)/(sin(@Phi2))
                  	y2 = @W2y2
                  	m2 = tan(@Phi2)
                  
                  	x1 = @X2
                  	y1 = @Y2
                  	m1 = tan(@Phi1)
                  
                  	x0 = (y2 - y1 - m2*x2 + m1*x1)/(m1 - m2)
                  	y0 = y1 + m1*(x0 - x1)
                  
                  	xoffset = (mpcxx/2.0)*(cos(@Phi2)) + (mpcyy/2.0)*(sin(@Phi2))
                  	yoffset = (mpcxx/2.0)*(sin(@Phi2)) - (mpcyy/2.0)*(cos(@Phi2))
                  
                  	mpcx = x0 + xoffset
                  	mpcy = y0 + yoffset
                  	mpcrot = -@Phi2
                  	MedeekMethods.metal_plate mpcx, mpcy, mpcxx, mpcyy, mpcrot, "PLGL"
                  
                  
                  	# Plate 2 (Gambrel Right)
                  
                  	mpcx = @X5 - mpcx
                  	mpcy = mpcy
                  	mpcrot = @Phi2
                  	MedeekMethods.metal_plate mpcx, mpcy, mpcxx, mpcyy, mpcrot, "PLGR"
                  

                  This joint has been the most difficult so far, everything else has been cake.

                  Nathaniel P. Wilkerson PE
                  Medeek Engineering Inc
                  design.medeek.com

                  1 Reply Last reply Reply Quote 0
                  • medeekM Offline
                    medeek
                    last edited by

                    Version 1.7.4 - 12.20.2016

                    • Enabled metal plate connectors for gambrel attic trusses.

                    http://design.medeek.com/resources/images/truss_su171_800.jpg

                    View model here:

                    Link Preview Image
                    3D Warehouse

                    3D Warehouse is a website of searchable, pre-made 3D models that works seamlessly with SketchUp.

                    favicon

                    (3dwarehouse.sketchup.com)

                    Nathaniel P. Wilkerson PE
                    Medeek Engineering Inc
                    design.medeek.com

                    1 Reply Last reply Reply Quote 0
                    • FrederikF Offline
                      Frederik
                      last edited by

                      Merry Christmas to you as well, Nathaniel! 👍
                      http://www.kerkythea.net/users/Frederik/Anim-Icons/xmas.gif

                      Cheers
                      Kim Frederik

                      1 Reply Last reply Reply Quote 0
                      • medeekM Offline
                        medeek
                        last edited by

                        Version 1.7.5 - 12.24.2016

                        • Enabled metal plate connectors for valley truss sets.
                        • Enabled materials and custom layers for valley truss sets.

                        http://design.medeek.com/resources/images/truss_su172_800.jpg

                        View model here:

                        Link Preview Image
                        3D Warehouse

                        3D Warehouse is a website of searchable, pre-made 3D models that works seamlessly with SketchUp.

                        favicon

                        (3dwarehouse.sketchup.com)

                        Merry Christmas to all.

                        Nathaniel P. Wilkerson PE
                        Medeek Engineering Inc
                        design.medeek.com

                        1 Reply Last reply Reply Quote 0
                        • medeekM Offline
                          medeek
                          last edited by

                          Version 1.7.6 - 12.26.2016

                          • Enabled metal plate connectors for monopitch trusses.
                          • Enabled materials and custom layers for monopitch trusses.

                          http://design.medeek.com/resources/images/truss_su173_800.jpg

                          View model here:

                          Link Preview Image
                          3D Warehouse

                          3D Warehouse is a website of searchable, pre-made 3D models that works seamlessly with SketchUp.

                          favicon

                          (3dwarehouse.sketchup.com)

                          I just realized that raised heel option does not work fully with the materials and connectors, I will work on a fix later today to sync that up.

                          Nathaniel P. Wilkerson PE
                          Medeek Engineering Inc
                          design.medeek.com

                          1 Reply Last reply Reply Quote 0
                          • medeekM Offline
                            medeek
                            last edited by

                            Version 1.7.7 - 12.31.2016

                            • Enabled materials and custom layers for gable, hip, shed, TJI and dutch gable rafter roofs.

                            http://design.medeek.com/resources/images/truss_su174_800.jpg

                            Nathaniel P. Wilkerson PE
                            Medeek Engineering Inc
                            design.medeek.com

                            1 Reply Last reply Reply Quote 0
                            • medeekM Offline
                              medeek
                              last edited by

                              Version 1.7.8 - 01.02.2017

                              • Enabled materials and custom layers for gable dormers.
                              • Added advanced options for gable dormers, enabled exterior wall sheathing option.

                              http://design.medeek.com/resources/images/truss_su175_800.jpg

                              View model here:

                              Link Preview Image
                              3D Warehouse

                              3D Warehouse is a website of searchable, pre-made 3D models that works seamlessly with SketchUp.

                              favicon

                              (3dwarehouse.sketchup.com)

                              Nathaniel P. Wilkerson PE
                              Medeek Engineering Inc
                              design.medeek.com

                              1 Reply Last reply Reply Quote 0
                              • medeekM Offline
                                medeek
                                last edited by

                                Out of curiosity when you architects and designers add hardiplank siding or other types of siding to a building what do you typically do? One could go so far as modeling the sawtooth/washboard of the siding but this would become very heavy in the model. I'm assuming most just use a material/texture to simulate the effect.

                                On a slightly different note I am looking for a really good texture to use for concrete in my other plugins, any suggestions?

                                Nathaniel P. Wilkerson PE
                                Medeek Engineering Inc
                                design.medeek.com

                                1 Reply Last reply Reply Quote 0
                                • medeekM Offline
                                  medeek
                                  last edited by

                                  This is an example of custom layers and materials implemented in the Medeek Truss Plugin and Medeek Foundation Plugin and used in one model:

                                  http://design.medeek.com/resources/images/truss_su176_800.jpg

                                  View model here:

                                  Link Preview Image
                                  3D Warehouse

                                  3D Warehouse is a website of searchable, pre-made 3D models that works seamlessly with SketchUp.

                                  favicon

                                  (3dwarehouse.sketchup.com)

                                  Turn off the sheathing layers first to reveal all of the structural framing etc...

                                  Regular walls were created with the Housebuilder plugin.

                                  The trim tool in the Truss Plugin was used quite successfully to manually trim back the dormer roof framing and sheathing.

                                  Nathaniel P. Wilkerson PE
                                  Medeek Engineering Inc
                                  design.medeek.com

                                  1 Reply Last reply Reply Quote 0
                                  • medeekM Offline
                                    medeek
                                    last edited by

                                    Neck is doing pretty good these days, a little sore some mornings but nothing a little Ibuprofen can't fix.

                                    On the flip side I came off of the Hydrocodone (for the neck and shoulder pain) about two weeks ago but still suffering from the withdrawal symptoms from this drug. My advice, don't ever use Hydrocodone unless it is absolutely life or death, its just not worth it.

                                    I'm trying to figure out what to tackle next.

                                    Nathaniel P. Wilkerson PE
                                    Medeek Engineering Inc
                                    design.medeek.com

                                    1 Reply Last reply Reply Quote 0
                                    • pbacotP Offline
                                      pbacot
                                      last edited by

                                      All looking great! Glad your neck is better. (I don't know what you've got or what you've been doing about it: I used exercises on mine which seemed good, along with general exercise. And I use a foam neck pillow. Just in case you're looking for ideas.)

                                      MacOSX MojaveSketchUp Pro v19 Twilight v2 Thea v3 PowerCADD

                                      1 Reply Last reply Reply Quote 0
                                      • medeekM Offline
                                        medeek
                                        last edited by

                                        Tonight I spent some time trying to do some "real world" modeling and it quickly becomes apparent how limiting the plugins really are. Take a look at this model here:

                                        Link Preview Image
                                        3D Warehouse

                                        3D Warehouse is a website of searchable, pre-made 3D models that works seamlessly with SketchUp.

                                        favicon

                                        (3dwarehouse.sketchup.com)

                                        I need the ability to cut holes in the floors and insert headers and double up joists etc...

                                        There is a serious need for a good staircase plugin, but maybe that already exists, either way it would be handy to have that part of the truss plugin or wall plugin.

                                        Where roofs merge into other walls requires some attention.

                                        I really need to get to work on the wall plugin, I'm using Housebuilder but I have a lot of features I would like to see to make it more flexible and reliable.

                                        The double glulam beam rafter roof would be a nice addition as well.

                                        Nathaniel P. Wilkerson PE
                                        Medeek Engineering Inc
                                        design.medeek.com

                                        1 Reply Last reply Reply Quote 0
                                        • medeekM Offline
                                          medeek
                                          last edited by

                                          Fixed a small bug in the valley truss set, hence the revision 1.7.8b. Hopefully tonight I can attack the timber truss module, I think I have most of the pseudo code put together.

                                          Nathaniel P. Wilkerson PE
                                          Medeek Engineering Inc
                                          design.medeek.com

                                          1 Reply Last reply Reply Quote 0
                                          • G Offline
                                            Garry K
                                            last edited by

                                            My stair maker plugin creates straight and curved stairs. Also Spirals.

                                            straight stair.png

                                            I am intending on adding quarter and half landings and some other features.

                                            curved stair.png

                                            I have built more than 200 of these geometric stairs including elliptical, specialty winders etc.
                                            We also specialized in framed up curved stairs without the cost of stringers.

                                            framed.png

                                            Some of my stairs projects include providing the bending forms and flattened stringers.

                                            1 Reply Last reply Reply Quote 0
                                            • 1
                                            • 2
                                            • 5
                                            • 6
                                            • 7
                                            • 8
                                            • 9
                                            • 74
                                            • 75
                                            • 7 / 75
                                            • First post
                                              Last post
                                            Buy SketchPlus
                                            Buy SUbD
                                            Buy WrapR
                                            Buy eBook
                                            Buy Modelur
                                            Buy Vertex Tools
                                            Buy SketchCuisine
                                            Buy FormFonts

                                            Advertisement