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

    Euclid probe and Z=0 datum

    Scheduled Pinned Locked Moved
    Tuning and tweaking
    4
    23
    1.3k
    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.
    • fcwiltundefined
      fcwilt @dhusolo
      last edited by

      @dhusolo said in Euclid probe and Z=0 datum:

      @fcwilt My first post has all the data. I just ran G32 again and this is the result.

      Leadscrew adjustments made: 0.048 0.048 0.060, points used 3, (mean, deviation) before (0.052, 0.006) after (-0.000, 0.000)
      16 points probed, min error -0.080, max error 0.108, mean 0.023, deviation 0.050
      Height map saved to file 0:/sys/heightmap.csv
      

      c9084c45-aa82-483a-9857-5f517a84dee6-image.png

      Aside from not using very many points that heightmap looks OK.

      Are you using the left, front grid point to set the Z=0 Datum?

      Frederick

      Printers: a E3D MS/TC setup and a RatRig Hybrid. Using Duet 3 hardware running 3.4.6

      dhusoloundefined 1 Reply Last reply Reply Quote 0
      • dhusoloundefined
        dhusolo @fcwilt
        last edited by

        @fcwilt No I use bed center for Z=0 Datum. That's the way I've always done it.

        fcwiltundefined sinned6915undefined 2 Replies Last reply Reply Quote 0
        • fcwiltundefined
          fcwilt @dhusolo
          last edited by

          @dhusolo said in Euclid probe and Z=0 datum:

          @fcwilt No I use bed center for Z=0 Datum. That's the way I've always done it.

          That's fine - that is what I do.

          Try specifying a 3x3 grid or a 5x5 grid. The goal is to have the XY position of the center grid point match the XY position used for setting the Z=0 Datum.

          If all is good the center most point should be reported as 0 deviation.

          Frederick

          Printers: a E3D MS/TC setup and a RatRig Hybrid. Using Duet 3 hardware running 3.4.6

          dhusoloundefined 1 Reply Last reply Reply Quote 0
          • dhusoloundefined
            dhusolo @fcwilt
            last edited by

            @fcwilt I went with a 5x5 grid and this is the result

            Leadscrew adjustments made: -0.197 -0.156 -0.063, points used 3, (mean, deviation) before (-0.142, 0.055) after (0.000, 0.000)
            Warning: the height map has a substantial Z offset. Suggest use Z-probe to establish Z=0 datum, then re-probe the mesh.
            25 points probed, min error -0.242, max error -0.005, mean -0.139, deviation 0.059
            

            deb65cea-03d3-4486-94f9-9301947763a7-image.png

            fcwiltundefined 1 Reply Last reply Reply Quote 0
            • fcwiltundefined
              fcwilt @dhusolo
              last edited by

              @dhusolo

              Did you determine the XY position of the center point of the grid and use that as the probe XY position when doing the G30 before creating the height map?

              Remember when setting the XY position of the probe you have to take into account the XY offsets of the probe.

              Frederick

              Printers: a E3D MS/TC setup and a RatRig Hybrid. Using Duet 3 hardware running 3.4.6

              1 Reply Last reply Reply Quote 0
              • sinned6915undefined
                sinned6915 @dhusolo
                last edited by

                @dhusolo Did you get this sorted out ?

                1. I usually recommend that the Z point be taken at the geometric center of the 3 kinematic mounts or Z-screws. that point should not really move- everything tips through this point.

                2. I seem to get better results with 4 point bedleveling than with 3, that is why the example macros are with 4.

                3. Verify that your Z probe trigger point is right. That might throw you off too. Lots of ways to measure this, but I will hold off on your reply.

                4. Rememer that sag in the gantry will show up in the terrain map as high points. Its hard to say from the screens shots, but your X rails might be a hair out. You should decide if its worth fussing with.

                The folks here and on the Euclid and RC discord are very helpful. We'll get you sorted.

                sinneD

                dhusoloundefined 1 Reply Last reply Reply Quote 1
                • dhusoloundefined
                  dhusolo @sinned6915
                  last edited by

                  @sinned6915 When I try 4 it gives me an error stating I'm unable to do 4 point leveling because I have 3 lead screws defined.

                  I switched back to a super pinda. and the mesh looks similar to the last one I posted 2 days ago. I'm going to take a step back and look at the frame and motion mechanics. I think something else might be contributing to this or my bed is really that bed.

                  sinned6915undefined 1 Reply Last reply Reply Quote 0
                  • sinned6915undefined
                    sinned6915 @dhusolo
                    last edited by sinned6915

                    @dhusolo I only have 3 leadscrews also. I probe 4 points that are symmetric in proportion to the shape of my bed.

                    This is the code I currently run :

                    ; ***********************************************************
                    ; bed4point.g
                    ; ***********************************************************
                    ; probe is -16.4 in X -29.4 in Y bed is 290 in X 325 in Y
                    ; adjust coords so that probe hits symmetric points on bed and avoids dock
                    ; echo move.axes[2].machinePosition
                    ; echo "Running bed4point.g"
                    G90 
                    G30 X145 Y145.0 F600.0                   ; home Z
                    G30 P0 X17.0 Y30.0 F9000.0 Z-99999       ; probe front left PEI
                    G30 P1 X17.0 Y265.0 F9000.0 Z-99999      ; probe back left PEI
                    G30 P2 X278.0 Y265.0 F9000.0 Z-99999     ; probe back right PEI
                    G30 P3 X278.0 Y30.0 F9000.0 Z-99999 S3   ; probe near front right leadscrew and calibrate 3 motors PEI
                    
                    ; echo "bed4point.g complete" 
                    
                    dhusoloundefined 1 Reply Last reply Reply Quote 0
                    • dhusoloundefined
                      dhusolo @sinned6915
                      last edited by

                      @sinned6915 Ah ok i see what I did wrong. You have 4 G30 coordinates to probe but you still use S3 to define you have 3 leadscrews.

                      sinned6915undefined 1 Reply Last reply Reply Quote 0
                      • sinned6915undefined
                        sinned6915 @dhusolo
                        last edited by

                        @dhusolo glad that helped.
                        whenever you decide to go back to Euclid, we are here for your if yo need help.
                        I think you will be well served by both the SuperPinda and the Euclid.

                        dhusoloundefined 1 Reply Last reply Reply Quote 0
                        • dhusoloundefined
                          dhusolo @sinned6915
                          last edited by

                          @sinned6915 Ok so I think the problem was my lead screws. My teflon coated lead screws arrived today and it's more manageable.

                          Railcore 250zl bed
                          8ae9c9aa-a58b-4f79-b747-cd1fed015ea4-image.png

                          Granted not as good as my printer with the Railcore 300zl bed and Super Pinda
                          c8598700-945d-49d6-802b-86f1cfe13b47-image.png
                          but it's better than what it was.

                          fcwiltundefined sinned6915undefined 2 Replies Last reply Reply Quote 0
                          • fcwiltundefined
                            fcwilt @dhusolo
                            last edited by

                            @dhusolo

                            One nice thing about the Euclid is that it uses a simple microswitch - which are perhaps the most accurate of all Z probe designs.

                            And while the Super Pinda is nice, being temp compensated, it requires a probing speed a good deal slower than a microswitch.

                            I haven't found the specified switching frequency of the Super Pinda. The switching frequency of a capacitive or inductive probe is a primary factor in how fast you can probe. Some capacitive probes have a switching frequency as low as 50 Hz. Top quality inductive probes will have a switching frequency as high as 3000 Hz or better.

                            Frederick

                            Printers: a E3D MS/TC setup and a RatRig Hybrid. Using Duet 3 hardware running 3.4.6

                            dhusoloundefined 1 Reply Last reply Reply Quote 0
                            • sinned6915undefined
                              sinned6915 @dhusolo
                              last edited by

                              but it's better than what it was.
                              i would be tempted to take that and call it a day! the amount of effort to reduce that could be a lot to futzing time.

                              1 Reply Last reply Reply Quote 0
                              • dhusoloundefined
                                dhusolo @fcwilt
                                last edited by

                                @fcwilt Agreed. I planned to incorporate it in my build and was disappointed when I couldn't use it. However after enough tweaking I think I'm in a better place. Upgrading to the PTFE coated leadscrews helped quite a bit. I also figured out the leadscrew offsets were slightly off. Once I changed the config results started to improve. Even more so after using 4 points to calculate the leadscrew offset. This was my last G32 without the spring steel sheet on.

                                8bae2ed7-b959-4195-ac48-706a0157e10c-image.png

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