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

    3D Truss Models

    已排程 已置頂 已鎖定 已移動 Plugins
    1.5k 貼文 31 Posters 869.7k 瀏覽 30 Watching
    正在載入更多貼文
    • 從舊到新
    • 從新到舊
    • 最多點贊
    回覆
    • 在新貼文中回覆
    登入後回覆
    此主題已被刪除。只有擁有主題管理權限的使用者可以查看。
    • medeekM 離線
      medeek
      最後由 編輯

      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 條回覆 最後回覆 回覆 引用 0
      • medeekM 離線
        medeek
        最後由 編輯

        • 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 條回覆 最後回覆 回覆 引用 0
        • medeekM 離線
          medeek
          最後由 編輯

          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 條回覆 最後回覆 回覆 引用 0
          • medeekM 離線
            medeek
            最後由 編輯

            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 條回覆 最後回覆 回覆 引用 0
            • medeekM 離線
              medeek
              最後由 編輯

              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 條回覆 最後回覆 回覆 引用 0
              • medeekM 離線
                medeek
                最後由 編輯

                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 條回覆 最後回覆 回覆 引用 0
                • FrederikF 離線
                  Frederik
                  最後由 編輯

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

                  Cheers
                  Kim Frederik

                  1 條回覆 最後回覆 回覆 引用 0
                  • medeekM 離線
                    medeek
                    最後由 編輯

                    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 條回覆 最後回覆 回覆 引用 0
                    • medeekM 離線
                      medeek
                      最後由 編輯

                      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 條回覆 最後回覆 回覆 引用 0
                      • medeekM 離線
                        medeek
                        最後由 編輯

                        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 條回覆 最後回覆 回覆 引用 0
                        • medeekM 離線
                          medeek
                          最後由 編輯

                          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 條回覆 最後回覆 回覆 引用 0
                          • medeekM 離線
                            medeek
                            最後由 編輯

                            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 條回覆 最後回覆 回覆 引用 0
                            • medeekM 離線
                              medeek
                              最後由 編輯

                              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 條回覆 最後回覆 回覆 引用 0
                              • medeekM 離線
                                medeek
                                最後由 編輯

                                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 條回覆 最後回覆 回覆 引用 0
                                • pbacotP 離線
                                  pbacot
                                  最後由 編輯

                                  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 條回覆 最後回覆 回覆 引用 0
                                  • medeekM 離線
                                    medeek
                                    最後由 編輯

                                    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 條回覆 最後回覆 回覆 引用 0
                                    • medeekM 離線
                                      medeek
                                      最後由 編輯

                                      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 條回覆 最後回覆 回覆 引用 0
                                      • G 離線
                                        Garry K
                                        最後由 編輯

                                        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 條回覆 最後回覆 回覆 引用 0
                                        • medeekM 離線
                                          medeek
                                          最後由 編輯

                                          Spent some time this morning traversing through the common truss code updating some of the truss types so that I can enable energy/raised heels for all common trusses as well as enable custom layers, materials and connector plates.

                                          As I've developed the plugin and added new features I used the fink truss as the cutting edge, so everything having to do with this truss type is pretty much up-to-date, however some of the other truss types are seriously lagging so a little house cleaning is in order.

                                          It may be a few days before I can release this latest version since there is a lot of tedious work ahead.

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

                                          1 條回覆 最後回覆 回覆 引用 0
                                          • pbacotP 離線
                                            pbacot
                                            最後由 編輯

                                            Great work. I wish I had your dedication!

                                            MacOSX MojaveSketchUp Pro v19 Twilight v2 Thea v3 PowerCADD

                                            1 條回覆 最後回覆 回覆 引用 0
                                            • 1
                                            • 2
                                            • 29
                                            • 30
                                            • 31
                                            • 32
                                            • 33
                                            • 74
                                            • 75
                                            • 31 / 75
                                            • 第一個貼文
                                              最後的貼文
                                            Buy SketchPlus
                                            Buy SUbD
                                            Buy WrapR
                                            Buy eBook
                                            Buy Modelur
                                            Buy Vertex Tools
                                            Buy SketchCuisine
                                            Buy FormFonts

                                            Advertisement