Questions tagged «estimation»

2
计算已经切片的文件的估计打印时间
我开始编写一个应用程序,该应用程序从已经切片的模型的G代码文件计算估计的总打印时间。 该程序可以正常运行。 其工作方式如下: 它扫描整个G代码文件以识别所有运动 它通过将段距离除以速度(以毫米/秒为单位)来计算每次移动的时间。 假设这是G代码: G28 ; home all axes G1 Z0.200 F5400.000 G1 X158.878 Y27.769 E6.65594 F900.000 这是它所做的计算: totalTime = 0 # G28 ; home all axes currentX = 0 mm currentY = 0 mm currentZ = 0 mm # G1 Z0.200 F5400.000 newZ = 0.2 mm mmPerSecond …
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.