Giter Club home page Giter Club logo

cyclone's Introduction

Cyclone

Overview

Cyclone is a script for generating and executing filament winding toolpaths. It was written for simple, 3-axis machines, (like my Contraption) and currently only supports winding onto cylindrical mandrels. The gcode that it generates should work with many CNC controllers, but my machine utilizes a low-cost 3D printer main board running Marlin and the output may need to be modified slightly for other boards.

Download and Setup

Cyclone is currently provided ony as the source code, which can be cloned or downloaded from this repository. The script requires node.js) to run. Once node.js is installed and Cyclone is downloaded, navigate to the Cyclone directory in a terminal and install its dependencies with npm i.

Machine Configuration

Future releases of Cyclone might include the ability to specify which gcode axis each machine axis is connected to, but for now, it is hardcoded to match my machine. The X axis is carriage movement, the Y axis is mandrel rotation, and the Z axis is delivery head rotation. Carriage coordinates are given in millimeters, so tune your steps/mm as usual for the X axis. The mandrel and delivery head are both rotational, which is not typical for the 3D printers that Marlin usually drives. The output for these axes is degrees rather than millimeters, so when configuring them, set the steps/mm to the steps/degree value from the motor manufacturer, also factoring in any gear ratios such that Y360 produces a single complete mandrel rotation.

Generating a Toolpath

The command for generating a gcode file with Cyclone is:

npm run cli -- plan -o <gcode output file> <wind input file>

The input to Cyclone that specifies the parameters of the tube you wish to make is a .wind file, which use JSON formatting and metric units. At the top level, they consist of these sections:

{
    "layers": [],
    "mandrelParameters": {
        "diameter": 69.75,
        "windLength": 940
    },
    "towParameters": {
        "width": 7,
        "thickness": 0.5
    },
    "defaultFeedRate": 9000
}

Layers:

layers is an array of the definitions of the layers that you would like the machine to wind, in the order that they will be wound. Each element in the array can be either a hoop wind or a helical wind.

Hoop Winds:

A hoop wind can be added to the laminate with:

{
    "windType": "hoop",
    "terminal": false
}

The single parameter, "terminal", sets if the machine should do a there-and-back circuit, or just wind from one end of the mandrel to the other and stop, which is useful for application of heat shrink tape. An error will be produced if any layers follow a terminal layer, and planning will end.

Helical Winds:

A helical wind can be added to the laminate with:

{
    "windType": "helical",
    "windAngle": 55,
    "patternNumber": 2,
    "skipIndex": 1,
    "lockDegrees": 720,
    "leadInMM": 30,
    "leadOutDegrees": 90,
    "skipInitialNearLock": true
}

The most commonly changed parameters are "windAngle"(in degrees), and "patternNumber"/"skipIndex". The latter two parameters are standard in filament winding and other resources describe in detail, but in summary, the "pattern number" sets how many evenly-distributed "start positions" there will be around the mandrel, and the "skip index" is the increment that will be applied to the "start position" index at the end of a circuit to know where to start the next one. The remaining parameters are for fine tuning, and will be documented when they stabilize more.

Tow Parameters:

"towParamers" is where you input details about the tow that the tube is wound from. The "thickness" parameter is currently unused.

Mandrel Parameters:

"mandrelParameters" includes the mandrel diameter, and the length of the mandrel that you would like to wind on. The actual length of usuable tube will be less than this due to the "locks" (excess build up of material at either end of the tube where the carriage turns around) which are usually cut off.

Executing a Toolpath

There are several, controller-dependent options when you have generated a gcode file and wish to run it on your machine. For Marlin-driven machines, Cylone has a command for streaming the gcode to the controller and displaying the progress in a terminal. The syntax for this command is:

npm run cli -- run -p <port> <gcode file>

To interrupt your machine while this command is running, press ctrl-c in your terminal window, or use the reset button on your Marlin board, which will stop motion and also exit the script.

License

Cyclone is released under the GNU GPL v3 license. The source code is distributed so you can build cool stuff with it, and with the hope of encouraging more hobbyist tinkering in this area that I find fascinating.

Contributing

Cyclone is mostly purpose-built for my filament winder, but contributions are welcome if you find it useful and have ideas for improvements. Some larger projects could include adding support for 4 axis winders and tapered parts, the creation of a GUI, and generalization to support more winders/controllers.

cyclone's People

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.