Skip to main content

Designing and building a workbench

We have a stack of lumber, copper pipe, and trim that has been on the basement floor in our last house and that we moved over to our new house. It's tough to keep the material organized, the pipes, trim and lumber is stacked together and tough to get at. It's not an effective use of floor space and the lumber and pipes are quite long, some of the pieces are 10' long.

If I built a 10' long workbench I could store the material below it, either on the floor or shelves, and it would provide space to work on projects and storage space for a chop saw and other tools.

I've used Tinkercad to make some 3D mockups for work projects before and it worked pretty well. Tinkercad can be used to create designs for 3D printing but in this case I used it to visualize the workbench and determine how to construct it.


3D model

Here is the 3D design that you can view, duplicate, and edit. The dimensions of the lumber in the model should be correct. Note that the scale is in millimeters where one millimeter is one inch, it doesn't look like Tinkercad can handle things in inches that are as large as this bench, entering those dimensions into the shape editor was resulting in the values being truncated.

The bench is 10' long, 32" deep, and 36 3/4" high. I also designed it with a 10" overhang on three sides except the back that will be up against a wall.

Here are some renderings of the workbench that show its construction.



Design notes

  • 3/4" plywood surface is set into the top to protect the edges that might nick or peel. You can see the v1 workbench on Tinkercad here.
  • Side pieces are 2x6, upgraded from 2x4 on the v1 design for more stiffness in the side overhangs.
  • The top of the side 2x6 pieces will be squared off by running them through the table saw to take off the rounded edge so they are closer to flush with the top surface. I'm not sure if I'll do this to the long side or the short side. I'd like to preserve the rounded edge on the outside so trimming the long side is best, even though it will be tougher to do cleanly.
  • The height of 36 3/4" could have been 36" flush but that would have meant more fractional cuts and an extra 3/4" of overall height should be fine.
  • The front overhang is a cantilever with continuous pieces for strength. The side overhangs may be slightly weaker.
  • Load bearing is accomplished by direct support where possible.
  • Screws will be used as fasteners, wood pre-drilled and countersunk to avoid splitting.

Material estimates

  • 2x4 qty 10 (I got 14)
  • 2x6 qty 3
  • 8x4 A/C plywood qty 2

Construction


The supplies for the workbench.


Part of the front support section assembled but without the legs attached to the cross beam.















Comments

Popular posts from this blog

Debugging an imprecise bus access fault on a Cortex-M3

This information may apply to other cortex series processors but is written from practical experience with the Cortex-M3. Imprecise bus access faults are ambiguous, as noted by the term "imprecise". Compared to precise bus errors, imprecise errors are much trickier to debug and especially so without a deep understanding of arm processors and assembly language. Imprecise and precise flags are found in the BusFault status register, a byte in the CFSR (Configurable Fault Status Register). BusFault status register bits The definition for imprecise and precise bits is: [2] IMPRECISERR Imprecise data bus error: 0 = no imprecise data bus error 1 = a data bus error has occurred, but the return address in the stack frame is not related to the instruction that caused the error. When the processor sets this bit to 1, it does not write a fault address to the BFAR. This is an asynchronous fault. Therefore, if it is detected when the priority of the current pr

Graco Swing By Me - Battery to AC wall adapter modification

If you have one of these Graco battery powered swings you are probably familiar with the cost of C batteries! The swing takes four of them and they only last a handful of days. I'm not sure if the newer models support being plugged into the wall but ours didn't. If you are a little familiar with electronics and soldering, here is a rough guide on how you can modify yours to plug in! I wasn't sure how exactly to disassemble the swing side where the batteries were. I was able to open up the clamshell a bit but throughout this mod I was unable to determine how to fully separate the pieces. I suspect that there is some kind of a slip plate on the moving arm portion. The two parts of the plastic are assembled and the moving arm portion with the slip plate is slid onto the shaft. Because of the tension in that slip plate it doesn't want to back away, and because of the mechanicals that portion of the assembly doesn't appear accessible in order to free it. I was

Memory efficient queuing of variable length elements

In embedded environments memory can be a critical driver of the design of data structures and containers. Computing resources have been expanding steadily each year but there are still a wide range of systems with far less than a megabyte of memory. On systems with tens of kilobytes of memory, structures are often designed to be compact to maximize data density. Rather than splurging on memory aligned elements that would be faster for the processor to access, a developer will typically use types with minimal sizes based on the known range of values that the element is intending to hold. Fixed sized buffers At my day job a fixed size pool of messages was implemented to hold message data. While this achieved one design goal of using statically allocated buffers, avoiding dynamic allocations that might fail at runtime, it isn't efficient if there is a wide range of message sizes. It isn't efficient because each message uses a message buffer. With small message sizes the buff