项目作者: denisov0gleb

项目描述 :
Chemical autoclaves from polypropelene (PP)
高级语言: OpenSCAD
项目地址: git://github.com/denisov0gleb/autoclaves.git
创建时间: 2019-02-21T11:44:26Z
项目社区:https://github.com/denisov0gleb/autoclaves

开源协议:

下载


Autoclaves

OpenSCAD file to generate autoclaves for 3D printing by polypropylene.

Keep generated STL files in STLs folder.

Capabilities

You can specify autoclave volume (in microliters) and/or inside cavity diameter (in millimeters).

All wall thickness are required.

Single autoclave

Examples:

  1. Both volume and diameter are given:

    1. autoclave(volume=1000, d=12.408, bottom=5, top=5, wall=5);
  2. Only volume is given, diameter is calculated:

    1. autoclave(volume=1000, bottom=5, top=5, wall=5);
  3. Only diameter is given, volume is calculated:

    1. autoclave(d=12.408, bottom=5, top=5, wall=5);

3x3 autoclave

Additional distance separator delta. By default delta = 1.

  1. Only volume is given, diameter is calculated, delta is changed:

    1. autoclave_3x3(volume=1000, bottom=5, top=5, wall=5, delta=2);
  2. Only volume is given, diameter is calculated, delta is default:

    1. autoclave_3x3(volume=1000, bottom=5, top=5, wall=5);

Squared nxn autoclave

n - number of autoclaves in each row. By default n = 2.

Additional distance separator delta. By default delta = 1.

  1. Only volume is given, diameter is calculated, n and delta are default:

    1. autoclave_nxn(volume=1000, bottom=5, top=5, wall=5);
  2. Only volume is given, diameter is calculated, delta is default:

    1. autoclave_nxn(volume=1000, bottom=5, top=5, wall=5, n=5);