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

    IDEX BOTH ON CORE XY

    Scheduled Pinned Locked Moved
    MultiAxis Printing
    7
    67
    8.5k
    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.
    • JVanundefined
      JVan @dwuk3d
      last edited by JVan

      @dwuk Its this setting. Setting it to 2 will result in double height infill lines: 309a65fe-c641-45cf-adc1-c09a683e43af-grafik.png
      On Orca and (probably) Bambu its this. Here you set infill layer heigth directly. Either as mm or as % times nozzle diameter:
      4d784c57-6014-4f94-861d-4e4c2ae8c8cc-grafik.png

      dwuk3dundefined 1 Reply Last reply Reply Quote 1
      • dwuk3dundefined
        dwuk3d @JVan
        last edited by

        @JVan Added an option to colour each segment differently so that that they are easier to see.

        Then for the parallel print segmentation I have simply offset all of the segments on alternate layers by a specified amount and I think it works quite well - so great idea thanks.

        Screenshot with outer walls segmented - so that it is easier to see the offset joins
        F1FA4388-98F1-42F2-9071-9D8393BE4821.png

        Or with the outer walls non segmented -
        FB3B412F-7129-4B42-8FD8-F0C35A123877.png

        Will do the same to the mirrored segmented version next - will need to grow the width of the non mirrored section in the middle on both sides on alternate layers to get the same effect.

        1 Reply Last reply Reply Quote 1
        • dwuk3dundefined
          dwuk3d @JVan
          last edited by

          @JVan thanks - will try those options out.

          My Blender simulator doesn't currently support multiple nozzle sizes - but should be fairly easy to add.

          o_lampeundefined 1 Reply Last reply Reply Quote 0
          • o_lampeundefined
            o_lampe @dwuk3d
            last edited by o_lampe

            @dwuk said in IDEX BOTH ON CORE XY:

            but should be fairly easy to add.

            In the meantime, for simulation you can reduce infill to 25% of the actual value when you plan to use double layer thickness and twice the nozzle diameter.

            1 Reply Last reply Reply Quote 0
            • dwuk3dundefined
              dwuk3d
              last edited by dwuk3d

              Trying to improve my algorithm for sizing the Y Axis segments when a) Up to 4 gantries are available and b) where the amount of extrusion time is unevenly spread across the print area.

              In the first instance there are fairly big constraints on the minimum size of the segments due to the need to avoid head clashes.

              Only when segments have reached their minimum sizes is there any benefit in using additional gantries in parallel.

              And also it is only feasible to vary the start points and sizes of the segments to match better with where the extrusion is happening once the minimum sizes are all reached.

              The attached is my attempt at working out (based on a minimum gap in the example of 3 or xxx) when it is worth starting to use extra gantries - which is highlighted in yellow.

              The pink highlighted segments are then marked as the ones that can be varied in sized in order to better spread them over where the most work is needed on each layer.

              I have changed my post processor to in its first pass collect an approximation of how much work is needed in each Y integer dimension in terms of raw extruding time - by dividing the length of the extruded move by the rate ( I know this is not completely accurate due to acceleration and deceleration) - and then dividing this by the Y movement and spreading these extrusions out evenly over each integer dimension in the range.

              Will then try to use these calculated figures to help decide how the segments can be shifted around in order to make them as balanced as possible in each of the two passes.

              Will then also consider slowing down the rates slightly in the segments that have the least work - so that ideally all print heads are in use for most of the time - rather than being intermittently idle and therefore causing oozing.

              996D68EB-0B31-4D71-8735-FBB17CB58BCD.png

              o_lampeundefined 1 Reply Last reply Reply Quote 0
              • o_lampeundefined
                o_lampe @dwuk3d
                last edited by o_lampe

                @dwuk It seems the post processor is pretty busy. Munching through GBs of gcode is much harder than splitting an .stl file of several MB.
                Do you use an SBC or external CPU? It would be cool, if you could process layer by layer, while already printing.
                You don't want the whole processing take longer than reducing printing time ...

                PS: Maybe you'll find a ready to use "center of gravity" calculation code? To me this is a close enough approximation for the best coordinate, where to put the cut. Would only work when cutting the .stl file I guess.... But maybe that's the right way of processing:

                • decide where to place and cut the object , based on the stl file
                • then do the cut in the gcode file
                dwuk3dundefined 1 Reply Last reply Reply Quote 0
                • dwuk3dundefined
                  dwuk3d @o_lampe
                  last edited by

                  @o_lampe Yes the code is getting a fair bit more complex. So far I don't think there any cross layer calculations so it could potentially be done just in time layer by layer, however ultimately I think it would best be done on the CPU that is doing the slicing (or as part of the slicer).

                  A present I am doing the processing on a MacBook Air in python.

                  I found an error in the segmentation of the early examples where I was using an X rather than Y coordinate - correcting this is making the segmented models look a look more evenly split.

                  Just now need to address the slightly shifting around of segments for more efficient splitting - or for example the front (Green/Grey/Orange) and back (Black and Blue) of the cab in the attached 8 way segmented example (Shown without outer wall single threaded)
                  B2731456-CE79-42C6-9A3D-6CC0BCAEE33D.png

                  Version with layers alternately offset (probably a bit too far) for improved strength.
                  9C282EBE-9E1C-45CB-9935-7601880805C8_1_105_c.jpeg

                  Will consider whether working the segments out from the centre (or most dense area) has any benefits when I am working on tweaking the segment boundaries for more efficient splits for parallel printing.

                  dwuk3dundefined 1 Reply Last reply Reply Quote 1
                  • dwuk3dundefined
                    dwuk3d @dwuk3d
                    last edited by

                    @dwuk Illustrated a bit better on this version with pass1 4xgantry nozzles all in white, with pass2 in multi colour - the issue I would like to address is the really thin (and therefore inefficient) green and red sections at the bottom front of the cab and white and the back of the cab.
                    1C2B6839-1FDD-482F-A2E0-C243BDFCA828.png

                    dwuk3dundefined 1 Reply Last reply Reply Quote 0
                    • dwuk3dundefined
                      dwuk3d @dwuk3d
                      last edited by dwuk3d

                      @dwuk Going down a bit of a rabbit hole with the tweaking - decided to try accurately calculating the time for extrusions - including acceleration and deceleration etc - not sure if these calculations are correct - but probably doesn't matter too much at this stage.

                      Screenshot 2024-12-28 at 12.32.38.png

                      Then used this to select passes with segments in them which quite a big print time difference and then have simply taken the segment with the longest time and either reduced its size down to the minimum size it can be for head clash avoidance, or halved its size. I have then added this adjustment onto the segment with the shortest time.

                      It didn't select the layers I expected - probably because the segments in the cab are already at minimum size.

                      It makes the print look a bit more messy - but at least I can pick out the adjusted layers quite easily,

                      Will run some prints through my simulations with and without the adjustments to see if the layers that have been adjusted print any more efficiently.

                      Example 3 gantry print shown - with pass1 heads shown in white and pass2 multi colour.

                      Screenshot 2024-12-28 at 12.28.33.png

                      o_lampeundefined 1 Reply Last reply Reply Quote 2
                      • o_lampeundefined
                        o_lampe @dwuk3d
                        last edited by

                        @dwuk I'm impressed, you came quite far with simulating all the different splitting algorythms.
                        But isn't it time to make split versions for one tool head? Just to see the real world output of your mods with inner layers overlapping and tons of retracts...

                        I can think of several things that can go wrong trying to print the first layer. It's already nerve-wracking with a single object, although print surface and bed-adhesion has improved a lot.
                        We know from former dual tool printers, how hard it is to find the sweet spot regarding z-height (and without mesh levelling)
                        Somehow the second tool always scratched off the freshly laid tracks of tool one...

                        dwuk3dundefined 2 Replies Last reply Reply Quote 0
                        • dwuk3dundefined
                          dwuk3d @o_lampe
                          last edited by

                          @o_lampe Thanks and agreed - will be interesting to see some actual single print head test prints to see what I need to do in terms of retractions and zHopping etc. to get them to work. Printers currently out of action due to house guests - but hope to be able to get access again at the back end of the week.

                          1 Reply Last reply Reply Quote 1
                          • dwuk3dundefined
                            dwuk3d
                            last edited by

                            Have been working on some realistic timings to gauge the benefits on additional gantries.

                            Findings for the benchy model segmented into 4, 6 and 8 - for 2, 4 & 6 parallel gantries.

                            Doing outer walls in a single pass drops the percentage saving quite a bit (14-17% additional savings in these examples) - but I still think it is probably going to be worth doing for models that need to look good.

                            F1FD3989-75AA-4DC9-91F9-5917EC7709A3.png 0CF50B54-59DD-42AE-A816-80D1FE182F31.png 2AE57EB0-CE87-47EB-AE89-C4B48C004494.png

                            JVanundefined 1 Reply Last reply Reply Quote 0
                            • JVanundefined
                              JVan @dwuk3d
                              last edited by

                              @dwuk I have a question regarding your segment width: From your last screenshot I guestimated in relation to your buildplate grid, that your minimal segment width is about 20mm. If I undestand correctly, you print every other segment simultaniously (like darker grey, green, red and blue) and then switch to the other half of the segments (the white ones) to ideally never have to park a gantry. My question would be, if those 20mm are a realistic assumption: If you have only two gantries, you can probably design a extruder, that has the nozzle axis quite close to one side (like the J1 Extruders but rotated), allowing you to put the nozzle axis planes of two gantrys about 20mm apart with additional hardware sticking out further to the front and the back. But if you have more then two gantries, the whole gantry width is relevant including aluminum profile, linear rail and carriage, motor, fan etc ... So, do I misunderstand something, are you using stand in values or is the buildplate texture differently scaled?

                              dwuk3dundefined 1 Reply Last reply Reply Quote 0
                              • dwuk3dundefined
                                dwuk3d @JVan
                                last edited by dwuk3d

                                @JVan Well spotted - in the example the minimum segment depth is as you surmised only 20mm on a 256mm Y AXIS which isn't really practical for anything above 2 gantries (where you could rotate them around to get the print heads fairly close).

                                To go above 2 gantries using this approach the Y axis is going to need to be quite a lot large - 768mm for example would mean you could multiply the 20x3 - to get 60mm - which is still pretty small for current designs of extruders I know.

                                I think I should probably stick to a maximum of 3 gantries in later examples - maybe with unequal segment sizes to take in to account the centre gantry being rotated to face one of the others.

                                For 4 segments - pushing up the minimum size from 20 to a more practical 50mm doesn't lower the saving percentage too much - this equates to 100 on a 500mm print bed.
                                Screenshot 2024-12-30 at 21.52.38.png

                                1 Reply Last reply Reply Quote 1
                                • dwuk3dundefined
                                  dwuk3d
                                  last edited by

                                  This might work as a suitable first test platform.

                                  The print heads are quite big - about 100mm in total depth on a total 350mm build plate - but there is a fair bit of space at the back to allow the nozzle to get right to the back of the bed - so there should be scope to fit 4 reasonably sized segments on. It might be possible to reduce the depth by moving the fan and circuit board that take up a fair bit in front of the nozzle.

                                  Quite a lot of extra weight on the flying Z gantry - with 6 extra XY motors, 3 extra print heads and an extra Y gantry -

                                  Screenshot 2025-01-02 at 07.35.16.png

                                  It might be feasible to expand the size in the Y direction - by moving the Z gantries back - ideally about 200-300mm, and extending the length the the Z gantry side parts and the top side frame.

                                  o_lampeundefined 1 Reply Last reply Reply Quote 0
                                  • o_lampeundefined
                                    o_lampe @dwuk3d
                                    last edited by o_lampe

                                    @dwuk I'm concerned about the moving mass of the flying gantry. If I'd build such a printer from scratch, I'd choose a moving bed.

                                    And I'd flip the front cross bar, so the green nozzles face the others

                                    dwuk3dundefined 1 Reply Last reply Reply Quote 0
                                    • dwuk3dundefined
                                      dwuk3d @o_lampe
                                      last edited by

                                      @o_lampe You might be right - I have been thinking about a Double Voron Tridex - but the price of the SV08 and the fact that it is mostly pre built is pretty attractive to me.

                                      It might I guess even be possible to adapt it to have a moving bed instead of gantry.

                                      I agree that swapping around the front heads would help with parallel printing - but then that would limit the ability to make the front heads tool changers - like @TeachingTech is trying to develop with the stealth changer people..

                                      9 colours, 4 or which could be printed in parallel is getting close to the perfect printer for me...

                                      Screenshot 2025-01-02 at 07.51.33.png

                                      Shame the SV08 print heads are so big.

                                      o_lampeundefined 1 Reply Last reply Reply Quote 0
                                      • o_lampeundefined
                                        o_lampe @dwuk3d
                                        last edited by

                                        @dwuk With a toolchanger the frame is pretty cramped. Imagine you want to replace the left green tool with the right-most parked tool or the other way round....

                                        dwuk3dundefined 1 Reply Last reply Reply Quote 0
                                        • dwuk3dundefined
                                          dwuk3d @o_lampe
                                          last edited by

                                          @o_lampe I think you are right - didn't think about both print heads needing to tool change at the same time.

                                          Have reduced the numbers of racked tools to 4 - but then added a second row for the back gantry to use. - Would obviously need hardware and holders.

                                          I think I could as you suggested flip the whole front gantry and racked tools around - too - so that all of the racked tools are in the middle - however for the purposes of aesthetics I'll leave them facing all facing in the same direction for the simulations.

                                          Screenshot 2025-01-02 at 08.43.13.png

                                          1 Reply Last reply Reply Quote 0
                                          • dwuk3dundefined
                                            dwuk3d
                                            last edited by

                                            Tool changing harder to animate than some of the other concepts - initial basic animation created.

                                            IDEX Part13 - Sovol SV08 IDEX Dual Gantry Tool Changer Concept - Youtube

                                            05314165-EF20-4AB8-A32E-0825AF3C6A14_1_201_a.jpeg

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