* Teaching t2c how to counterbore, countersink, and counterdrill * Delete public/kcl-samples/parametric-bearing-pillow-block directory * Update mounting-wire.kcl * new artifiacts Signed-off-by: Jess Frazelle <github@jessfraz.com> * Update kcl-samples simulation test output * Update kcl-samples simulation test output * updates Signed-off-by: Jess Frazelle <github@jessfraz.com> * updates Signed-off-by: Jess Frazelle <github@jessfraz.com> * updates Signed-off-by: Jess Frazelle <github@jessfraz.com> --------- Signed-off-by: Jess Frazelle <github@jessfraz.com> Co-authored-by: Jess Frazelle <jessfraz@users.noreply.github.com> Co-authored-by: Jess Frazelle <github@jessfraz.com> Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
19 lines
562 B
Plaintext
19 lines
562 B
Plaintext
// Global parameters for the pillow block bearing
|
|
|
|
// Set units
|
|
@settings(defaultLengthUnit = in)
|
|
|
|
// Export parameters
|
|
export boltSpacingX = 5
|
|
export boltSpacingY = 3
|
|
export boltDiameter = 3 / 8
|
|
export counterboreDiameter = 3 / 4
|
|
export counterboreDepth = 3 / 16
|
|
export stockThickness = .5
|
|
export bearingBoreDiameter = 1 + 3 / 4
|
|
export bearingOuterDiameter = bearingBoreDiameter * 1.5
|
|
export sphereDia = (bearingOuterDiameter - bearingBoreDiameter) / 4
|
|
export chainWidth = sphereDia / 2
|
|
export chainThickness = sphereDia / 8
|
|
export linkDiameter = sphereDia / 4
|