Page 3 of 3
Re: Better Build Time calculation
Posted: Wed Nov 15, 2017 4:19 pm
by arhi
ASpurway wrote:This is very important. I am working with a large format printer (1mx1mx1m) and the difference between knowing a 50hr build will be more like a 70hr build is very important.
then using a 3rd party analyzer like
http://www.gcodeanalyser.com/ should be an important step in your workflow. there's more then time that this analyzer (or some other) will provide, and it gets you very accurate report. dunno how you are sending your prints to the printer and what type of stats you keep (for e.g. I use octoprint and it stores metadata about prints so you can see exactly how long some print took) but you can shoot up some g-codes from the history that you know how long they took to print and compare with what analyzer will give you.
Re: Better Build Time calculation
Posted: Tue Nov 21, 2017 2:57 pm
by ASpurway
Or it should be included in the software that has a print time estimator in it and needs to take into account additional settings. I know I can go to another system but why should I? Since it is available on other (free) services, should it not be a tool that Simplify has internally? Whats the point of Simplify estimating print time if it can be off by 50%?
Additionally, I don't really want to upload my files to a cloud service where I am unsure of the security of these systems (I mean I do because I have to but I don't want to). It is less secure and not all files can be uploaded as they are not owned by me.
Re: Better Build Time calculation
Posted: Wed Nov 22, 2017 7:41 am
by arhi
of course, it should be in the s3d, I was just giving you the workaround ...
Re: Better Build Time calculation
Posted: Fri Nov 24, 2017 9:11 am
by ASpurway
Fair enough. I do appreciate the problem solving. I just didn't want it to be the end all solution and that no development on simplify's end is required.
Re: Better Build Time calculation
Posted: Sun Dec 03, 2017 12:44 am
by arhi
I had few free hours and I integrated my solution with S3D
https://github.com/arhi/gcodestat
video and files available (or will be):
https://forum.simplify3d.com/viewtopic. ... 310#p36422
Re: Better Build Time calculation
Posted: Tue Dec 26, 2017 5:03 am
by mischl
thanks to arhi for this!!!
very useful and really accurate!
I have tried different prints between 20 and 110 minutes and the delta is within a few seconds, where S3D is a few minutes.
one possible improvement: adding the heat up time as a constant could be an advantage, perhaps...
Re: Better Build Time calculation
Posted: Tue Dec 26, 2017 5:38 am
by arhi
glad that you like it, adding a constant time is simple will add that in next batch of changes
Re: Better Build Time calculation
Posted: Tue Dec 26, 2017 11:22 am
by arhi
mischl wrote:
one possible improvement: adding the heat up time as a constant could be an advantage, perhaps...
https://github.com/arhi/gcodestat/releases/tag/0.2
add --heatup_time=## (in seconds) or -t ##
example to add 15sec heatup time, read file test.gcode, output test_:
Code: Select all
gcodestat.exe -g e:\temp\file.gcode -o e:\temp\brisi_m117.gcode -s 5 --heatup_time 15 --acceleration 1000
Re: Better Build Time calculation
Posted: Wed Dec 27, 2017 4:33 pm
by arhi
https://github.com/arhi/gcodestat/releases/tag/0.4
* added -w or --alert option so you don't have to use system msg but it directly display the message box with info about total time (works only only windows for now)
* added --api_key and --api_url so it can directly upload to octoprint (libcurl.dll included in the release, if you are compiling on linux/osx just have libcurl installed or curl-dev or curl-devel depending on your distro)