Beta testers for multiple motion system support
-
@dc42
That'll be exciting to try!
You should also mention that mesh leveling must not be enabled.I wonder, how a waiting tool behaves when layer times are way different? Will it go in parking position or just sit and wait for the other tool to finish the layer? Will it automatically retract/unretract?
-
@dc42 said in Beta testers for multiple motion system support:
There will be no checking that commands for different motion systems don't attempt to drive the same axis simultaneously
How do we address layer changes then? Isn't Z-axis a common axis of both systems? Do we need to define a third tool just for the z-axis and switch to that tool before layer change?
Putting M400 before a layer change will only wait for the other tool to empty the print queue, but it's not guaranteed to be finished with the layer... -
@o_lampe said in Beta testers for multiple motion system support:
@dc42 said in Beta testers for multiple motion system support:
There will be no checking that commands for different motion systems don't attempt to drive the same axis simultaneously
How do we address layer changes then? Isn't Z-axis a common axis of both systems? Do we need to define a third tool just for the z-axis and switch to that tool before layer change?
Putting M400 before a layer change will only wait for the other tool to empty the print queue, but it's not guaranteed to be finished with the layer...When multiple motion systems are in use, M400 causes them to synchronise at that point, i.e. no motion system proceeds past that M400 until all motion systems have finished executing it.
Only one motion system needs to move the Z axis to do the layer change. Another M400 command after that Z move will ensure that the other motion system waits for it to complete.
@o_lampe said in Beta testers for multiple motion system support:
I wonder, how a waiting tool behaves when layer times are way different? Will it go in parking position or just sit and wait for the other tool to finish the layer? Will it automatically retract/unretract?
Currently it will just sit there. In the future I will add an option to park waiting tools, probably by using an extra parameter on M400. Meanwhile you could call a parking macro just before the M400.
-
I will begin work shortly preparing a rudimentary minimally-viable custom PrusaSlicer build to support concurrent printing of multiple objects. So far, the plan would be to copy and modify the sequential object printing feature to interleave the two object g-codes instead of outputting them sequentially. M596 and M400 would be emitted when needed. Is there anything else that would be required or helpful to get started testing this? At first, time estimates and other helpful features would not work.
-
@bot
I thought from the beginning, that such a project can only be done with a slicer-dev in coop.Interleaving the two objects has it's charm, but there is also the problem with unequal path length (or path print duration to be exact).
You'd have to chop (straight) path' into equal portions to make sure, both nozzles are finished at the same time.
A waiting tool at the end of a layer is one thing, but a waiting tool at the end of every path is another.It would be cool, if you could slow down the nozzle of the object with the slightly smaller layer-area, to make them both fotofinish the layer.
-
@o_lampe when printing multiple objects, it should only be necessary for the two motion systems to synchronise at the end of each layer and again after the Z move, provided the objects are separate sufficiently for there to be no risk of collision of the two tool heads.
-
@o_lampe Yes, certainly it would be nice to have the speeds of moves automatically adjust, if requested. However, I'm still trying to ort out a way to use the time estimates in such a way. So, for now, I'm going to try and get a quick-and-dirty test build up, so testers can have a bit of help. It doesn't seem, to me, like there is an easy way to interleave two object g-codes, besides with a slicer or script. But, if there was a script or method to easily achieve the quick-and-dirty interleave, I could focus more time and effort on the coordinated timing, etc., and skip the mvp... it's up to the testers really, which they would prefer.
-
Unfortunately I don't have a test build ready yet, and I now have to stop working on this feature. I will return to it later this month.
-
@bot @dc42 Is there an "optimal" amount of interleaving?
At one extreme having a line addressed to one motions, followed by a line addressed to the other motion stream, then back to the first does not appear good due to the overhead of switching the addressing and also because frequently the motion systems would not be that closely synchronised - one may be doing long moves and the other short ones.
At the other extreme it would be a layer at a time.
If both motion streams are reading the SD card file independently then presumably there is quite a lot of flexibility in this?
-
@t3p3tony This is a good point. An idea that just came to mind is to use the approximate length of the move queue. iirc, about 40-60 moves? Or perhaps, half the move queue? There might be some logic behind the number of lines to send to each system. I'm open to ideas. Perhaps I will make it configurable at first, by the user.
-
@t3p3tony I suggest around 10 to 30 commands before switching to the other stream. This keeps the overhead of reading and processing M597 commands reasonable low, without having very large blocks for the other GCode processor to skip over which could cause stuttering.
-
For me it's obvious, that in the future the SBC will play a major role in this.
I know, it's not in the scope yet, but why not start the project with that in mind?If we had a way to merge two gcode files into one SBC-stream, we would also overcome the RAM limitations of Duet2.
I'm sure the Klipper guys would go that way.I already regret mentioning that, sorry. -
I don't see a single threaded non-realtime process (and I don't even want to start consider multiple threads or processes...) being reliably able to emit interleaving gcode that requires cooperation. So I am not sure the SBC will be a help here.
-
@oliof
You think of a real-time process, but I believe the pre-processing can take place in such short time, that it's done before the bed is heated.I've seen it on my K40 laser: the controller is dumb with no memory. A raster-file or vector-graphics are fully controlled by the PC or a RasPi400 in my case. Although it's written in python, which only uses one CPU-core, it's fast ( upto 500mm/s raster engraving) and reliable.
-
@o_lampe slight deviations are not a problem as long as you have a single tool. Coordinated moves from independent streams are another story.
-
@o_lampe we are already planning to use one SBC controlling multiple Duets to implement larger numbers of concurrent motion systems. For example, one SBC controlling two or three Duets, each of which controls two or three motion systems.
-
@dc42 I have built the latest 3.5-dev RRF. M596 is accepted. But I can't get asynchronous motion running. It doesn't start the second (P1) motion system and waits forever.
What I am trying to do is simply running X and Y asynchronously.Could you please provide an example?
-
@wiego unfortunately I had to pause work on multiple motion system support due to other pressing work. The current state is that multiple motion systems won't work in SBC mode, but might work in standalone mode. However, pause and resume will not work because the changes have not been completed.
-
@dc42 was wonder if there is a way to implement a trigger function. This might allow independent z axis.
I'm not a programmer so probably asking a stupid question.
Thinking if each head has trigger for layer completion to tell the system to send next line of commands to specific head.
Mechanical or digital not sure which would be best.
Sorry if it's a stupid question. -
-
@dc42 just to let you know: I am new to Duet3d but not new to mechanics and 3d printing --> I have already built a corexy multi gantry system, will purchase the latest duet 3 board with extension to 11 drivers and install the latest 3.5 beta for testing. It is definitively aimed to run in SBC mode as the printer has to download and start print jobs via firebase cloud triggered via API.
Side comment: I raised a question in the general thread regarding "is it possible to let reprap run a complete separate stepper motor in parallel to the print job". If'd get this solved in addition, my dreams coming true