Você está no 3DFinder
Buscamos em Thingiverse, MakerWorld e Printables ao mesmo tempo para te dar o melhor de cada uma.
Descrição
All rolls of filament have a "sweet spot" temperature for printing, which can vary based on the material, your extruder setup, and even the brand. The easiest way to find the ideal printing temperature is to run a single test print that gradually changes temperature over time, then review the results to see which section has the best layer adhesion, overhangs, bridging, etc. To do this, we need to insert the desired temperature changes into the sliced G-code file before sending it to the printer. While it's not particularly difficult to edit the G-code manually, it's quicker and less error-prone to use a script.
Generally, when I get a new roll of filament the routine is to:
- check the recommended temperature range as given on the filament
- create/edit a temperature tower with that range
- slice the model
- run the gcode file through the python script
- review the print then mark the optimal temp on the side of the spool
Instructions
To use the script you'll need to have [python](https://www.python.org/downloads/) installed. Export your gcode and simply drag and drop the file onto the python scripts icon then follow the prompts to enter four parameters for your tower: 1. the starting temperature 2. the final temperature 3. the amount at which the temperature should change (between regions) 4. the height of the tower's base if it has oneThe script will then tell you which temps will print at which height and what nozzle temperature commands it found in your existing gcode.
To automate this further, most slicers let you specify a post-processing script (and save it to a profile), allowing the script to run automatically whenever you export your G-code. For example, with PrusaSlicer, go to Print Settings > Output options > Post processing scripts and enter... `"path\to\python.exe" "path\to\gcode_temp_changer.py";`