Setting the temperature as a function of the speed is something I'm going to work on soon. As the more we push our printers, the more this is needed to be done in a logical way.
Setting the temperature as a function of the speed is something I'm going to work on soon. As the more we push our printers, the more this is needed to be done in a logical way.
Anything similar in this feature already in the firmware?
It is specifically commented out in the UM version of the FW.
//automatic temperature: The hot end target temperature is calculated by all the buffered lines of gcode.
//The maximum buffered steps/sec of the extruder motor are called "se".
//You enter the autotemp mode by a M109 S<mintemp> B<maxtemp> F<factor>
// the target temperature is set to mintemp+factor*se[steps/sec] and limited by mintemp and maxtemp
// you exit the value by any M109 without F*
// Also, if the temperature is set to a value <mintemp, it is not changed by autotemp.
// on an Ultimaker, some initial testing worked with M109 S215 B260 F1 in the start.gcode
#define AUTOTEMP
#ifdef AUTOTEMP
#define AUTOTEMP_OLDWEIGHT 0.98
#endif
@Didier, You understood mostly correctly, it's the first layer of the raft I'm having a problem with, not the actual print. The print comes out (and is printed) exactly as expected and configured. I may play with tweakAt, but I guess it would be set the temp to 235, then tweakAt 0 back to 195 for a 10mm/s. THe only problem would be the first thing it printed would be all over the place until the head cooled sufficiently... unless tweakAt takes into account the raft?
@Daid, thanks for adding AutoTemp to the feature list, but is auto temping something that can realistically be done, or would it a couple of tries to fine tune it by the user and then just set a temp/speed profile. Auto temping, and I guess human setting would get flummoxed if you did a 40mm/s infill and a 20mm/s shells. Maybe profiles in Cura are the way to go? where you define speeds and temp and then apply these in the slicer?
@Daid, thanks for adding AutoTemp to the feature list, but is auto temping something that can realistically be done, or would it a couple of tries to fine tune it by the user and then just set a temp/speed profile. Auto temping, and I guess human setting would get flummoxed if you did a 40mm/s infill and a 20mm/s shells. Maybe profiles in Cura are the way to go? where you define speeds and temp and then apply these in the slicer?
AutoTemp is something that can be done. But it needs 4 parameters:
minTemp, maxTemp ©, minFlow, maxFlow (mm3/s)
Now, autoTemp won't be the way to go always, but for "preset" materials like PLA, ABS, and other stuff that we're testing, I'm sure we can do it quite fine.
...and...why not just leave that the data inserted in the slicing setting just override any other predetermined setting???...maybe I don't have time for to fill all the info needed for to create a new material, or the piece that I want to print, needs some change in speed, nozzle or bed temp.....wouldn't this make life easier ??
Recommended Posts
DidierKlein 729
Maybe you can use the TweakAtZ plugin do tweak those parameters (if i understand well you want to set the temp in the slicing and not on the printer).
Basically you could have a setting for PLA let's say 210°c and let the first layer print at that temp, then use the plugin to set you prefered temp
Or maybe i understood it wrong?
Link to post
Share on other sites