On 12/21/2022 at 12:57 AM, fangq said:I am wondering if there is a setting I can force cura to only perform orthogonal movement for travel paths
Intuitively, I would say this should be possible with e Search and Replace postprocessing script, replacing all travel moves with both an X and Y movement with two travel moves, one with just the X component and the other with just the Y component.
I have not tested this extensively, but you could try the following in a Search and Replace script:
Search: G0 (.*) X([\d.]*) Y([\d.]*)(.*?)$
Replace: G0 \1 X\2\4\nG0 Y\3
Use Regular Expressions: checked
Make sure you get the spaces correctly.
This replaces eg
G0 F6480 X193.043 Y137.069 Z0.27
with
G0 F6480 X193.043 Z0.27
G0 Y137.069
copy/paste error
-
1
-
1
Recommended Posts
MariMakes 192
Hey @fangq,
Welcome to the Ultimaker Community 🎉.
This is a crazy interesting example of extreme Cura usage.
Do you mind if I share it with our Print Profile Experts?
I see the dark blue lines that indicate unretracted travels, those are the ones you want to avoid.
Did you have a look at the different Combing settings?
https://github.com/Ghostkeeper/SettingsGuide/blob/master/resources/articles/travel/retraction_combing.md
I also believe that Travel Avoid Distance might have a large impact on what you are trying to do.
https://github.com/Ghostkeeper/SettingsGuide/blob/master/resources/articles/travel/travel_avoid_distance.md
I also know we have a bug with travels that are not retracted when...
Models are placed less than 4mm apart some travels are not retracted.
Even thinner models need to be 6 mm apart before getting retracted.
Maybe you can take that into account into your design untill the bug is fixed.
Do you have a project file for us? It contains the printer and settings we need for troubleshooting.
To save a project file go to File -> Save project.
Link to post
Share on other sites