-
Notifications
You must be signed in to change notification settings - Fork 18
Screws threaded
Gilles Bouissac edited this page Apr 1, 2024
·
10 revisions
This tutorial applies to all standards. The examples are given for metric coarse standard.
Changes to do in the reading to adapt to other standards are summarized in this table:
- MXC: Metric Coarse standard (International standard)
- MXF: Metric Fine standard (International standard)
- UNC: Unified National Coarse standard (US standard)
- UNF: Unified National Fine standard (US standard)
- BSW: British Standard Whitworth standard (UK standard)
- BSF: British Standard Fine standard standard (UK standard)
Tutorial code | MXC | MXF | UNC | UNF | BSW | BSF |
---|---|---|---|---|---|---|
mx-screw.scad |
mx-screw.scad |
mxf-screw.scad |
unc-screw.scad |
unf-screw.scad |
bsw-screw.scad |
bsf-screw.scad |
mx-thread.scad |
mx-thread.scad |
mxf-thread.scad |
unc-thread.scad |
unf-thread.scad |
bsw-thread.scad |
bsf-thread.scad |
mxBolt |
mxBolt |
mxfBolt |
uncBolt |
unfBolt |
bswBolt |
bsfBolt |
mxNut |
mxNut |
mxfNut |
uncNut |
unfNut |
bswNut |
bsfNut |
mxThread |
mxThread |
mxfThread |
uncThread |
unfThread |
bswThread |
bsfThread |
M6 |
M6 |
MF6 |
UNC1_4 |
UNF1_4 |
BSW5_32 |
BSF5_32 |
This very simple code shows differences between standards:
Step | Code | Result |
---|---|---|
Hexagonal nut | use <agentscad/mx-screw.scad> use <agentscad/mx-thread.scad> |
|
Square nut | use <agentscad/mx-screw.scad> use <agentscad/mx-thread.scad> |
|
Hexagonal bolt | use <agentscad/mx-screw.scad> use <agentscad/mx-thread.scad> |
|
Allen bolt | use <agentscad/mx-screw.scad> use <agentscad/mx-thread.scad> |
|
Internal Thread alone | use <agentscad/mx-screw.scad> use <agentscad/mx-thread.scad> |
|
External Thread alone | use <agentscad/mx-screw.scad> use <agentscad/mx-thread.scad> |