-
-
Notifications
You must be signed in to change notification settings - Fork 2.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
include a retract E-jerk value within the speed menu #19998
Comments
This would seem to be a personalization thing. I'll go ahead and close this as the proper way to handle this is to put it into the Startup for your particular machine. |
@GregValiant that completely aviods what im trying to do, the "M205 E10" sets the max e-jerk for the whole print, including linear advance and retraction, but i want a setting where it only adjusts the jerk setting for retractions, where it doesnt affect the print e-jerk or linear advance e-jerk. also just for proof that you need high e-jerk values when you want to print fast with LA: https://marlinfw.org/docs/features/lin_advance.html |
So what you are looking for is something like this? This would cover retractions and the travel move and then reset the Jerk after the prime move. |
yes, that looks exactly what i want to do. |
Then here ya go. I have a Pull Request in for MaxVolumetricSpeed. Adding Jerk was not difficult as all the other code was already there. |
Added Max E Jerk adjustment per Ultimaker#19998 . It is inserted along with the M203's.
Added Max E Jerk adjustment per Ultimaker#19998 . It is inserted along with the M203's. Update to Max Volumetric Update
@GregValiant thank you! i will now test this out to make sure it works as expected. Edit: it absolutely works, my printer is now finally somewhat silent when printing now! thank you for making this workaround script. |
@GregValiant UPDATE: it doesnt work, i checked that my printer was silent, which it is, but i didnt check the speed of the printer, which it is printing at a very slow acceleration, i decided to look into the .gcode of the file it outputs, and it inputs the M205 E8 value, but after the travel and deretract, there is no M205 E20 to convert it back to the original jerk setting. UPDATE again: this is where you read the instructions, i didnt see that it uses the print jerk as the original jerk value, and both x/y jerk, and the e-jerk value i set for thhe extruder were 8, so i just though the script wasnt working, now setting the print jerk to 20, it works fine now, i just had to set everything in the print jerk subsettings to the original xy jerk value of 8. |
Post the gcode file. It worked for me two minutes ago. With Volumetric it's So that looks good to me. |
It's all working good now, I just didn't follow the instructions within the script, having the print jerk lower than it should be. |
There isn't a separate setting for the "E-Jerk" so I picked the "Print Jerk" for the reset value. You can set that to whatever you need and then make other adjustments with the "per feature" jerk settings. If the pull request is accepted I'll come back and close this. |
Added Max E Jerk adjustment per Ultimaker#19998 . It is inserted along with the M203's. Update to Max Volumetric Update Update MaxVolumetricSpeed.py Minor changes and added an "if" statement when resetting the E-speed as it might not be enabled.
Is your feature request related to a problem?
when using LA, it is required to have the E-jerk a high value of around 15-25 to get acceptable acceleration speeds out of a bowden printer for a marlin printer, but that also causes the extruder to be very audible when retracting for me at least, and reducing the e-jerk reduces or gets rid of the sound when retracting, so a seperate setting for retraction e jerk would benefit here.
Describe the solution you'd like
just like i mentioned above, this setting would be in the speed section, and adjusting this E-jerk value would adjust the amount the retraction jerks, and only the retraction.
Describe alternatives you've considered
no alternatives of what i can think of.
Affected users and/or printers
everyone who uses a bowden printer, which has marlin on it, as well as linear advance turned on while printing.
Additional information & file uploads
No response
The text was updated successfully, but these errors were encountered: