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.
Posted
· Manualy joined parts of gcode behave strange
So close!! You almost got it. You actually only have one issue. When it moves the filament from position E1297 to E640 it is moving back about 0.6 meters. That axis (E axis) has it's own speed limit and the move is supposed to be linearly such that it reaches it's X and Y position at the same time as it's new E position - hence it is moving the print head MUCH slower than usual.
Anyway the fix is to tell the printer that we are now already at 640.51694 so it doesn't move backwards.
So you need a G92 E command:
G92 E640.1
Right after printing at E1297 insert the above command. This will tell the printer that the E axis is now at 640.1mm so that when it gets the command E640.51694 it will only move forward slightly. To do it perfectly right - look at the line of code in the original file that you "threw away" and find the last E position before it does the E640.51694. Steal that value and put it after the G92 as shown above.
Posted
(edited)
· Manualy joined parts of gcode behave strange
A little food for thought...
The first line of the vase mode file is an extrusion. It went from a previous point that is no longer in the gcode, to X30.642 Y0.099 E640.51694. In your patched code you are defining the start of that first extrusion as X24.189 Y2.189. Is it close to where it was in the first file? Is it on the correct extrusion path for the vase mode file? You know it wasn't calculated to be on that path.
In this case since it is such a short distance it probably doesn't matter. There are certainly cases where it does matter. If retractions are involved then there would need to be a prime as well.
I would do it this way:
G0 X24.189 Y2.189
;TIME_ELAPSED:1773.432893
;LAYER:20
;TYPE:WALL-OUTER
;MESH:LAMP_SHADE v2.2 wall_0.6_mm.stl
G92 E640.51694
G1 X30.642 Y0.099E640.51694 ;Turn this into just a move that you know is on the vase mode extrusion path
G1 X24.511 Y0.1 Z4.303 E640.72085 ;The G92 line sets the extruder so it is correct at the start point of this line.
G1 X24.423 Y0.917 E640.74819
It's real close to gr5's suggestion. The difference is that without having the exact start of the first extrusion, we ignore it, get to where we need to be, and move on.
In the Cura 5.8 stable release, everyone can now tune their Z seams to look better than ever. Method series users get access to new material profiles, and the base Method model now has a printer profile, meaning the whole Method series is now supported in Cura!
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
Recommended Posts
gr5 2,234
So close!! You almost got it. You actually only have one issue. When it moves the filament from position E1297 to E640 it is moving back about 0.6 meters. That axis (E axis) has it's own speed limit and the move is supposed to be linearly such that it reaches it's X and Y position at the same time as it's new E position - hence it is moving the print head MUCH slower than usual.
Anyway the fix is to tell the printer that we are now already at 640.51694 so it doesn't move backwards.
So you need a G92 E command:
G92 E640.1
Right after printing at E1297 insert the above command. This will tell the printer that the E axis is now at 640.1mm so that when it gets the command E640.51694 it will only move forward slightly. To do it perfectly right - look at the line of code in the original file that you "threw away" and find the last E position before it does the E640.51694. Steal that value and put it after the G92 as shown above.
Link to post
Share on other sites
GregValiant 1,354
A little food for thought...
The first line of the vase mode file is an extrusion. It went from a previous point that is no longer in the gcode, to X30.642 Y0.099 E640.51694. In your patched code you are defining the start of that first extrusion as X24.189 Y2.189. Is it close to where it was in the first file? Is it on the correct extrusion path for the vase mode file? You know it wasn't calculated to be on that path.
In this case since it is such a short distance it probably doesn't matter. There are certainly cases where it does matter. If retractions are involved then there would need to be a prime as well.
I would do it this way:
G0 X24.189 Y2.189
;TIME_ELAPSED:1773.432893
;LAYER:20
;TYPE:WALL-OUTER
;MESH:LAMP_SHADE v2.2 wall_0.6_mm.stl
G92 E640.51694
G1 X30.642 Y0.099
E640.51694;Turn this into just a move that you know is on the vase mode extrusion pathG1 X24.511 Y0.1 Z4.303 E640.72085 ;The G92 line sets the extruder so it is correct at the start point of this line.
G1 X24.423 Y0.917 E640.74819
It's real close to gr5's suggestion. The difference is that without having the exact start of the first extrusion, we ignore it, get to where we need to be, and move on.
Edited by GregValiantLink to post
Share on other sites
dnoha 0
Great, both of yours inputs are very helpful.
I'm gona try it today.
Thank You ..
Link to post
Share on other sites