Slow printing
-
Alright, so I feel like I have come a long way since I replaced my CR-10S board with a Duet. I love it, but I cannot for the life of me figure out how to get it to print faster. I have a Hemera and it was printing lovely at 160mm/s, but now I can't get it over 24mm/s.
I've read other threads and adjusted my acceleration and jerk control but I get no changes. When I am homing it moves fast, but when I start printing it slows down. I'm sure this is something I'm doing in Cura, but again, I've tried everything I could think of and need another pair of eyes to assist.
Slicer: Cura - Deleted printer and added using RepRap flavor
Homing is fast if I do it through the web. When it homes with gcode through the print it is slow. This is where I think the problem is but I'm just missing it.Config.g:
; Configuration file for Duet WiFi (firmware version 3) ; executed by the firmware on start-up ; ; generated by RepRapFirmware Configuration Tool v3.2.3 on Tue Mar 16 2021 10:43:48 GMT-0400 (Eastern Daylight Time) ; General preferences G90 ; send absolute coordinates... M83 ; ...but relative extruder moves M550 P"ThePrintBoss" ; set printer name ; Network M551 P"*******" ; set password M552 P0.0.0.0 S1 ; enable network and acquire dynamic address via DHCP M586 P0 S1 ; enable HTTP M586 P1 S0 ; disable FTP M586 P2 S0 ; disable Telnet ; Drives M569 P0 S0 ; physical drive 0 goes backwards M569 P1 S0 ; physical drive 1 goes backwards M569 P2 S1 ; physical drive 2 goes forwards M569 P3 S0 ; physical drive 3 goes backwards M584 X0 Y1 Z2 E3 ; set drive mapping M350 X16 Y16 Z16 E16 I1 ; configure microstepping with interpolation M92 X80.00 Y80.00 Z400.00 E409.00 ; set steps per mm M566 X3000.00 Y3000.00 Z60.00 E120.00 ; set maximum instantaneous speed changes (mm/min) M203 X10000.00 Y10000.00 Z1000 E1200.00 ; set maximum speeds (mm/min) M201 X5000.00 Y5000.00 Z250.00 E2500.00 ; set accelerations (mm/s^2) M906 X800 Y800 Z800 E1100 I30 ; set motor currents (mA) and motor idle factor in per cent M84 S30 ; Set idle timeout ; Axis Limits M208 X-5 Y-20 Z0 S1 ; set axis minima M208 X300 Y300 Z400 S0 ; set axis maxima ; Endstops M574 X1 S1 P"xstop" ; configure active-high endstop for low end on X via pin xstop M574 Y1 S1 P"ystop" ; configure active-high endstop for low end on Y via pin ystop M574 Z1 S2 ; configure Z-probe endstop for low end on Z ; Z-Probe M950 S0 C"exp.heater7" ; create servo pin 0 for BLTouch M558 P9 C"^zprobe.in" H5 F300 T6000 ; set Z probe type to bltouch and the dive height + speeds G31 P500 X-44 Y0 Z3.5 ; set Z probe trigger value, offset and trigger height M557 X15:270 Y15:270 S20 ; define mesh grid ; Heaters M308 S0 P"bedtemp" Y"thermistor" T100000 B3950 ; configure sensor 0 as thermistor on pin bedtemp M950 H0 C"bedheat" T0 ; create bed heater output on bedheat and map it to sensor 0 M307 H0 B0 S1.00 ; disable bang-bang mode for the bed heater and set PWM limit M140 H0 ; map heated bed to heater 0 M143 H0 S120 ; set temperature limit for heater 0 to 120C M308 S1 P"e0temp" Y"thermistor" T100000 B4725 C7.06e-8 ; configure sensor 1 as thermistor on pin e0temp M950 H1 C"e0heat" T1 ; create nozzle heater output on e0heat and map it to sensor 1 M307 H1 B0 S1.00 ; disable bang-bang mode for heater and set PWM limit M143 H1 S300 ; set temperature limit for heater 1 to 300C ; Fans M950 F0 C"fan0" Q500 ; create fan 0 on pin fan0 and set its frequency M106 P0 S0 H-1 ; set fan 0 value. Thermostatic control is turned off M950 F1 C"fan1" Q500 ; create fan 1 on pin fan1 and set its frequency M106 P1 S1 H1 T45 ; set fan 1 value. Thermostatic control is turned on ; Tools M563 P0 D0 H1 F0 ; define tool 0 G10 P0 X0 Y0 Z0 ; set tool 0 axis offsets G10 P0 R0 S0 ; set initial tool 0 active and standby temperatures to 0C ; Custom settings M918 P2 E2 ; Support for directly-connected LCD ; Miscellaneous M501 ; load saved parameters from non-volatile memory M911 S10 R11 P"M913 X0 Y0 G91 M83 G1 Z3 E-5 F1000" ; set voltage thresholds and actions to run on power loss M671 X10:290:290:10 Y290:290:10:10 P0.5 ; point1 (10,290), point2 (290,290), point3 (290,10), point4 (10,10)
Cura start code:
M201 X1500.00 Y1500.00 Z550.00 E5000.00 ;Setup machine max acceleration M203 X1000.00 Y1000.00 Z1000.00 E1200.00 ;Setup machine max feedrate M204 P500.00 R1000.00 T500.00 ;Setup Print/Retract/Travel acceleration M205 X1500.00 Y1500.00 Z250.00 E2500.00 ;Setup Jerk M220 S100 ;Reset Feedrate M221 S100 ;Reset Flowrate G92 E0 ;Reset Extruder G28; G1 Z5.0 F30000 ;Move Z Axis up G29 S1; Load Mesh G1 X10.1 Y20 Z0.28 F4000.0 ;Move to start position G1 X10.1 Y200.0 Z0.28 F3500.0 E15 ;Draw the first line G1 X10.4 Y200.0 Z0.28 F5500.0 ;Move to side a little G1 X10.4 Y20 Z0.28 F3500.0 E30 ;Draw the second line G92 E0 ;Reset Extruder G1 Z2.0 F1000 ;Move Z Axis up
Cura end gcode:
G91 ;Relative positioning G1 E-2 F2700 ;Retract a bit G1 E-2 Z0.2 F2400 ;Retract and raise Z G1 X5 Y5 F3000 ;Wipe out G1 Z10 ;Raise Z more G90 ;Absolute positionning
Beginning of gcode for print:
;FLAVOR:RepRap ;TIME:52160 ;Filament used: 102.082m ;Layer height: 0.2 ;MINX:4 ;MINY:61.564 ;MINZ:0.2 ;MAXX:296 ;MAXY:243.064 ;MAXZ:66.28 ;Generated with Cura_SteamEngine 4.8.0 T0 M190 S100 M104 S235 M109 S235 M82 ;absolute extrusion mode M201 X1500.00 Y1500.00 Z550.00 E5000.00 ;Setup machine max acceleration M203 X1000.00 Y1000.00 Z1000.00 E1200.00 ;Setup machine max feedrate M204 P500.00 R1000.00 T1500.00 ;Setup Print/Retract/Travel acceleration M205 X2500.00 Y2500.00 Z250.00 E2500.00 ;Setup Jerk M220 S100 ;Reset Feedrate M221 S100 ;Reset Flowrate G92 E0 ;Reset Extruder G28; G1 Z5.0 F30000 ;Move Z Axis up G29 S1; Load Mesh G1 X10.1 Y20 Z0.28 F4000.0 ;Move to start position G1 X10.1 Y200.0 Z0.28 F3500.0 E15 ;Draw the first line G1 X10.4 Y200.0 Z0.28 F5500.0 ;Move to side a little G1 X10.4 Y20 Z0.28 F3500.0 E30 ;Draw the second line G92 E0 ;Reset Extruder G1 Z2.0 F1000 ;Move Z Axis up M83 ;relative extrusion mode G1 F1800 E-0.2 ;LAYER_COUNT:367 ;LAYER:0 M107 M204 T800 M566 X54000 Y54000 G0 F7500 X12.903 Y61.777 Z0.2 M204 P1200 ;TYPE:SKIRT G1 F1800 E0.2 G1 F1200 X13.83 Y61.636 E0.03119 G1 X14.701 Y61.577 E0.02904 G1 X15.022 Y61.568 E0.01068 G1 X15.33 Y61.564 E0.01024 G1 X284.293 Y61.564 E8.94575 G1 X285.149 Y61.575 E0.02847 G1 X286.085 Y61.629 E0.03118 G1 X287.013 Y61.761 E0.03118 G1 X287.927 Y61.973 E0.03121 G1 X288.819 Y62.262 E0.03119 G1 X289.684 Y62.625 E0.0312 G1 X290.514 Y63.061 E0.03118 G1 X291.305 Y63.566 E0.03121 G1 X292.049 Y64.137 E0.03119 G1 X292.742 Y64.769 E0.03119 G1 X293.379 Y65.457 E0.03119 G1 X293.954 Y66.198 E0.0312 G1 X294.465 Y66.984 E0.03118 G1 X294.907 Y67.812 E0.03122 G1 X295.276 Y68.674 E0.03119 G1 X295.571 Y69.564 E0.03119 G1 X295.789 Y70.476 E0.03119 G1 X295.929 Y71.404 E0.03121 G1 X295.987 Y72.265 E0.0287 G1 X295.996 Y72.585 E0.01065 G1 X296 Y72.894 E0.01028 G1 X295.999 Y101.985 E0.96757 G1 X295.992 Y102.473 E0.01623 G1 X295.992 Y105.092 E0.08711 G1 X295.997 Y105.357 E0.00882 G1 X296 Y105.803 E0.01483 G1 X295.999 Y108.842 E0.10108 G1 X295.992 Y109.33 E0.01623 G1 X295.992 Y111.949 E0.08711 G1 X295.997 Y112.214 E0.00882 G1 X296 Y112.66 E0.01483 G1 X295.999 Y115.699 E0.10108 G1 X295.992 Y116.187 E0.01623 G1 X295.992 Y118.806 E0.08711 G1 X295.997 Y119.071 E0.00882 G1 X296 Y119.517 E0.01483 G1 X295.999 Y122.556 E0.10108 G1 X295.992 Y123.044 E0.01623 G1 X295.992 Y125.663 E0.08711 G1 X295.997 Y125.928 E0.00882 G1 X296 Y126.374 E0.01483 G1 X295.999 Y129.413 E0.10108 G1 X295.992 Y129.901 E0.01623 G1 X295.992 Y132.52 E0.08711 G1 X295.997 Y132.785 E0.00882 G1 X296 Y133.231 E0.01483 G1 X295.999 Y136.271 E0.10111 G1 X295.992 Y136.759 E0.01623 G1 X295.992 Y139.378 E0.08711 G1 X295.997 Y139.643 E0.00882 G1 X296 Y140.089 E0.01483 G1 X295.999 Y143.128 E0.10108 G1 X295.992 Y143.616 E0.01623 G1 X295.992 Y146.235 E0.08711 G1 X295.997 Y146.5 E0.00882 G1 X296 Y146.946 E0.01483 G1 X295.999 Y149.985 E0.10108 G1 X295.992 Y150.473 E0.01623 G1 X295.992 Y153.092 E0.08711 G1 X295.997 Y153.357 E0.00882 G1 X296 Y153.803 E0.01483 G1 X295.999 Y156.842 E0.10108 G1 X295.992 Y157.33 E0.01623 G1 X295.992 Y159.949 E0.08711 G1 X295.997 Y160.214 E0.00882 G1 X296 Y160.66 E0.01483 G1 X295.999 Y163.699 E0.10108 G1 X295.992 Y164.187 E0.01623 G1 X295.992 Y166.806 E0.08711 G1 X295.997 Y167.071 E0.00882 G1 X296 Y167.517 E0.01483 G1 X295.999 Y170.556 E0.10108 G1 X295.992 Y171.044 E0.01623 G1 X295.992 Y173.663 E0.08711 G1 X295.997 Y173.928 E0.00882 G1 X296 Y174.374 E0.01483 G1 X295.999 Y177.413 E0.10108 G1 X295.992 Y177.901 E0.01623 G1 X295.992 Y180.52 E0.08711 G1 X295.997 Y180.785 E0.00882 G1 X296 Y181.231 E0.01483 G1 X295.999 Y184.271 E0.10111 G1 X295.992 Y184.759 E0.01623 G1 X295.992 Y187.378 E0.08711 G1 X295.997 Y187.643 E0.00882 G1 X296 Y188.089 E0.01483 G1 X295.999 Y191.128 E0.10108 G1 X295.992 Y191.616 E0.01623 G1 X295.992 Y194.235 E0.08711 G1 X295.997 Y194.5 E0.00882 G1 X296 Y194.946 E0.01483 G1 X295.999 Y197.985 E0.10108 G1 X295.992 Y198.473 E0.01623 G1 X295.992 Y201.092 E0.08711 G1 X295.997 Y201.357 E0.00882 G1 X296 Y201.803 E0.01483 G1 X295.999 Y231.464 E0.98653 G1 X295.99 Y232.191 E0.02418 G1 X295.939 Y233.128 E0.03121 G1 X295.807 Y234.056 E0.03118 G1 X295.598 Y234.97 E0.03118 G1 X295.311 Y235.863 E0.0312 G1 X294.949 Y236.729 E0.03122 G1 X294.515 Y237.56 E0.03118 G1 X294.011 Y238.351 E0.0312 G1 X293.442 Y239.096 E0.03118 G1 X292.811 Y239.791 E0.03122 G1 X292.124 Y240.429 E0.03118 G1 X291.385 Y241.006 E0.03118 G1 X290.599 Y241.518 E0.0312 G1 X289.773 Y241.961 E0.03117 G1 X288.911 Y242.333 E0.03123 G1 X288.022 Y242.629 E0.03116 G1 X287.11 Y242.849 E0.0312 G1 X286.183 Y242.99 E0.03119 G1 X285.299 Y243.051 E0.02947 G1 X284.978 Y243.06 E0.01068 G1 X284.67 Y243.064 E0.01024 G1 X15.565 Y243.063 E8.95047 G1 X14.867 Y243.054 E0.02322 G1 X13.931 Y243.002 E0.03118 G1 X13.002 Y242.87 E0.03121 G1 X12.088 Y242.66 E0.03119 G1 X11.195 Y242.373 E0.0312 G1 X10.33 Y242.01 E0.0312 G1 X9.499 Y241.576 E0.03118 G1 X8.708 Y241.072 E0.0312 G1 X7.963 Y240.502 E0.0312 G1 X7.269 Y239.871 E0.0312 G1 X6.632 Y239.184 E0.03116 G1 X6.055 Y238.444 E0.03121 G1 X5.543 Y237.658 E0.0312 G1 X5.1 Y236.831 E0.0312 G1 X4.729 Y235.97 E0.03118 G1 X4.433 Y235.08 E0.0312 G1 X4.214 Y234.168 E0.0312 G1 X4.073 Y233.241 E0.03119 G1 X4.013 Y232.352 E0.02964 G1 X4.004 Y232.019 E0.01108 G1 X4 Y231.722 E0.00988 G1 X4.001 Y202.643 E0.96717 G1 X4.008 Y202.155 E0.01623 G1 X4.008 Y199.536 E0.08711 G1 X4.003 Y199.271 E0.00882 G1 X4 Y198.825 E0.01483 G1 X4.001 Y195.786 E0.10108 G1 X4.008 Y195.298 E0.01623 G1 X4.008 Y192.679 E0.08711 G1 X4.003 Y192.414 E0.00882 G1 X4 Y191.968 E0.01483 G1 X4.001 Y188.929 E0.10108 G1 X4.008 Y188.441 E0.01623 G1 X4.008 Y185.822 E0.08711 G1 X4.003 Y185.557 E0.00882 G1 X4 Y185.111 E0.01483 G1 X4.001 Y182.071 E0.10111 G1 X4.008 Y181.583 E0.01623 G1 X4.008 Y178.964 E0.08711 G1 X4.003 Y178.699 E0.00882 G1 X4 Y178.253 E0.01483 G1 X4.001 Y175.214 E0.10108 G1 X4.008 Y174.726 E0.01623 G1 X4.008 Y172.107 E0.08711 G1 X4.003 Y171.842 E0.00882 G1 X4 Y171.396 E0.01483 G1 X4.001 Y168.357 E0.10108 G1 X4.008 Y167.869 E0.01623 G1 X4.008 Y165.25 E0.08711 G1 X4.003 Y164.985 E0.00882 G1 X4 Y164.539 E0.01483 G1 X4.001 Y161.5 E0.10108 G1 X4.008 Y161.012 E0.01623 G1 X4.008 Y158.393 E0.08711 G1 X4.003 Y158.128 E0.00882 G1 X4 Y157.682 E0.01483 G1 X4.001 Y154.643 E0.10108 G1 X4.008 Y154.155 E0.01623 G1 X4.008 Y151.536 E0.08711 G1 X4.003 Y151.271 E0.00882 G1 X4 Y150.825 E0.01483 G1 X4.001 Y147.786 E0.10108 G1 X4.008 Y147.298 E0.01623 G1 X4.008 Y144.679 E0.08711 G1 X4.003 Y144.414 E0.00882 G1 X4 Y143.968 E0.01483 G1 X4.001 Y140.929 E0.10108 G1 X4.008 Y140.441 E0.01623 G1 X4.008 Y137.822 E0.08711 G1 X4.003 Y137.557 E0.00882 G1 X4 Y137.111 E0.01483 G1 X4.001 Y134.071 E0.10111 G1 X4.008 Y133.583 E0.01623 G1 X4.008 Y130.964 E0.08711 G1 X4.003 Y130.699 E0.00882 G1 X4 Y130.253 E0.01483 G1 X4.001 Y127.214 E0.10108 G1 X4.008 Y126.726 E0.01623 G1 X4.008 Y124.107 E0.08711 G1 X4.003 Y123.842 E0.00882 G1 X4 Y123.396 E0.01483 G1 X4.001 Y120.357 E0.10108 G1 X4.008 Y119.869 E0.01623 G1 X4.008 Y117.25 E0.08711 G1 X4.003 Y116.985 E0.00882 G1 X4 Y116.539 E0.01483 G1 X4.001 Y113.5 E0.10108 G1 X4.008 Y113.012 E0.01623 G1 X4.008 Y110.393 E0.08711 G1 X4.003 Y110.128 E0.00882 G1 X4 Y109.682 E0.01483 G1 X4.001 Y106.643 E0.10108 G1 X4.008 Y106.155 E0.01623 G1 X4.008 Y103.536 E0.08711 G1 X4.003 Y103.271 E0.00882 G1 X4 Y102.825 E0.01483 G1 X4.001 Y73.089 E0.98902 G1 X4.01 Y72.424 E0.02212 G1 X4.063 Y71.488 E0.03118 G1 X4.195 Y70.559 E0.03121 G1 X4.406 Y69.645 E0.0312 G1 X4.694 Y68.753 E0.03118 G1 X5.057 Y67.888 E0.0312 G1 X5.492 Y67.057 E0.0312 G1 X5.996 Y66.267 E0.03117 G1 X6.566 Y65.522 E0.0312 G1 X7.198 Y64.828 E0.03122 G1 X7.886 Y64.191 E0.03119 G1 X8.626 Y63.615 E0.03119 G1 X9.412 Y63.103 E0.0312 G1 X10.239 Y62.661 E0.03119 G1 X11.101 Y62.291 E0.0312 G1 X11.991 Y61.995 E0.0312 G1 X12.903 Y61.777 E0.03119 G0 F7500 X13.245 Y62.121 G1 F1200 X14.159 Y62.007 E0.03064
-
@brewchester said in Slow printing:
M201 X1500.00 Y1500.00 Z550.00 E5000.00 ;Setup machine max acceleration
M203 X1000.00 Y1000.00 Z1000.00 E1200.00 ;Setup machine max feedrate
M204 P500.00 R1000.00 T500.00 ;Setup Print/Retract/Travel acceleration
M205 X1500.00 Y1500.00 Z250.00 E2500.00 ;Setup Jerkremove these lines from your start gcode
-
@jay_s_uk said in Slow printing:
@brewchester said in Slow printing:
M201 X1500.00 Y1500.00 Z550.00 E5000.00 ;Setup machine max acceleration
M203 X1000.00 Y1000.00 Z1000.00 E1200.00 ;Setup machine max feedrate
M204 P500.00 R1000.00 T500.00 ;Setup Print/Retract/Travel acceleration
M205 X1500.00 Y1500.00 Z250.00 E2500.00 ;Setup Jerkremove these lines from your start gcode
I will try that and see if it works.
-
That did it! Thanks @jay_s_uk !!