OpenSCAD file to generate autoclaves for 3D printing by polypropylene.
Keep generated STL files in STLs folder.
You can specify autoclave volume (in microliters) and/or inside cavity diameter (in millimeters).
All wall thickness are required.
Examples:
- Both volume and diameter are given:
autoclave(volume=1000, d=12.408, bottom=5, top=5, wall=5);
- Only volume is given, diameter is calculated:
autoclave(volume=1000, bottom=5, top=5, wall=5);
- Only diameter is given, volume is calculated:
autoclave(d=12.408, bottom=5, top=5, wall=5);
Additional distance separator delta. By default delta = 1.
- Only volume is given, diameter is calculated, delta is changed:
autoclave_3x3(volume=1000, bottom=5, top=5, wall=5, delta=2);
- Only volume is given, diameter is calculated, delta is default:
autoclave_3x3(volume=1000, bottom=5, top=5, wall=5);
n - number of autoclaves in each row. By default n = 2.
Additional distance separator delta. By default delta = 1.
- Only volume is given, diameter is calculated, n and delta are default:
autoclave_nxn(volume=1000, bottom=5, top=5, wall=5);
- Only volume is given, diameter is calculated, delta is default:
autoclave_nxn(volume=1000, bottom=5, top=5, wall=5, n=5);