How do I tell the FFC Pro to Simultaneous preheat the Bed and Extruder and wait for stabilization?
Printable View
How do I tell the FFC Pro to Simultaneous preheat the Bed and Extruder and wait for stabilization?
it doesn't. The bed heats and then the extruder.
At least that's the way mine always work - no matter what the slicer. It's also the way the built in preheat works as well.
Best way is to manually preheat before messing with s3d.
Gcode is M6 T1 It's in your scripts on S3D. as CA advised above the bed heats first then the extruders. This is intentional because the bed is harder to stabilize because of it's mass. Also as stated above use the preheat function on the printer itself. It is faster to heat up that way.
It's strange, why does the included cone print heat both simultaneously?
no idea, never seen it happen and I have printed that cone.
Current draw is usually much heavier when a heating element is cold, so if you heat both simultaneously, you may exceed the PSU capacity.
I always go into the control panel in S3d and pre heat the bed and as soon as it gets to 108c I start the preheat extruder. Then as soon as the extruder gets to 230c I home the Z Axis and the goto the printer and kick off the print from the sd card. So far this method has worked great.
Robosmith had it. The power supply is not strong enough to heat both at the same time. It can maintain heat at the same time, but not increase heat at the same time. While printing you may notice this too. The bed will climb from getting low at a different time than the print heads. Also a heated bed will result in a lower maintained print head heat. With a non-heated bed, I stay within a couple degrees. With a heated bed, I'm lucky to stay within 5 degrees of the set temp.
When I manually preheat the FF both bed and extruder heat at the same time. So the power supply must be able to handle both (or three if both tools selected) without damage
well it looks like you're on your own. Everybody elses heats the bed and then the head/s.
Congratulations :-)
My guess is the reason the bed heats up first is because it takes so much longer for it to heat up. I don't think it would be very good for the nozzle to sit there at full temp waiting for the bed to come up to temp. Plus it also give the bed time to have a more even heat if it is at temp while the nozzle is coming up to temp.
Just my thoughts.
Thanks everyone for the comments, and while I agree with the logic behind why heating the bed first, I was just hoping for a faster preheat cycle.. It would be cool for S3D to use a preheat algorithm.
Just a note:
I just ran the cone example again, and sure enough, all three start heating up at the same time. Bed, and both extruders... So it must be possible (at least in whatever slicer the example used) to heat all three at the same time.
Thanks again..
there's probably some gcode you can put in the starting gcode script for s3d.
here's the current heating code:
I guess if you moved the stabilise bed temperature from where it is to below the stabilise extruder temperature, it might heat both bed and extruder at the same time. It looks like the stabilise command is what makes it wait for the bed to get to temp before heating the extruder.Quote:
M126 S[fan_speed_pwm] M140 S[bed0_temperature] T0
M134 T0 ; stabilize bed temperature
M104 S[extruder0_temperature] T0
M133 T0 ; stabilize extruder temperature
So if you set it up like this:
Theoretically it should heat both bed and extruders at the same time. And as the extruder heats faster than the bed there shouldn't be any problems getting the head to temp first.Quote:
M126 S[fan_speed_pwm] M140 S[bed0_temperature] T0
M104 S[extruder0_temperature] T0
M133 T0 ; stabilize extruder temperature
M134 T0 ; stabilize bed temperature
Theoretically :-)
I generally find when i mess with startup gcode - apparently 'unrelated' things go tits-up.
But I suppose it's worth a try :-)
I know my knp is using a standard pc psu - so has more than enough oomph to heat everything at the same time.
New guy here but while I was researching which printer I wanted there was a YouTube video that tells you how to install ReplicatorG and Sailfish firmware. One of the things he mentions with moving to Sailfish is having the ability to heat the extruder and bed at the same time. Mine did the same thing. When I moved to S3D it went back to heating the bed and then the extruder. Not sure if this is a feature in Sailfish or the version of ReplicatorG that will use Sailfish.
That is just the startup Gcode S3d uses. In my opinion it isn't necessary time wise at all to heat both at the same time and it is better for the power supply if you do them separately. The build plate can take up to 10 minutes to heat up, the extruder maybe 1 minute. Now I could see both heating at the same time if both took like 10 minutes. I believe the extruder even starts heating when the build plate is close to being done so this further reduces the time.
To further reduce the time, run a preheat on the build plate first, and not the extruder. Do this build plate preheat while getting files prepared from S3d and copied to SDcard.
I dson't own a FFC pro but I do use S3D : I usually do something similar to what Curious Aardvark pointed at.
Use M140 and M104 to set heat bed and extruders temps
And AFTER, you put the lines for M190 and M109 which force to wait until temp is stabilised.
Works for my printer but as the others pointed out : it works only if the current output allows it...
RepG's configuration for FlashForge sets them both in progress by default, Simplify3D has them separate in the starting gcode.
Go into your process settings and select the scripts tab. Then move the extruder temp setting before the bed temp setting, as below.
M104 S[extruder1_temperature] T1
M140 S[bed0_temperature] T0
M134 T0 ; stabilize bed temperature