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

    Medeek Floor

    Scheduled Pinned Locked Moved Plugins
    139 Posts 6 Posters 7.1k Views 5 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 am changing up the way in which I do subtractive geometry from the way I've done it with the other plugins in the past.

      If you enable Subtractive Geometry in the global settings you can use the SUBTRACT keyword to cut holes through everything as per normal. However you will now also have two other options:

      SUBTRACT_SHEATH: This keyword will only subtract through sheathing, flooring and deck boards.

      SUBTRACT_GYPSUM: This keyword will only subtract through gypsum

      I may add others as the need arises or additional requests are made.

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

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

        Adding in the advanced floor options into the Global Settings:

        floor_su0floor_su060_800.jpg 59_800.jpg

        I am working on adding in metal bridging with some associated parameters:

        floor_su060_800.jpg

        P.S.
        I was going to combine the metal bridging with the solid blocking however after some thought I realized there might be cases where you might combine both forms of bracing in one floor (solid blocking and metal bridging). Hence I need a separate module for blocking. Unlike the wall blocking floor blocking may be regular lumber or I-Joist blocking so that further complicates the matter slightly.

        The parameters for the blocking module will probably be:

        1.) Blocking Type: Lumber/I-Joist

        If blocking type is Lumber:

        Blocking Width: 1.5 in (default)

        Blocking Material: Lumber / PT Lumber / LSL / PSL / LVL etc...

        If blocking type is I-Joist

        Blocking I-Joist Family:

        Blocking I-Joist Type:

        other general parameters are:

        Row Spacing: 96 in. (default)

        Stagger Blocking: Yes/No

        Remove Row: empty by default

        Quite a few more parameters (8) to add into a number of files, this will keep me busy for a couple of days at least.

        floor_su061_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

          First look at metal bridging (I-joist and Lumber):

          floor_su069_800.jpg

          floor_su070_800.jpg

          Geometrically a lot simpler and more lightweight than the preconfigured component that I made based off of the Simpson IFC model. I'm using my galvanized texture/material but I may change it slightly. There are quite a few parameters that one can adjust to customize the look and feel of these metal bridging straps, hopefully that should make things configurable enough for most power users.

          As noted per the Simpson literature the crossing straps should not be in direct contact to avoid screeching noises when they move under load. Hence the default 1/8" gap, but this can be modified as can be seen in the menu.

          I've also included a thickness parameter for the straps. The correct thickness for a 20 gauge strap is probably around 0.035" however I've rounded the default value to an even 0.04".

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

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

            Version 0.9.7 - 09.23.2024

            • Updated the SUBTRACT feature with three other options.
            • Added seven advanced options in the Floor tab of the Global Settings.
            • Added metal bridging to the Draw and Edit menus.
            • Added solid blocking (Lumber and I-Joist) to the Draw and Edit menus.
            • Fixed minor bugs in the HTML menus and preset system.

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

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

              Tutorial 3 - Metal Bridging and Blocking (10:28 min.)

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

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

                Version 0.9.8 - 09.27.2024

                • Made the polyline/face icon (draw mode) in the draw menu clickable.
                • Added a joist direction toggle button/icon to the draw and edit menus.
                • Added a stagger joist option to the Draw and Edit menus.
                • Updated the insulation, blocking, metal bridging and hanger modules to accommodate staggered joists.

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

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

                  So yes, staggered joist present a few issues. For example if the blocking doesn't land in the lapped region of the joist layout you end up with this:

                  floor_su081_800.jpg

                  Right at the moment I'm not sure how to address this or actually determine when the blocking lands in the non-lapped sections of the layout. The easy way out would be to do a boolean subtraction using the joists themselves, but then I would need to separate the resulting (multi-body) group into a bunch of groups/solids, this one is a bit of headache.

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

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

                    With staggered joists I am tracking how many rows of joists I need, the joist length and lapped length, so given that information (three variables) I can then run a quick check on each blocking row to see how it pencils out. This little block of code does the trick:

                    if @Spanno < 2
                    			stoffset = 'NEG'
                    		else
                    			lapcount = 1
                    			for lapi in @Stjarray
                    				if (distx > lapi[0]) && (distx < lapi[1])
                    					stoffset = 'LAP'
                    					break
                    				elsif distx < lapi[0]
                    					if lapcount.odd?
                    						stoffset = 'NEG'
                    					else
                    						stoffset = 'POS'
                    					end
                    					break
                    				elsif (distx > lapi[1]) && (lapcount == (@Spanno - 1))
                    					if lapcount.odd?
                    						stoffset = 'POS'
                    					else
                    						stoffset = 'NEG'
                    					end
                    					break
                    				end
                    
                    				lapcount = lapcount + 1
                    			end
                    				
                    		end
                    

                    As one can see there are really only three possibilities for the blocking: Lapped, Positive or Negative.

                    The end result is this:

                    floor_su082_800.jpg
                    Problem solved. Now I just need to apply this same logic to the metal bracing and implement it. Insulation is somewhat different so I still don’t have a good solution for that one just yet.

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

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

                      After another three hours of some productive thought and hacking away at some rather large blocks of code (and a few choice words) I managed to pull together a fairly efficient and robust algorithm for the cavity insulation between those irregular joists.

                      Ladies and Gentlemen, I give you “Batt Insulation with Staggered Joists”:

                      floor_su086_800.jpg

                      floor_su087_800.jpg

                      I’m exhausted, tomorrow I might take a small break.

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

                      gullfoG 1 Reply Last reply Reply Quote 1
                      • gullfoG Offline
                        gullfo @medeek
                        last edited by

                        what if i want them staggered the other way? LOL J.K. nicely done!

                        Glenn

                        http://www.runnel.com

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

                          First look at skewed hangers with staggered joists:

                          floor_su096_800.jpg

                          A little bit more complicated than regular joists due to the offsets but overall its pretty much the same routine. Pretty excited that I actually can get this to work, at first I wasn't really sure if it was even feasible.

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

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

                            Version 0.9.9 - 10.01.2024

                            • Further updated the insulation, blocking, metal bridging and hanger modules to accommodate staggered joists.
                            • Added skewed hanger options into the Floor tab of the Global Settings.
                            • Added skewed hangers to the Draw and Edit menus.
                            • Added the following skewed (45 degree) Simpson hangers into the built-in library: SUL24, SUL26, SUL210, SUL214, SUL1819, SUL18111, SUL18114, SUL2069, SUL20611, SUL20614, SUR24, SUR26, SUR210, SUR214, SUR1819, SUR18111, SUR18114, SUR2069, SUR20611, SUR20614
                            • Updated and added a new subtraction mode to the SUBTRACT feature: SUBTRACT_JOIST
                            • Added Subtractive Geometry (Joist) in the General tab of the Global Settings.

                            floor_su097_800.jpg

                            floor_su098_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 0.9.9b - 10.01.2024

                              • Updated the Floor tab of the Global Settings with additional parameters for joist construction.
                              • Fixed a minor bug with the hanger module for double ply staggered studs.
                              • Fixed a bug in the Draw and Edit menus so that all hangers in the library are properly displayed.
                              • Added the following skewed (45 degree) Simpson hangers into the built-in library (skew_hangers): SUL410, SUL414, SUL214_2, SUL210_2, SUL26_2, SUR410, SUR414, SUR214_2, SUR210_2, SUR26_2

                              floor_su099_800.jpg

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

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

                                Version 0.9.9c - 10.03.2024

                                • Enabled diagonal deck boards with the addition of a Board rotation parameter.
                                • Enabled 2-Ply rim joists with our without an air gap.

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

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

                                  Version 0.9.9d - 10.03.2024

                                  • Fixed critical bugs with saving of floor presets.
                                  • Improved robustness of floor attribute library and data lookup methods.

                                  Some incremental improvements but necessary.

                                  IMPORTANT
                                  Note that the last few updates prior to this update introduced a number of new features that effectively disabled the saving of floor presets. Please download this latest update to restore the ability to save floor presets.

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

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

                                    Double rim joists with air gap, lapped and extended:

                                    floor_su107_800.jpg

                                    A quick test of the non-orthogonal floor types shows that the algorithm holds up as it should:

                                    floor_su108_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 0.9.9e - 10.04.2024

                                      • Updated 2-Ply rim joists with air gap to extend joists that are in a lapped configuration.
                                      • Updated the Floor tab of the Global Settings with even more parameters for joist construction.
                                      • Added the following face mount Simpson hangers into the built-in library: MIU1819, MIU18111, MIU18114, MIU18116, MIU18118.

                                      floor_su109_800.jpg

                                      floor_su110_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

                                        Tutorial #4: Deck Boards (6:42 min.)

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

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

                                          Tutorial 5 - Rim Joists and Sill Plates (5:47 min.)

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

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

                                            Tutorial 6 - Skewed Joist Hangers (5:03 min.)

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

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

                                            Advertisement