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

    RRF 3.4 input shaping preview available

    Scheduled Pinned Locked Moved
    Beta Firmware
    25
    205
    25.1k
    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.
    • dc42undefined
      dc42 administrators @GeneRisi
      last edited by

      @generisi we always post a message when we do a new official release (including a beta or RC release). If you have a github account then you can get additional notifications. To set them up, go to https://github.com/Duet3D/RepRapFirmware and click on Watch.

      Duet WiFi hardware designer and firmware engineer
      Please do not ask me for Duet support via PM or email, use the forum
      http://www.escher3d.com, https://miscsolutions.wordpress.com

      GeneRisiundefined 1 Reply Last reply Reply Quote 0
      • botundefined
        bot @sebkritikel
        last edited by bot

        Very interesting post, thank you for sharing.

        This is encouraging news, to me. It really shows that it works but that it's not magic.

        IMO, you can tune your printer to achieve better results than shown. The amount that the input shaping is reducing the ringing on the flat sections is tremendous. You had an absolutely enormous amount of ringing showing through (but I grant that the lighting may be showing it worse).

        If, before applying input shaping, you tune your jerk/accel/feedrate settings to be much more conservative, I bet you will either see some effect from input shaping on those smaller moves or those smaller moves will at least be less noticeably problematic.

        *not actually a robot

        1 Reply Last reply Reply Quote 1
        • GeneRisiundefined
          GeneRisi @dc42
          last edited by

          @dc42 Thanks! (and done!)

          1 Reply Last reply Reply Quote 0
          • Dudek23undefined
            Dudek23
            last edited by

            After a week of printing, I can confirm that the latest beta is very stable. Everything works just as good for me as in version 3.3. As for the input shaper, I am able to achieve good results with zvdd, but only on one axis at time, so I join the request for the possibility to use of different frequencies per axis.

            CR3Dundefined 1 Reply Last reply Reply Quote 1
            • dc42undefined
              dc42 administrators
              last edited by

              @dudek23 thanks for the feedback!

              Duet WiFi hardware designer and firmware engineer
              Please do not ask me for Duet support via PM or email, use the forum
              http://www.escher3d.com, https://miscsolutions.wordpress.com

              1 Reply Last reply Reply Quote 0
              • CR3Dundefined
                CR3D @Dudek23
                last edited by

                @dudek23 yes different frequencies and different shapers for the different axis would be a nice option 🙂

                Christian from CR-3D
                Homepage:
                www.cr-3d.de

                Facebook:
                https://www.facebook.com/cr3d.official

                Our Discord Server
                https://discord.gg/SxRaPNuRdA

                Thingiverse Profile:
                https://www.thingiverse.com/cr-3d_official/about

                dc42undefined 1 Reply Last reply Reply Quote 2
                • dc42undefined
                  dc42 administrators @CR3D
                  last edited by

                  @cr3d an issue with using different shapers for different axes is that the axes will no longer move exactly in sync during acceleration and deceleration. For example, corners printed at 45deg to X and Y may become less square. However, I can make different shapers per axis an option to try, at least on Duet 3.

                  Duet WiFi hardware designer and firmware engineer
                  Please do not ask me for Duet support via PM or email, use the forum
                  http://www.escher3d.com, https://miscsolutions.wordpress.com

                  PCRundefined CR3Dundefined 2 Replies Last reply Reply Quote 1
                  • PCRundefined
                    PCR @dc42
                    last edited by

                    @dc42 how does klipper handle this? only curious how its done? are they syncing axis then?

                    dc42undefined 1 Reply Last reply Reply Quote 0
                    • dc42undefined
                      dc42 administrators @PCR
                      last edited by

                      @pcr said in RRF 3.4 input shaping preview available:

                      @dc42 how does klipper handle this? only curious how its done? are they syncing axis then?

                      Good question! The Klipper docs mention "smoothing" but don't elaborate. They also suggest use of low acceleration.

                      Duet WiFi hardware designer and firmware engineer
                      Please do not ask me for Duet support via PM or email, use the forum
                      http://www.escher3d.com, https://miscsolutions.wordpress.com

                      PCRundefined 2 Replies Last reply Reply Quote 0
                      • PCRundefined
                        PCR @dc42
                        last edited by

                        @dc42 https://github.com/KevinOConnor/klipper/blob/master/klippy/chelper/kin_shaper.c

                        static double
                        shaper_xy_calc_position(struct stepper_kinematics *sk, struct move *m
                                                , double move_time)
                        {
                            struct input_shaper *is = container_of(sk, struct input_shaper, sk);
                            if (!is->sx.num_pulses && !is->sy.num_pulses)
                                return is->orig_sk->calc_position_cb(is->orig_sk, m, move_time);
                            is->m.start_pos = move_get_coord(m, move_time);
                            if (is->sx.num_pulses)
                                is->m.start_pos.x = calc_position(m, 'x', move_time, &is->sx);
                            if (is->sy.num_pulses)
                                is->m.start_pos.y = calc_position(m, 'y', move_time, &is->sy);
                            return is->orig_sk->calc_position_cb(is->orig_sk, &is->m, DUMMY_T);
                        }
                        

                        i am no coder but looks like the calculating it

                        1 Reply Last reply Reply Quote 0
                        • PCRundefined
                          PCR @dc42
                          last edited by

                          @dc42 ah i think klipper can only use one shaper for x and y but diffrent freq. 😉

                          So i think different freq. per axis should be possible?

                          dc42undefined 1 Reply Last reply Reply Quote 0
                          • dc42undefined
                            dc42 administrators @PCR
                            last edited by dc42

                            @pcr if you use different frequencies per axis, the axes will move out of step. But the amount of out-of-step movement may be small enough to be acceptable, especially if the accelerations are low. It makes no difference whether the same or different input shapers are used per axis.

                            Duet WiFi hardware designer and firmware engineer
                            Please do not ask me for Duet support via PM or email, use the forum
                            http://www.escher3d.com, https://miscsolutions.wordpress.com

                            CR3Dundefined 1 Reply Last reply Reply Quote 0
                            • CR3Dundefined
                              CR3D @dc42
                              last edited by CR3D

                              @dc42

                              Sorry dc42 I have to contradict you. Without doing X and Y separately, it won't work properly and properly. Out of interest, I looked at clippers last week and took a measurement. As a result you get the following graphs and also the suggestions for the frequency and the shaper. and these are always different for X and Y.

                              Input-Shaper_Y.jpeg Input-Shaper_X.jpeg

                              In addition, you will also receive a recommendation for the respective max.accelerations per axis ...

                              Christian from CR-3D
                              Homepage:
                              www.cr-3d.de

                              Facebook:
                              https://www.facebook.com/cr3d.official

                              Our Discord Server
                              https://discord.gg/SxRaPNuRdA

                              Thingiverse Profile:
                              https://www.thingiverse.com/cr-3d_official/about

                              dc42undefined 1 Reply Last reply Reply Quote 0
                              • dc42undefined
                                dc42 administrators @CR3D
                                last edited by

                                @cr3d said in RRF 3.4 input shaping preview available:

                                Sorry dc42 I have to contradict you.

                                Which bit of my post are you contradicting?

                                Duet WiFi hardware designer and firmware engineer
                                Please do not ask me for Duet support via PM or email, use the forum
                                http://www.escher3d.com, https://miscsolutions.wordpress.com

                                1 Reply Last reply Reply Quote 0
                                • skrotzundefined
                                  skrotz @dc42
                                  last edited by

                                  @dc42 I was able to do a print and captured some stepper errors with debug output. Included is my config.g, the gcode I was printing, and the output logs. Hopefully this helps diagnose the issues some of us are having with RRF 3.4. This was with PA disabled , and input shaping enabled via M593 P"ei2" F41 S0.10

                                  config.g
                                  printOutput.txt
                                  CFFFP_xyzCalibration_cube_205.gcode

                                  dc42undefined 2 Replies Last reply Reply Quote 0
                                  • dc42undefined
                                    dc42 administrators @skrotz
                                    last edited by

                                    @skrotz thanks for that, it shows clearly some step errors on the extruder drive and that PA was not involved. I will investigate.

                                    Duet WiFi hardware designer and firmware engineer
                                    Please do not ask me for Duet support via PM or email, use the forum
                                    http://www.escher3d.com, https://miscsolutions.wordpress.com

                                    1 Reply Last reply Reply Quote 0
                                    • CR3Dundefined
                                      CR3D @dc42
                                      last edited by

                                      @dc42

                                      I ment this part here:

                                      "if you use different frequencies per axis, the axes will move out of step. But the amount of out-of-step movement may be small enough to be acceptable, especially if the accelerations are low. It makes no difference whether the same or different input shapers are used per axis."

                                      I think it is absolutely necessery and with klipper it also works...

                                      Just for information 🙂 We want the same perfect shaper here in RRF 🙂

                                      Christian from CR-3D
                                      Homepage:
                                      www.cr-3d.de

                                      Facebook:
                                      https://www.facebook.com/cr3d.official

                                      Our Discord Server
                                      https://discord.gg/SxRaPNuRdA

                                      Thingiverse Profile:
                                      https://www.thingiverse.com/cr-3d_official/about

                                      1 Reply Last reply Reply Quote 0
                                      • psychotik2k3undefined
                                        psychotik2k3
                                        last edited by

                                        i really think that at least different frequencies should be possible because i really don't see how the frequency should be the same on X and Y as the weight in movement is not the same at all, and thus the moment.

                                        oliofundefined 1 Reply Last reply Reply Quote 0
                                        • oliofundefined
                                          oliof @psychotik2k3
                                          last edited by

                                          @psychotik2k3 could still be that the frequencies are close enough that the wider band from one configuration is enough to improve both X and Y

                                          <>RatRig V-Minion Fly Super5Pro RRF<> V-Core 3.1 IDEX k*****r <> RatRig V-Minion SKR 2 Marlin<>

                                          1 Reply Last reply Reply Quote 2
                                          • Dudek23undefined
                                            Dudek23 @dc42
                                            last edited by

                                            @dc42 This is exactly what happens in Klipper at high smoothing values. In recent versions, during the calibration procedure, the software gives the recommended acceleration values ​​so that the loss of accuracy is not noticeable. I think it is definitely worth testing how it will look in rrf, even for duet3 only, maybe the loss of accuracy will be acceptable.

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