Hey! This thing is still a Work in Progress. Files, instructions, and other stuff might change!

Orthotic Insoles (Customizeable)

141
Downloads
1365
Views
Published on February 4, 2013
This thing can be customized with MakerBot Customizer! Open in Customizer

Description

Create customized orthotic insoles using the makerbot customizer. These provide arch support, and are designed to spring a bit when you step. They may have variable thicknesses, and can be modified to fit each foot separately.

Note: Fixed a problem with the mesh; customizer should work properly now.

Instructions

Measure your feet in millimeters and adjust accordingly. If your only measuring tape is in inches, you can convert by multiplying the number of inches by 25.4.
Customize these, print them out, and slip them under your shoe's insoles for solid, springy arch support. Typically, orthotic inserts such as these cost upwards of one hundred dollars. Per pair. With these customized inserts, you can print out a set that fits your feet, and create as many pairs as you need, nevermore having to switch out your inserts every time you switch shoes.
Print these out and try them. You won't want to go back!
Report as inappropriate

You must be logged in to post a comment.

Wow, this is cool, and the first thing to really impress the wife. I'm not sure I got the right distances though. How does one with a foot as flat as mine figure out where the arch begins and ends? Anyone have a good link?

This is very cool and could save people hundreds of dollars. I question whether people should be generating these on their own without the input of a specialist, though. Maybe a doctor should analyze your design and see if it is effective.

You could also measure one that you already have. I would love to see some open source design rules of thumb from a specialist.

It has been on our list for awhile, but you have done a spectacular job. Thank you - this is going to help a lot of people. Minor suggestions for improvement - consider adding the ability to both add additional heal height and change the tilt angle of the base to assist correcting over pronation and supination.

These are some really good ideas, but I'm not sure how to measure them. It's simple enough to find the height of my arch, but it can be tricky determining how much heel height should be added, or how much to alter the tilt angle. Any ideas?

A request: could you add an option (or copy) with the bottom flat? That way it could be printed with no support, and with a minimal info (10%? 5%)? it might still be springy.

I got kinda close with making it thick (thickness=20) and chopping off the bottom:

difference() {
translate([0, -endOfArch/2.0, 0]) {
if (whichFoot == 0) {
drawMesh();
}
else {
mirror([1,0,0]) { drawMesh(); }
}
}
translate([-200,-200,-25]) cube([400,400,40]);
}

but it had really weird artifacts around the edges and it didn't compile properly. So my 'hack' didn't work, so I am asking you.

Same request from me - I printed one of these using flexible/soft PLA and the results were very encouraging. Well done.

It is also possible to use a second extruder to give the springy effect -- see http://www.thingiverse.com/thi...

Wow, this is amazing! Very clever how you pre-generated the meshes and scale them in OpenSCAD. I was trying to do the mesh generation dynamically in OpenSCAD to do something similar, and losing my mind!

Thanks. I actually made the mesh in Blender, put the vertices in groups according to the adjustments I wanted to make, and wrote an export script to generate the .scad file. I've made the flat-bottomed inserts you've requested, though they're untested. Let me know if I need to make any adjustments.