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

    incorrect print time estimates (S3D), layer count etc

    Scheduled Pinned Locked Moved
    Duet Web Control
    11
    34
    3.1k
    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 @zapta
      last edited by

      @zapta

      Hi,

      Can you show us an example of an "accurate" 8 bit board?

      Before settling on the Duet family I tried many other boards - I don't recall any with an "accurate" display of time remaining.

      Frederick

      Printers: a small Utilmaker style, a small CoreXY and a E3D MS/TC setup. Various hotends. Using Duet 3 hardware running 3.4.6

      zaptaundefined 1 Reply Last reply Reply Quote 0
      • whosrdaddyundefined
        whosrdaddy @Phaedrux
        last edited by

        @phaedrux You have the power against these kind of people, the power of silence 🙂

        deckingmanundefined zaptaundefined 2 Replies Last reply Reply Quote 1
        • deckingmanundefined
          deckingman @whosrdaddy
          last edited by

          @whosrdaddy said in incorrect print time estimates (S3D), layer count etc:

          @phaedrux You have the power against these kind of people, the power of silence 🙂

          Yup - that works for me.

          Ian
          https://somei3deas.wordpress.com/
          https://www.youtube.com/@deckingman

          1 Reply Last reply Reply Quote 0
          • zaptaundefined
            zapta @whosrdaddy
            last edited by

            @phaedrux You have the power against these kind of people, the power of silence

            Different strokes for different folks. Sometimes it's useful to call out bullies and rude behavior.

            1 Reply Last reply Reply Quote 1
            • zaptaundefined
              zapta @dragonn
              last edited by

              This post is deleted!
              1 Reply Last reply Reply Quote 0
              • zaptaundefined
                zapta @fcwilt
                last edited by zapta

                Can you show us an example of an "accurate" 8 bit board?

                @fcwilt (and @dragonn), yes, my other printer, Flashforge Creator Pro, 8 bit Mighty Board with Sailfish firmware. It uses the percentage marks that S3D includes in the file in form of M73 commands. Simple and effective.

                This is how the code looks like

                https://github.com/jetty840/Sailfish-MightyBoardFirmware/blob/4d8456e54c537dd32775095ed2715d41f5961e6c/firmware/src/MightyBoard/Motherboard/Command.cc#L2144

                https://github.com/jetty840/Sailfish-MightyBoardFirmware/blob/4d8456e54c537dd32775095ed2715d41f5961e6c/firmware/src/MightyBoard/Motherboard/Command.cc#L2019

                Phaedruxundefined dragonnundefined 2 Replies Last reply Reply Quote 1
                • Phaedruxundefined
                  Phaedrux Moderator @zapta
                  last edited by

                  @zapta Is that using file remaining percentage, or is it based on a path planner estimate of what the actual print moves will take to complete?

                  Slic3r PE also supports M73 time estimates, but it bases the estimate on a very accurate print time estimate based on using the marlin path planner for actual print times.

                  From the Slic3r PE 1.41 Alpha 2 release notes:
                  https://github.com/prusa3d/Slic3r/releases/tag/version_1.41.0-alpha2

                  Support for the "Time to end of print" G-codes
                  Starting with this release, the time estimator emits a new M73 code for the Marlin firmware flavor at minute intervals, informing the firmware about the time to end of print in both normal and silent mode. Since the 3.3.0 release, the Prusa i3 MK3 firmware is able to display the accurate estimate of the time to the end of print by interpreting this new M73 code.

                  The format of the new M code is the following:
                  M73 Pxxx Qxxx Rxxx Sxxx
                  where P is the percentage of the total time already printed in normal (aka full power) mode, R is the time remaining for normal mode in minutes, Q is the percentage of the total time printed in the stealth mode, and S is the time remaining to the end of print in the stealth mode.
                  Suppressed for gcode flavors other than Marlin

                  Z-Bot CoreXY Build | Thingiverse Profile

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

                    @phaedrux

                    It would seem relatively straight forward for dc42 to support these codes and use them.

                    Frederick

                    Printers: a small Utilmaker style, a small CoreXY and a E3D MS/TC setup. Various hotends. Using Duet 3 hardware running 3.4.6

                    1 Reply Last reply Reply Quote 1
                    • dragonnundefined
                      dragonn @zapta
                      last edited by

                      @zapta said in incorrect print time estimates (S3D), layer count etc:

                      Can you show us an example of an "accurate" 8 bit board?

                      @fcwilt (and @dragonn), yes, my other printer, Flashforge Creator Pro, 8 bit Mighty Board with Sailfish firmware. It uses the percentage marks that S3D includes in the file in form of M73 commands. Simple and effective.

                      Sorry but that has complete nothing to do with you board, ale the have lifting is doing by the slicer.
                      But I vote also for implementing M73 into Duet.

                      1 Reply Last reply Reply Quote 0
                      • zaptaundefined
                        zapta
                        last edited by

                        Sorry but that has complete nothing to do with you board,...

                        Well, that 8 bit board does interprets the M73 commands and the Duet board doesn't 😉

                        A side note, currently simplify 3D doesn't generate M73 for reprap machines since reprap doesn't support it but I found this workaround using the [progress] macro of S3D (the article has a type, use [progress], not [ progress ]).

                        https://adrian.siemieniak.net/portal/how-to-add-progress-bar-to-your-3d-printer-with-simplify3d/

                        M73 P [progress]
                        

                        I inserted it in the layer change script but I can't see why it cannot injected in the retraction script to get more accurate percentage changes.

                        Cura seems to have a plugin that inject M73's but I didn't try it and don't know how it computes the percents. https://www.thingiverse.com/thing:1220006

                        1 Reply Last reply Reply Quote 0
                        • dc42undefined
                          dc42 administrators @nhof
                          last edited by

                          @nhof said in incorrect print time estimates (S3D), layer count etc:

                          It might be possible to change the parser to look for the last 'Layer xxx, Z = yyy' comment instead as it might provide a more reliable object height value, but I'm not sure how easy it would be to implement.

                          That's exactly what I already have on my work list. According to the GCodes wiki at reprap.org. M532 is only supported by Repetier firmware, and I've never see it generated by a slicer. OTOH most slicers do generate layer start comments. The option to skip some objects that has been requested by more than one user also requires comments to be parsed, to identify which object is being printed.

                          Duet WiFi hardware designer and firmware engineer
                          Please do not ask me for Duet support via PM or email, use the forum
                          http://www.escher3d.com, https://miscsolutions.wordpress.com

                          zaptaundefined 1 Reply Last reply Reply Quote 0
                          • zaptaundefined
                            zapta @dc42
                            last edited by

                            @dc42, I wonder, board developers like you and slicer developers like Cura, S3D and Slic3r are on both ends of the same gcode protocol. Are there forums or communication channels between the two groups? For example, to discuss standard representation of estimation metadata that slicers can pass to the boards.

                            dc42undefined 1 Reply Last reply Reply Quote 0
                            • dc42undefined
                              dc42 administrators @zapta
                              last edited by

                              @zapta said in incorrect print time estimates (S3D), layer count etc:

                              @dc42, I wonder, board developers like you and slicer developers like Cura, S3D and Slic3r are on both ends of the same gcode protocol. Are there forums or communication channels between the two groups? For example, to discuss standard representation of estimation metadata that slicers can pass to the boards.

                              If there are any such channels, I am not aware of them. Every slicer seems to use different metadata keywords, and they often change.

                              Duet WiFi hardware designer and firmware engineer
                              Please do not ask me for Duet support via PM or email, use the forum
                              http://www.escher3d.com, https://miscsolutions.wordpress.com

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