Jump to content

Is there a way to print several objects "one at a time" with a common brim or skirt?


alexsott
Go to solution Solved by GregValiant,

Recommended Posts

Posted · Is there a way to print several objects "one at a time" with a common brim or skirt?

Hello there!

 

I need to print 50 small objects at once, "one at a time" mode so the pullbacks are not killing me, connected by a common brim or skirt.

That is to remove them from the printer all together as a single sheet.

 

Currently Cura refuses to slides them if brims are touching each other.

 

Is there a way to do that in Cura?

 

Thanks

  • Link to post
    Share on other sites

    • Solution
    Posted (edited) · Is there a way to print several objects "one at a time" with a common brim or skirt?

    I don't think so.  Each model is an entity within it's own bounding box and the brim belongs to the specific model.  If the brims touch then Cura will see the models as interfering with each other.

     

    The M32 command can call a gcode from within another gcode file.  By changing the Home Offsets between each call you can change where the print will be on the build plate.

    ;Print a base that is a 1 layer print and covers the build surface.  At the end of that gcode use M32 to call a second file.  That second file wouldn't need a full startup gcode and definitely wouldn't need an ending gcode.

     

    M206 X0 Y0

    M32 P !/models/lgbust.gco# ; The file name here might have to be the DOS 8.3 short file name.

    M206 X33 Y0 ;Move the Home Offset

    M32 P !/models/lgbust.gco#

    M206 X66 Y0 ;Move the Home Offset

    M32 P !/models/lgbust.gco#

    M206 X100 Y0 ;Move the Home Offset

    M32 P !/models/lgbust.gco#

    M206 X0 Y33 ;Move the Home Offset

    M32 P !/models/lgbust.gco#

    M206 X33 Y33 ;Move the Home Offset

    etc, etc, etc

     

    Keep moving the Home Offset and calling the second file ("lgbust.gco" in this example).  The # sign on the end of the line acts like an M400 so there isn't a "read ahead" past the M32.

     

    Understand that although I've played with M32 and it works on my printer, I've never done a print that repeats like that.

     

    Another option would be to print the huge brim first and then print the "one at a time" file on top of it.  With the nozzle at Z=0.2 a G92 Z0 in the gcode would move the second print up.

    Edited by GregValiant
  • Link to post
    Share on other sites

    Posted · Is there a way to print several objects "one at a time" with a common brim or skirt?

    Thank you - printing a layer/brim first and then printing all the objects at 0.2 elevation seems to be a sound solution.

  • Link to post
    Share on other sites

    Posted (edited) · Is there a way to print several objects "one at a time" with a common brim or skirt?

    Just make sure you put the "G92 Z" line at the beginning of the one-at-a-time file.  That file needs to be fooled into thinking its on the build plate.  I suppose if you have ABL it might automatically adjust.

    A test print wouldn't hurt.

    Edited by GregValiant
  • Link to post
    Share on other sites

    Create an account or sign in to comment

    You need to be a member in order to leave a comment

    Create an account

    Sign up for a new account in our community. It's easy!

    Register a new account

    Sign in

    Already have an account? Sign in here.

    Sign In Now
    • Our picks

      • UltiMaker Cura 5.7 stable released
        Cura 5.7 is here and it brings a handy new workflow improvement when using Thingiverse and Cura together, as well as additional capabilities for Method series printers, and a powerful way of sharing print settings using new printer-agnostic project files! Read on to find out about all of these improvements and more. 
         
          • Like
        • 18 replies
      • S-Line Firmware 8.3.0 was released Nov. 20th on the "Latest" firmware branch.
        (Sorry, was out of office when this released)

        This update is for...
        All UltiMaker S series  
        New features
         
        Temperature status. During print preparation, the temperatures of the print cores and build plate will be shown on the display. This gives a better indication of the progress and remaining wait time. Save log files in paused state. It is now possible to save the printer's log files to USB if the currently active print job is paused. Previously, the Dump logs to USB option was only enabled if the printer was in idle state. Confirm print removal via Digital Factory. If the printer is connected to the Digital Factory, it is now possible to confirm the removal of a previous print job via the Digital Factory interface. This is useful in situations where the build plate is clear, but the operator forgot to select Confirm removal on the printer’s display. Visit this page for more information about this feature.
          • Like
        • 0 replies
    ×
    ×
    • Create New...