Customizable OpenSCAD Fletching Jig 3D Printer Model

Author: @
License: CC BY-NC-SA
File formats: stl,scad,zip
Download type: zip
Size:8.5MB

The file 'Customizable OpenSCAD Fletching Jig 3D Printer Model' is (stl,scad,zip) file type, size is 8.5MB.

Summary

OpenSCAD Fletching jig

To check latest updates go here

If you have any suggestions, leave them in the comments or open an issue on GitHub

Overview

Simple yet effective fletching jig that will adjust to all your needs. Intended to provide new archers with access to 3D printer cheap way to fix broken arrows without a need for expensive off-the-shelf jig. Hopefully, even skilled shooters may find utility in this design.

Features

  • highly adjustable to fit different arrows and vanes
  • supports both 3 and 4 vanes
  • straight, offset and true helical fletchings
  • features optional nock alignment
  • no additional tools required for assembly
  • hot swappable arms
  • very compact and light

Prerequisites

First you have to download latest version (2019.05 or newer) of OpenSCAD. It's free and open source software available for all major desktop platforms. Nothing else is needed for editing and rendering.

Additional software required will vary depending on your 3D printer.

How to use

You may try to use Thingiverse customizer directly without downloading anything but it worked for me only in Microsoft Edge and the experience wasn't good. So if it doesn't work for you either (or if it's too slow), follow these instructions.

Although I provide several pre-rendered files as an example, it is very likely that you will not like something about them. If some of the parameters do not fit your setup or you simply want to enable some special features mentioned above, you will have to change the relevant parameters in the OpenSCAD customizer and render a new, unique jig yourself. Don't worry though, it is very simple!

  1. Download and extract fletching_jig_v2.0.zip of this project somewhere on your PC.
  2. Locate main.scad and open it in OpenSCAD.
  3. Go to the Customizer section:
    • Windows/Linux: Click on Window in the top menu and select Customizer.
    • macOS: Click on View in the top menu, then select Customizer.
  4. The Customizer panel will appear on the right side of the OpenSCAD interface.
    • If you don't need to see or edit the code, you can close the editor window on the left to focus solely on the Customizer and 3D view.
  5. Adjust the parameters:
    • You will see a list of customizable parameters, such as dimensions and features. See the table below for the detailed description or refer to parameter reference drawing.
    • Modify these parameters as needed to customize your model.
    • I did all i could to prevent user from inserting invalid values, but there could still be ways to generate completely invalid design - so be reasonable. I'd advise you to change parameters you're sure about first (arrow_diameter, vane_length etc.) and then adjust the rest.
  6. Preview your changes in real-time. The 3D model will update automatically as you adjust the parameters.
  7. Once you're satisfied with the customization, you can render the model (F6) and export it to your desired format with File > Export > ....
    • By default, you will get file with every jig part. However, by changing part_select parameter, you can isolate individual parts in their correct orientation for 3D printing. This way you can split the jig into multiple files.

Parameters

ParameterDescriptionThresholds
base_stylechoose the base shape"polygon" or "star"
lid_stylechoose the outer lid shape"polygon" or "star"
joint_styleeither snap-in ball joints or pin joints"ball" or "pin"
arrow_diameterslightly bigger than the arrow itself (may vary depending on your printer)2 < â– 
arrow_offsetdistance between the bottom of the base and arrow0 < â–  < base_height
base_heightheight of the base5 < â– 
hinge_widthwidth of the hinge cutout on the base2.1 < â–  < depends on arrow_diameter
hinge_thicknessthickness of the hinge extension attached to the bottom of the arm1 < â–  < depends on hinge_width and joint_diameter
hinge_diameterdiameter of the circular part of the hinge that revolves around a joint2 < â–  < hinge_depth
hinge_depthhow deep into the base is the hinge cutout5 < â–  < base_height
joint_diameterdiameter of the joint that connects two halves of the hinge together0 < â–  < depends on joint_style
arm_gapgap for the vane foot, so that tension during clamping is distributed evenly and the vane fits in the closed jig0 < â–  < 1.5
arm_offsetdistance between the top of the base and bottom of the arm0 < â–  < 1.5
vane_countnumber of vanes, typically 3 or 42 < â– 
vane_stylechanges shape of the vane"straight" or "helical"
vane_lengthlength of the vane0 < â– 
vane_widthwidth of the vane0 < â–  < in the console
vane_offsethow far from the end of the arrow will the vane bein the console < â– 
vane_turnsets rotation of the fletching in degrees, negative values flip the directionâ–  < in the console
nockchoose whether to add a nock alignment guide and if so, how you want to rotate it"none", "static" or "optimal"
nock_widthwidth of the nock guide, smallest point of the arrow nock0 < arrow_diameter
nock_heightdepth of nock in your arrow, this will be the height of the nock guide0 < (base_height - arrow_offset)
nock_diameterif the nock alignment guide is enabled, this value takes precedence over arrow_diameter for the base hole when the nocked arrow is wider than bare shaft0 < â– 

Thresholds

Like I already mentioned, I've take some precautions to ensure a valid outputs.

First are constrained sliders in customizer. These are set to accommodate even extreme values and should be sufficient for everyone. They're nothing more than recommendations though and even values beyond their range may work just fine. If - for any reason - you'd want to allow values outside of default range, you can do so in main.scad by editing lines just like this one:

//distance between the bottom of the base and arrow
arrow_offset = 3;//[0:0.1:100]

where comment behind the assignment means [min:precision:max]. Go to customizer documentation for more information.

Second are thresholds in the module itself that are actually checking if desired parameters make sense or not. For example, if you have small jig for 6mm arrows, you can't have 10 centimeter wide hinge. So even if you're able to set something like this in the customizer, invalid parameters will be truncated in the module to a closest valid value. If this happens, you'll be informed about it in the console window with similar line:

hinge_thickness threshold (max = 5.25) reached!

List of some thresholds is in the table above. Some extreme values may still produce invalid results. That could either be because fixing it is more trouble than it's worth or because calculation of thresholds is impossible. Or it can simply be an oversight on my part. If you think something can be improved or you discover a bug, raise an issue or submit PR.

Also, not all parameters are available in the customizer. Some of them do not change and should not have an effect on the validity of the generated output. However, if you did some testing and think some of these default values could be adjusted to generate better results, let me know.

6.0_arm_helical-right-2deg.stl 3.2MB
6.0_arm_straight.stl 3.0MB
6.0_base.stl 6.7MB
6.0_lid.stl 18.1KB
8.0_arm_helical-right-2deg.stl 3.2MB
8.0_arm_straight.stl 3.0MB
8.0_base.stl 6.7MB
8.0_lid.stl 18.7KB
fletching_jig_all.scad 18.8KB
fletching_jig_v1.3.zip 6.5KB
fletching_jig_v2.0.zip 7.6KB
jig_6.0_helical-right-2deg.stl 9.8MB
jig_6.0_straight.stl 9.7MB
jig_8.0_helical-right-2deg.stl 9.8MB
jig_8.0_straight.stl 9.7MB