Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/reilleya/cyclone
Control software for Marlin-driven filament winders
https://github.com/reilleya/cyclone
carbon-fiber composite-materials composites filament-winding
Last synced: about 2 months ago
JSON representation
Control software for Marlin-driven filament winders
- Host: GitHub
- URL: https://github.com/reilleya/cyclone
- Owner: reilleya
- Created: 2022-02-27T00:50:54.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2024-07-07T17:09:50.000Z (6 months ago)
- Last Synced: 2024-10-10T20:43:30.708Z (2 months ago)
- Topics: carbon-fiber, composite-materials, composites, filament-winding
- Language: TypeScript
- Homepage: http://www.reilley.net/winder
- Size: 168 KB
- Stars: 33
- Watchers: 7
- Forks: 9
- Open Issues: 2
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
Cyclone
==========Overview
--------
Cyclone is a script for generating and executing filament winding toolpaths. It was written for simple, 3-axis machines, (like my [Contraption](https://reilley.net/winder)) 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](https://github.com/MarlinFirmware/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](https://nodejs.org/)) 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 install canvas
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
```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
```
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.