springs and springmaker - OpenSCAD library

springs and springmaker - OpenSCAD library

thingiverse

Inventors Require Springs! I posted a pioneering [OpenSCAD library - Springs, helicoils, elliptic rings](https://www.thingiverse.com/thing:648813) several years ago, but it renders quite slowly, as the implementation relies on a programming technique that utilizes a union of slices along a trajectory - and a large number of unions can take hours in OpenSCAD. Exploring Thingiverse, I discovered this remarkable idea for a [Device to produce PLA springs](https://www.thingiverse.com/thing:92266/files). Unfortunately, I couldn't find any OpenSCAD code in this post. So I unearthed my own [sweep library](https://www.thingiverse.com/thing:900137) and implemented a fast rendering springs and springmaker library. As shown in the pictures section, it supports different spring types: cylindric, conical, and flat springs, with and without loops at the ends, and with circular, rectangular or quadratic cross-section. By means of a single difference operation with a cylinder or cone, one obtains a spring maker device, just like the mentioned [wonderful device](https://www.thingiverse.com/thing:92266/files). The library is quite concise, but offers a help module that outputs some help text with the modules' calling conventions and defaults as well as some usage examples to the console. The main module spring() has these parameters and default values: ``` spring(r=5, R=40, windings=5, H=150, center=true, R1=undef, start=false, end=false, ends=undef, w=undef, h=undef) ``` with r, w, h denoting the radius (respectively the width and height) of the cross-section, R and R1 the spring radii, and H the full height. start, end, ends are flags that control whether the code adds a loop at one or both ends of the spring. The springs.scad library itself refers to the Naca_sweep library [explained here](https://www.thingiverse.com/thing:900137). To use it you must download the two *.scad files from the download section into your library folder or current project folder and add a use command for springs.scad at the beginning of your program. ``` use <springs.scad>; // spring with default values spring(); // rect spring spring(R1=100, w = 20, h=10); // quadratic spring reversed spring(w=10, H=100, reverse=true); // negative height, partial windings allowed, ring at start added spring(windings = 2.5, H=-50, center = false, start=true); // conical spring spring(windings = 5.5, R = 30, R1=100, ends=true); // ** error ** this radius causes self intersection spring(r=15); // flat spring spring(H=0, R=100, R1 = 10); // flat rect spring spring(H=0, R=70, R1=10, w=2, h=10); // flat quadratic spring ccw spring(H=0, R=100, R1=10, w=8); // flat quadratic spring cw spring(H=0, R=10, R1=100, w=8); // device to roll your own springs springmaker(r=3, R=20, R1=40, h=50, ends=true); ```

Download Model from thingiverse

With this file you will be able to print springs and springmaker - OpenSCAD library with your 3D printer. Click on the button and save the file on your computer to work, edit or customize your design. You can also find more 3D designs for printers on springs and springmaker - OpenSCAD library.