Connecting multiple heated beds to Duet 3 6HC
-
yes there is only one dedicated heated bed terminal, but you can use other lower current outputs and control a relay or dc-dc SSR to switch the high current.
-
@fcwilt "*if cost is an issue than 3D printing may not be something for you to invest in.
The amount of money I have spent on filament dwarfs the cost of running the printers.*"
Hehe yeah, that's probably right, but I'd rather save on power than on the filament
"*I suggest you follow the advice to connect both to the board via the SSRs and use a separate temp sensor for each one.
I would also suggest you re-consider using line voltage units.*"
I suspect when you say "connect both to the board via the SSRs" you mean to do it a different way than the one I laid out in the original post? Could you please elaborate on how I would go about doing that?
Is there a line voltage unit you could point me to for 650W heated beds?
Sorry for all the questions, this is my first build...
-
@Phaedrux Oh, that makes sense. Sorry.
Does the output I use for this have to be PWM capable?
-
I have used Keenovo line voltage silicone heaters for all my printers.
Here is a 120VAC 750 WATT unit
Then all you need is a good SSR that can handle the load of the heater and whose control inputs are compatible with the outputs from the Duet.
You would connect them much the same way as in your diagram except instead of powering them with DC power supplies you would have connections to line voltage and there would be no "plug with switch".
You would want to have a device like these for safety
Frederick
-
@fcwilt said in Connecting multiple heated beds to Duet 3 6HC:
I have used Keenovo line voltage silicone heaters for all my printers.
Here is a 120VAC 750 WATT unitAh, I live somewhere with 230VAC so I guess that one wouldn't work for me, but I see what you mean now (Sorry, I thought a "line voltage unit" was a PSU since english isn't my native language).
Thank you for all the Info, I will have a look at it, however I am afraid switching to mains power won't be an option immediately due to budget considerations (I already bought the 24v hardware).
However I will keep it in the back of my head and contemplate whether I like fire risk or shock risk better
For the time being I will definitely keep a fire extinguisher handy just in case. -
You may want to purchase some silicone insulated wire to run power to your 24 volt heaters.
Such wire is generally going to be quite flexible compared to other types.
Frederick
-
@fcwilt said in Connecting multiple heated beds to Duet 3 6HC:
You may want to purchase some silicone insulated wire to run power to your 24 volt heaters.
That's what I bought I use 10AWG silicone wire for everything in the heated bed circuit (except for the input side of the SSRs, since those are low Voltage and amperage).
I'm trying not to set anything on fire haha -
i think you should test how much (steady state) current is needed to maintain your max expected bed temp with your bed config .
if the current is anywhere near 30A , i would use double 10awg wire , as 10awg wont be enough for hours of printing + hot bed .
you can basically use any pwm capable out as another bed heater if its going through ssr anyways .the simplest is to use one of the extruder heaters (if not in use).for slicer setting ,simple solution is to configure the second bed as "chamber heater" (if you don't use one anyways) , then just activate it in slicer setting if needed .
-
@hackinistrator said in Connecting multiple heated beds to Duet 3 6HC:
i think you should test how much (steady state) current is needed to maintain your max expected bed temp with your bed config .
if the current is anywhere near 30A , i would use double 10awg wire , as 10awg wont be enough for hours of printing + hot bed .By my calculations for 1 meter of 10 gauge copper wire carrying 30 amps the voltage loss would be around 0.2 volts.
That seems acceptable to me.
Frederick
-
@hackinistrator said in Connecting multiple heated beds to Duet 3 6HC:
if the current is anywhere near 30A , i would use double 10awg wire , as 10awg wont be enough for hours of printing + hot bed .
I made a mistake in my previous posts, since 30A is actually what the PSUs can put out, but the 650W 24V heated beds should actually "just" pull a maximum of 27.08A.
The Extruder heater is powered via another PSU so it won't add anything to that.
for slicer setting ,simple solution is to configure the second bed as "chamber heater" (if you don't use one anyways) , then just activate it in slicer setting if needed .
Yes, I have read about that, too. In that case I would connect one to the OUT0 and the other to OUT 1, 2 or 3, right?
But I have also read that SSRs can't really handle PWM signals, because it's at too high a frequency and you should rather use a "bang-bang" mode?
-
@Zerocool1703 said in Connecting multiple heated beds to Duet 3 6HC:
But I have also read that SSRs can't really handle PWM signals, because it's at too high a frequency and you should rather use a "bang-bang" mode?
You can still use PWM you just have to use a low frequency.
Here is my setting:
M950 H0 C"bedheat" T0 Q10 ; create bed heater output on bedheat and map it to sensor 0
Notice the Q10 which specifies the frequency - it works fine with my SSRs.
Frederick