• Tags
  • Documentation
  • Order
  • Register
  • Login
Duet3D Logo Duet3D
  • Tags
  • Documentation
  • Order
  • Register
  • Login

Incorrect extrusion amount on slow and/or small axis moves

Scheduled Pinned Locked Moved
General Discussion
5
43
2.2k
Loading More Posts
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • undefined
    ardenpm @deckingman
    last edited by 22 Jun 2022, 12:12

    No, I'm not assuming anything. I had a similar query regarding the speeds of my UVA and B axis which run concurrently with X and Y but not necessarily over the same distances. This is how it was explained to me by @DC42 and he writes the firmware so he should know.

    Great, that is what I was trying to ask (perhaps clumsily), I wasn't sure if this was known expected behaviour of the firmware or what you were trying to deduce from my explanation of what I was seeing (which could have meant a bug). Obviously if David says that's how it works, then that's how it works.

    However I need to calculate the expected time of the extrusion move, determine how slow to limit the movement axis to to make it take the same time and then limit its feedrate (then restore it afterwards).

    I've already told you how to that.

    Yes, and that's exactly what I used to do it, which was a very helpful idea (I just threw together a spreadsheet to do it by hand but should be able to put that into Gcode pretty easily as well). I only now had the opportunity to test it out. It also took me a few read throughs to fully grasp what was being proposed. I was just reiterating that what is needed is possible but requires some of the juggling you mentioned.

    But hey, if you don't want to believe what I say, that's fine. I just wish I hadn't wasted so much of my time trying to help....

    I'm not sure what gave that impression, your explanation and idea were definitely of help and appreciated.

    undefined 1 Reply Last reply 23 Jun 2022, 10:24 Reply Quote 0
    • undefined
      ardenpm @ardenpm
      last edited by 23 Jun 2022, 10:24

      So putting this together now that it is clear what's going on, I'm using a small macro which takes the same B, E and F parameters as my G1 calls but computes the feedrate limit for me, changes it then sets it back to the original value. This seems to be working well and I can now do a nice smooth drop of my priming platform while extruding at the needed rate. Obviously fairly specific to my use case but in case it's helpful to anyone else here it is.

      var defaultSpeed = move.axes[4].speed
      var extrusionTimeMinutes = param.E / param.F
      var newSpeed = abs(param.B - move.axes[4].userPosition) / var.extrusionTimeMinutes
      echo {var.newSpeed},{move.axes[4].userPosition},{param.B}
      if var.newSpeed < var.defaultSpeed
      M203 B{var.newSpeed}
      G1 B{param.B} E{param.E} F{param.F}
      M203 B{var.defaultSpeed}
      else
      G1 B{param.B} E{param.E} F{param.F}

      Thanks all for the lively discussion.

      undefined 1 Reply Last reply 23 Jun 2022, 10:29 Reply Quote 0
      • undefined
        gloomyandy @ardenpm
        last edited by 23 Jun 2022, 10:29

        @ardenpm Wouldn't it be easier just to compute a new feedrate and use it directly (as an F parameter) rather than setting a limit and relying on the firmware to apply it?

        undefined 1 Reply Last reply 23 Jun 2022, 10:50 Reply Quote 0
        • undefined
          ardenpm @gloomyandy
          last edited by 23 Jun 2022, 10:50

          @gloomyandy No, because I don't want to limit the E axis to that feedrate, I want it to run at the specified rate but the B axis much slower than normal. Without this the E axis will run up to its limit to try and sync with the short B axis move time. Without doing this I need to slow down the E axis too much.

          undefined undefined 2 Replies Last reply 23 Jun 2022, 11:30 Reply Quote 0
          • undefined
            deckingman @ardenpm
            last edited by 23 Jun 2022, 11:30

            @ardenpm I see what you are doing but why not keep it simple and just set M203 E300 (to set say 5mm/sec), then do the G1 move and use M203 E3600 (to restore the feedrate value)?

            Ian
            https://somei3deas.wordpress.com/
            https://www.youtube.com/@deckingman

            undefined 1 Reply Last reply 23 Jun 2022, 11:45 Reply Quote 0
            • undefined
              ardenpm @deckingman
              last edited by 23 Jun 2022, 11:45

              @deckingman Yes, that’s true I could also do that. I’ll need to use the object model to find the current tool to apply it to the right extruder motor so that should be possible. I haven’t confirmed that limiting the extruder instead of the movement axis has the same affect but I would assume it must. I would still set the limit of the extruder though to the feedrate I actually want since otherwise it would just always run at 300 (I have multiple steps at different feedrates in my case). But limiting the extruder is simpler and shouldn’t hit the other minimum speed issue. I’ll definitely give that a go.

              undefined 1 Reply Last reply 23 Jun 2022, 12:24 Reply Quote 0
              • undefined
                deckingman @ardenpm
                last edited by 23 Jun 2022, 12:24

                @ardenpm You could by-pass using the object model by setting the maximum extrusion rate for all extruders. So for example M203 E300:300:300:300 and then put them all back with M203 E3600:3600:3600:3600.

                Ian
                https://somei3deas.wordpress.com/
                https://www.youtube.com/@deckingman

                undefined 1 Reply Last reply 23 Jun 2022, 12:54 Reply Quote 0
                • undefined
                  ardenpm @deckingman
                  last edited by 23 Jun 2022, 12:54

                  @deckingman I prefer to restore the feedrates to their previous value rather than a hard coded value when done so if I change my configuration I don't need to hunt for values in my different macros. However that should be pretty straight forward, something like this.

                  var defaultSpeed0 = move.extruders[0].speed
                  var defaultSpeed1 = move.extruders[1].speed
                  var defaultSpeed2 = move.extruders[2].speed
                  var defaultSpeed3 = move.extruders[3].speed
                  M203 E{param.F}
                  G1 B{param.B} E{param.B} F{param.F}
                  M203 E{var.defaultSpeed0}:{var.defaultSpeed1}:{var.defaultSpeed2}:{var.defaultSpeed3}

                  Which is definitely still simpler than the first macro I had there. Definitely lots of ways to skin this particular cat.

                  1 Reply Last reply Reply Quote 0
                  • undefined
                    fcwilt @ardenpm
                    last edited by 23 Jun 2022, 15:02

                    @ardenpm said in Incorrect extrusion amount on slow and/or small axis moves:

                    @gloomyandy No, because I don't want to limit the E axis to that feedrate, I want it to run at the specified rate but the B axis much slower than normal. Without this the E axis will run up to its limit to try and sync with the short B axis move time. Without doing this I need to slow down the E axis too much.

                    If B and E are not kept in sync how do you see that working? Would E just continue to run after B is done?

                    Thanks.

                    Frederick

                    Printers: a small Utilmaker style, a small CoreXY and a E3D MS/TC setup. Various hotends. Using Duet 3 hardware running 3.4.6

                    undefined 1 Reply Last reply 23 Jun 2022, 21:49 Reply Quote 0
                    • undefined
                      ardenpm @fcwilt
                      last edited by 23 Jun 2022, 21:49

                      If B and E are not kept in sync how do you see that working? Would E just continue to run after B is done?

                      @fcwilt That's actually the issue, it does attempt to keep them in sync and it thinks on the extruder side it has enough headroom to run it all the way up to my configured maximum speed of 3600mm/m for extruders, where as my extruders can handle more like only 300mm/m without skipping.

                      The reason the extruders are configured to allow a speed much higher than they can actually extrude is because of retractions, which happen at a much faster speed than extrusions. So by limiting the extruder temporarily to the limit for practical extrusion it should force the movement axis to slow down further to say in sync.

                      undefined 1 Reply Last reply 23 Jun 2022, 22:40 Reply Quote 0
                      • undefined
                        fcwilt @ardenpm
                        last edited by 23 Jun 2022, 22:40

                        @ardenpm said in Incorrect extrusion amount on slow and/or small axis moves:

                        If B and E are not kept in sync how do you see that working? Would E just continue to run after B is done?

                        @fcwilt That's actually the issue, it does attempt to keep them in sync and it thinks on the extruder side it has enough headroom to run it all the way up to my configured maximum speed of 3600mm/m for extruders, where as my extruders can handle more like only 300mm/m without skipping.

                        The reason the extruders are configured to allow a speed much higher than they can actually extrude is because of retractions, which happen at a much faster speed than extrusions. So by limiting the extruder temporarily to the limit for practical extrusion it should force the movement axis to slow down further to say in sync.

                        Does your slicer have a place you can enter code during a retraction? Some of them do.

                        That would solve the speed problem as you could set the extruder speed to the max for extrusion and in the retraction handler up the speed during retraction and then put it back to normal.

                        Frederick

                        Printers: a small Utilmaker style, a small CoreXY and a E3D MS/TC setup. Various hotends. Using Duet 3 hardware running 3.4.6

                        undefined undefined 2 Replies Last reply 24 Jun 2022, 00:18 Reply Quote 0
                        • undefined
                          tfjield @fcwilt
                          last edited by 24 Jun 2022, 00:18

                          @fcwilt Or he could use firmware retraction.

                          undefined 1 Reply Last reply 24 Jun 2022, 00:44 Reply Quote 0
                          • undefined
                            fcwilt @tfjield
                            last edited by 24 Jun 2022, 00:44

                            @tfjield said in Incorrect extrusion amount on slow and/or small axis moves:

                            @fcwilt Or he could use firmware retraction.

                            How does that handle the speed issue?

                            Thanks.

                            Frederick

                            Printers: a small Utilmaker style, a small CoreXY and a E3D MS/TC setup. Various hotends. Using Duet 3 hardware running 3.4.6

                            undefined 1 Reply Last reply 24 Jun 2022, 00:56 Reply Quote 0
                            • undefined
                              tfjield @fcwilt
                              last edited by 24 Jun 2022, 00:56

                              @fcwilt Oh, you're right, I was thinking backwards. I forgot that he wants to limit extrusion to below the max, not retraction.

                              1 Reply Last reply Reply Quote 1
                              • undefined
                                ardenpm @fcwilt
                                last edited by 24 Jun 2022, 05:49

                                Does your slicer have a place you can enter code during a retraction? Some of them do.

                                @fcwilt I don't believe PrusaSlicer has custom G-code for retraction.

                                That would solve the speed problem as you could set the extruder speed to the max for extrusion and in the retraction handler up the speed during retraction and then put it back to normal.

                                I don't really see doing the above as too big a problem in any case since it's only for these specific priming moves which already have a fairly large amount of Gcode scripting around them, so it's just a few extra lines.

                                1 Reply Last reply Reply Quote 0
                                38 out of 43
                                • First post
                                  38/43
                                  Last post
                                Unless otherwise noted, all forum content is licensed under CC-BY-SA