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

    Macro's - Repository?

    Scheduled Pinned Locked Moved
    General Discussion
    8
    23
    4.4k
    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.
    • Phaedruxundefined
      Phaedrux Moderator @Alex.cr
      last edited by

      @alex-cr that's great. I will definitely be checking that out.

      Z-Bot CoreXY Build | Thingiverse Profile

      1 Reply Last reply Reply Quote 1
      • Alex.crundefined
        Alex.cr
        last edited by Alex.cr

        @Phaedrux I hope it's not too rough. My old engineering professors and current coworkers would kill me for not labeling all the axis...

        Voron2.4/Duet3 SBC+6HC+3HC+1LC+1HCL(x2) - Delta/Duet2 Wifi - CubePro/Duet2 Wifi+Duex5 - Laser/Duet3 Mini5+ - Cel Robox - U̶p̶3̶0̶0̶+/D̶u̶e̶t̶3̶ ̶6̶H̶C̶+̶LC1̶ - F̶T̶-̶5̶/̶D̶u̶e̶t̶2̶ ̶W̶i̶f̶i̶ - S̶o̶l̶i̶d̶o̶o̶d̶l̶e̶

        1 Reply Last reply Reply Quote 0
        • fmaundefined
          fma
          last edited by fma

          Thanks! I used gnuplot, which is able to fit any curve, and successfully computes A and B. Here is how I did:

          • extrude 50mm (for example) at different speeds and read the real extrusion length;

          • build a table with 2 cols: first col = speed, second col = error from theorical extrusion / theorical extrusion. You need to revert the sign so the table contains the correction to retreive the correct extrusion;

          • save this table in a file called 'extrusion.dat';

          • in gnuplot, do:

          A = 1
          B = 1
          f(x) = A * X + B * x * x
          fit f(x) 'extrusion.dat' via A, B <<<<< will print A and B and errors
          plot 'extrusion.data'
          replot f(x)

          Hope this helps.

          Frédéric

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