Jump to content

Heating speed-up plugin


RStei

Recommended Posts

Posted (edited) · Heating speed-up plugin

When printing small parts I got a bit embarrased because Cura G-Code first heats the bed, waits for it to reach its temperature, then the nozzle. So I decided to code a small Cura 15.04-plugin to start heating the nozzle while in parallel heating the bed.

The code:

 

#Name: Parallel Heat#Info: Start pre-heating the nozzle while heating the bed#Depend: GCode#Type: postprocess#Param: temperature(float:170) Preheat Temperature (deg C)__copyright__ = "Copyright © 2016 Roland Steinbach  - Released under terms of the AGPLv3 License"import refrom Cura.util import profilewith open(filename, "r") as f:lines = f.readlines()with open(filename, "w") as f:f.write("M104 S%f\n" % (temperature))for lIndex in xrange(len(lines)):line = lines[lIndex]f.write(line) 

 

Save this as "parallelHeat.py" and place it in your plugin-folder. Then activate it and set a somewhat reasonable temperature for the nozzle.

Now when starting to print, the nozzle gets heated in parallel with the bed. This speeds up the print appr. your bed-heat time.

Edited by Guest
  • Link to post
    Share on other sites

    Posted (edited) · Heating speed-up plugin

    What material do you need such a behavior for? Heating up the nozzle should take much less time than heating up the bed. Cura heats the bed up to a certain level and then starts to heat the nozzle in parallel. On my UM2 with 35W heater the two are pretty well synchronized.

    Please be also aware that legacy Cura you wrote the plugin for is not supported anymore by Ultimaker.

    Edited by Guest
  • Link to post
    Share on other sites

    Posted (edited) · Heating speed-up plugin

    This is especially for the impatient ;)

    My nozzle usually takes appr. 2 minutes to heat up for ABS, think of a small print with about 5 min printtime. This saves you almost 25% of printing time (in fact the time the nozzle needs to heat up).

    Most important in your post are the words "and then" it heats the nozzle, this is done in parallel with the plugin.

    Edited by Guest
    last chapter added
  • Link to post
    Share on other sites

    Posted · Heating speed-up plugin

    I know (I also can do that in Repetier Host) but OTOH sometimes I do have the object already sliced and just want to print it.

    Don't know if it's worth the discussion, the plugin helps me and I just wanted to share if someone is similar impatient ;-).

  • Link to post
    Share on other sites

    Posted · Heating speed-up plugin

    @ultiarjan

    Someone should add: this does not work with an UM2 (resp. with UltiGcode).

    I assume, Roland uses this for an UMO or a different printer.

  • Link to post
    Share on other sites

    Posted · Heating speed-up plugin

    With UltiGCode the heating is done in the firmware, not in the GCode, so no luck there. I don't have an UM2, so could not test that.

  • Link to post
    Share on other sites

    Create an account or sign in to comment

    You need to be a member in order to leave a comment

    Create an account

    Sign up for a new account in our community. It's easy!

    Register a new account

    Sign in

    Already have an account? Sign in here.

    Sign In Now
    • Our picks

      • UltiMaker Cura 5.8 beta released
        Another Cura release has arrived and in this 5.8 beta release, the focus is on improving Z seams, as well as completing support for the full Method series of printers by introducing a profile for the UltiMaker Method.
          • Like
        • 1 reply
      • Introducing the UltiMaker Factor 4
        We are happy to announce the next evolution in the UltiMaker 3D printer lineup: the UltiMaker Factor 4 industrial-grade 3D printer, designed to take manufacturing to new levels of efficiency and reliability. Factor 4 is an end-to-end 3D printing solution for light industrial applications
          • Thanks
          • Like
        • 3 replies
    ×
    ×
    • Create New...