UltiMaker uses functional, analytical and tracking cookies. Tracking cookies enhance your experience on our website and may also collect your personal data outside of Ultimaker websites. If you agree with the use of tracking cookies, click “I agree, continue browsing”. You can withdraw your consent at any time. If you do not consent with the use of tracking cookies, click “Refuse”. You can find more information about cookies on our Privacy and Cookie Policy page.
Cura 4.8 Why unload all the filament after initial positioning
Posted
(edited)
· Cura 4.8 Why unload all the filament after initial positioning
Did you install the printer in Cura as a "custom" printer or did you use a definition and alter it? I think the problem you are experiencing is more related to "when did I turn on the machine and what did I do" than to USB/SD card.
This is from the startup Gcode in that file:
G28 X0 Y0 ;move X/Y to min endstops
G28 Z0 ;move Z to min endstops
G1 Z1 F1000 ;move up slightly
G1 Y60.0 Z0 E9.0 F1000.0;intro line
G1 Y100.0 E21.5 F1000.0 ;continue line
G92 E0 ;zero the extruded length again
There is no G92 E0 before the first line of extrusion. If the extruder has a previous location, it is moving to E9 before it does anything else. If it is starting out for example at E456 then yes, it is going to do a very long retraction before starting to print. If you turn on the printer and it's fresh the E is at 0 so the Gcode works as expected whether it's via USB or from the SD card.
In regards to that first extrusion line - it starts at X0 Y0 Z1.0 and extrudes 9mm of plastic to X0 Y60.0 Z0. Then the second part of the extrusion in the next line is 40mm long but also at a Z of 0. The printer is being asked to squeeze 12.5mm of filament into a space of zero volume. Not good.
I suggest that you go into "Machine Settings / Start-Up Gcode" and make the following changes:
G28 X0 Y0 ;move X/Y to min endstops
G28 Z0 ;move Z to min endstops
G92 E-5 ; Add this line to set E location to a slight retraction
G1 Z0.2 F1000 ;move up slightly ;Change this line
G1 F3000 E0 ;Add this line to prime the nozzle - it may leave a little puddle.
G1 Y60.0 Z0.2 E3.0F1500.0;intro line ;Change this line. The 3.0 is for a .4 nozzle at 150% flow.
G1 Y100.0 E5.0F1500.0 ;continue line ;Change this line to continue at a decent flow.
Edited by GregValiant
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!
S-Line Firmware 8.3.0 was released Nov. 20th on the "Latest" firmware branch.
(Sorry, was out of office when this released)
This update is for...
All UltiMaker S series
New features
Temperature status. During print preparation, the temperatures of the print cores and build plate will be shown on the display. This gives a better indication of the progress and remaining wait time. Save log files in paused state. It is now possible to save the printer's log files to USB if the currently active print job is paused. Previously, the Dump logs to USB option was only enabled if the printer was in idle state. Confirm print removal via Digital Factory. If the printer is connected to the Digital Factory, it is now possible to confirm the removal of a previous print job via the Digital Factory interface. This is useful in situations where the build plate is clear, but the operator forgot to select Confirm removal on the printer’s display. Visit this page for more information about this feature.
A year after the merger of Ultimaker and MakerBotQQ, we have unlocked the ability for users of our Method series printers to slice files using UltiMaker Cura. As of this release, users can find profiles for our Method and Method XL printers, as well as material profiles for ABS-R, ABS-CF, and RapidRinse. Meaning it’s now possible to use either Cura or the existing cloud-slicing software CloudPrint when printing with these printers or materials
Recommended Posts
GregValiant 1,142
Did you install the printer in Cura as a "custom" printer or did you use a definition and alter it? I think the problem you are experiencing is more related to "when did I turn on the machine and what did I do" than to USB/SD card.
This is from the startup Gcode in that file:
G28 X0 Y0 ;move X/Y to min endstops
G28 Z0 ;move Z to min endstops
G1 Z1 F1000 ;move up slightly
G1 Y60.0 Z0 E9.0 F1000.0;intro line
G1 Y100.0 E21.5 F1000.0 ;continue line
G92 E0 ;zero the extruded length again
There is no G92 E0 before the first line of extrusion. If the extruder has a previous location, it is moving to E9 before it does anything else. If it is starting out for example at E456 then yes, it is going to do a very long retraction before starting to print. If you turn on the printer and it's fresh the E is at 0 so the Gcode works as expected whether it's via USB or from the SD card.
In regards to that first extrusion line - it starts at X0 Y0 Z1.0 and extrudes 9mm of plastic to X0 Y60.0 Z0. Then the second part of the extrusion in the next line is 40mm long but also at a Z of 0. The printer is being asked to squeeze 12.5mm of filament into a space of zero volume. Not good.
I suggest that you go into "Machine Settings / Start-Up Gcode" and make the following changes:
G28 X0 Y0 ;move X/Y to min endstops
G28 Z0 ;move Z to min endstops
G92 E-5 ; Add this line to set E location to a slight retraction
G1 Z0.2 F1000 ;move up slightly ;Change this line
G1 F3000 E0 ;Add this line to prime the nozzle - it may leave a little puddle.
G1 Y60.0 Z0.2 E3.0 F1500.0;intro line ;Change this line. The 3.0 is for a .4 nozzle at 150% flow.
G1 Y100.0 E5.0 F1500.0 ;continue line ;Change this line to continue at a decent flow.
Edited by GregValiantLink to post
Share on other sites