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

    Colinear Tripteron Progress

    Scheduled Pinned Locked Moved
    My Duet controlled machine
    7
    21
    2.7k
    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.
    • oliofundefined
      oliof
      last edited by oliof

      I did update RRFLibraries. I likely made a mistake. I will try again tomorrow.

      Update: As it is past midnight, I just tried again and now I was able to build successfully against v3.02-dev plus my pretty self-contained patches (only kinematics additions). I will sacrifice test on my prototype machine later this week.

      <>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 0
      • oliofundefined
        oliof
        last edited by

        The firmware runs, and nothing burns or explodes. First move:

        https://photos.app.goo.gl/JPLjTp6sa2km2GvX6

        Astute observers will see the completely wrong tool coordinates at the end of the video. Other things are also wrong (object model for example does not report the name, and some other things are not as I expected. In other words: This needs more work).

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

        droftartsundefined 1 Reply Last reply Reply Quote 1
        • droftartsundefined
          droftarts administrators @oliof
          last edited by

          @oliof Very cool. Love it!

          Ian

          Bed-slinger - Mini5+ WiFi/1LC | RRP Fisher v1 - D2 WiFi | Polargraph - D2 WiFi | TronXY X5S - 6HC/Roto | CNC router - 6HC | Tractus3D T1250 - D2 Eth

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

            And with a bit of strategic lifting of code from other kinematics and the original implementation, we have the first proof of coordinated moves in Colinear Tripteron Kinematics in RepRapFirmware:

            https://photos.app.goo.gl/UyoLtbQVdYme7fNd8

            It's a short minute of test move to Z100 and then some straight lines on X and Y.

            Some observations: A tower is to the right, and X goes from left to right. This is seemingly absurd coming from the world of linear deltas, but it simplified the kinematics.

            Now, this was the easy part. The hard part is implementing all the things people expect like endstop correction, object model, etc. I'll keep you updated.

            <>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
            • oliofundefined
              oliof
              last edited by

              Implemented endstop correction (without autocalibration for now) and added endstops. Found out that moves in the X/Y plane are off by a factor of 1.25, and while that is close to the typical 16/20 tooth confusion for steps/mm, movements in Z are correct so it's not that.

              My hunch is that it has to do with arm length, but I currently lack enough extrusions of different arms to replace the ones I have, and my actual understanding of the kinematics isn't deep enough to reason about it mathematically. If all else fails, I'll implement a compensation factor.

              Also, the considerable backlash is concerning, and in parts a result of the multiple linkages moving around in different planes. I do have some Rc car dampeners on order to see if they can improve the stability.

              On the software side, some things don't seem to work even though I lifted them from other kinematics verbatim (NumHomingButtons from LinearDeltaKinematics for example -- I still get individual buttons for homing X/Y/Z even though NumHomingButtons returns 0. I likely missed some other thing I need to set is one; the kinematics info in the ObjectModel is the other).

              And I really need to get to LimitPosition and write down some notes how to construct a Colinear Tripteron so it prints reasonable (basically you need to allow arms to move lower than Z=0).

              <>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 1
              • giostarkundefined
                giostark
                last edited by

                For me all this is like Cyrillic 😰 but I'm curious...
                For backlash do you mean the small wave when it start a new strait line ? (it is pretty clear at any start line). Seems there is some play that all the time found its rearrangement at specific angles of the arms , how is intended remove it with dampeners?

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

                  The system is not very rigid, if I push an arm or the effector, there is some back-and-forth action:

                  https://photos.app.goo.gl/m4fgY8rMg5vfDYd1

                  An experiment with rubber tubing seems to alleviate that a bit:

                  https://photos.app.goo.gl/DFMC1Wirr2k1nVTy8

                  But that configuration means the rubber would need to stretch across the whole build area.

                  So I need to figure out another way to "eat" the energy without disrupting the intended moves.

                  The shock absorbers are an experiment, I have no idea if and how they will work out.

                  Mind you, according to the original designer, this is the second known build of this design, and his was scrapped at this development stage two years ago. So I am basically on my own here (and a bit out of my depth to be honest (-: ), striking new ground.

                  Adventure!

                  <>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 1
                  • oliofundefined
                    oliof
                    last edited by oliof

                    • Compensation factor works!
                    • Kinematics are reported as implemented in the object model!
                    $ curl -s 'http://192.168.86.203/rr_model?key=move.kinematics&flags=v,d4' | jq
                    {
                      "key": "move.kinematics",
                      "flags": "v,d4",
                      "result": {
                        "armAngle": 30,
                        "homedHeight": 140,
                        "name": "colineartripteron",
                        "planarMoveCompensation": 0.8,
                        "printRadius": 120,
                        "towers": [
                          {
                            "endstopAdjustment": -0
                          },
                          {
                            "endstopAdjustment": -0
                          },
                          {
                            "endstopAdjustment": -0
                          }
                        ]
                      }
                    }
                    
                    • DWC does not use NumHomeButtons to determine whether the axis specific homing buttons are shown, but matches the kinematics names. @chrishamm I will likely send a patch your way soon.

                    My experiment with shock absorbers was a success, because I learned something: They clearly limit the inherent backlash in the loosely coupled linkages (the joints are fine, it's just an aspect of the colinear tripteron's multi planar setup), but the ones I tested with also interfere with the movement system. I can either try to find a better fit (with no idea how to improve from where I am other than I need shock absorbers with longer arms), or live with it for now.

                    Biggest missing piece for something I find worthy of requesting a merge is a half-way proper implementation of LimitPosition.

                    <>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 1
                    • oliofundefined
                      oliof
                      last edited by

                      Forgot a photo!
                      damper.jpg

                      This RC car shock absorber is 70mm in length and likely installed suboptimally.

                      <>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
                      • oliofundefined
                        oliof
                        last edited by

                        Replaced the 70mm ones with 128mm ones (which improved actuating length from 12mm to 24mm).

                        Here are two videos, first one showing some arc moves, second one showing some 90 degree turns (the latter one at 20/40/80/100/120 mm per second).

                        https://photos.app.goo.gl/Y3frGmEFgrJKHJWF6
                        https://photos.app.goo.gl/MVpwJCj64moNfV69A

                        Especially in the second you can see that backlash is still there and while the shock absorbers eat them, they also make for weird starts and I'm still not 100% sure that they are a good idea overall.

                        Oh well. Unless someone has a good idea, I think I am at the mechanical limits of this build. Maybe if RRF 3.2 implements junction deviation this particular kinematics would benefit from it. Maybe not.

                        Time to take a break from this (I have a CoreXY to get up and running again sitting nearby, possibly a welcome distraction).

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

                        JoergS5undefined 1 Reply Last reply Reply Quote 1
                        • JoergS5undefined
                          JoergS5 @oliof
                          last edited by JoergS5

                          @oliof This is a nice looking printer and the first version is IMHO a prototype and proof of concept and a source to get new ideas. The shock absorbers look nice, I will try them (for a totally different idea).

                          I would have some ideas, but better for a new prototype, like making the frame stiffer or trying Hylite or another compliant mechanism as hinges.

                          Anyway, Tripteron is an interesting printer, because the three arms should give high precision.

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

                            @JoergS5 thanks for the reminder that this is but a prototype which has fulfilled it's main duty: A reference machine to use for testing the kinematics implementation for RRF.

                            Compliant hinges are a great idea, unfortunately I lack the workshop to machine Hylite at any precision.

                            The frame itself is quite stiff, but some additional bottom corner bracing could help. I have the right stuff around for that (-:

                            I have one more idea: shorter arms, which should reduce the lever action somewhat. Also needed to improve my understanding of the kinematics. The extrusions for that arrived a bit late yesterday, but I should be able to give that a spin today.

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

                            JoergS5undefined 1 Reply Last reply Reply Quote 0
                            • JoergS5undefined
                              JoergS5 @oliof
                              last edited by JoergS5

                              @oliof said in Colinear Tripteron Progress:

                              Compliant hinges are a great idea, unfortunately I lack the workshop to machine Hylite at any precision.

                              I saw that you are located in germany also. I bought a few plates of Hylite and when my CNC is ready, I will make tries. I can give you some samples then for testing, for free of course. But it will take maybe 2-3 months from now until I can route them precise.

                              I bought 3 of those here:
                              https://www.modulor.de/hylite-alu-pp-verbundplatte-silber-1-2-x-250-x-500-mm.html

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

                                Thanks for the great offer! l am looking forward to what you'll do with Hylite (the Hylite thing I hoped for never came to be, sadly). Let me know when you are ready and we will sort something out (-:

                                In the mean time I exchanged the arms for shorter lengths (150mm per segment, rather than 200mm), and backlash reduced visibly on my square movement (so much that I can drop the shock absorbers. Oh well). But now I have the hinge collapsing if arms stretch out, so they're likely to short (for the planned workspace, but for this prototype it's cool beans).

                                Also, my compensation factor is still needed, so it's probably tower distance that affects effector placement. Bears testing, but likely not before July (experimentation funds running low).

                                PS: Modulor is just a bike ride away from me, very dangerous place. For my wallet.

                                <>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 0
                                • First post
                                  Last post
                                Unless otherwise noted, all forum content is licensed under CC-BY-SA