Testing Power Failure Feature
-
Can or do you kill the heaters as soon as the warning is raised? May buy you a little time before the PSU drains to a voltage level that is too low to run the steppers.
-
@doctrucker Currently I run "M913 X0 Y0 G91 M83 G1 Z3 E-5 F1000" on detection of power failure.
-
That only reduces the motor currents. Are you perhaps supplying AC to the heaters, if not they need to be shut down to conserve whatever energy is left in the power supply output buffer. (Although not sure if 0% is the best target)
-
@bearer I added "M104 S0" to the M913 command in the config.g file and have not seen any changes
-
That brings me back to exactly what kind of hardware is doing the power loss detection, and what kind of power supply is in use? It may well be the supply just doesn't have enough power after the fact.
-
12v or 24v?
-
@Phaedrux 24v
@bearer That is most likely the case. I have decided that since it saves the restart data and I am able to restart the print as long as the print head being close to the print does not ruin anything, I will leave this project until later. I think I should look into a different power supply but at this point I am fairly happy with how it works currently. -
Adding capacitors to the existing supply could help, but how effective it wold be would entirely depend on how the power loss is detected in the first place.
-
@bearer, the Duet detects power loss on-board. The power loss threshold voltage is set in the M911 command. using 24V power, you would typically set it to about 22V.
The heaters are automatically turned off when the voltage dips below the threshold set in M911. Typically, the power fail script should use M913 to reduce power to motors other than Z and E, to help save enough power to raise Z and retract filament. See https://duet3d.dozuki.com/Wiki/Setting_up_to_resume_a_print_after_a_power_failure.
-
@dc42 Is there a way to configure another input? I normally use an opto coupler to detect mains zero crossings to get an early warning of mains failure.
-
@nophead said in Testing Power Failure Feature:
@dc42 Is there a way to configure another input? I normally use an opto coupler to detect mains zero crossings to get an early warning of mains failure.
Not yet, although I plan to add one.
-
But an arbitrary input assigned to a trigger could get the job done surely, and detecting mains loss instead of voltage sag would make adding capacitance more effective, if needed at all.
-
@bearer said in Testing Power Failure Feature:
But an arbitrary input assigned to a trigger could get the job done surely...
It wouldn't provide the same near-instant execution that the built-in power failure code does.
-
Interesting, hopefully configurable inputs will be good to go by the time i get around to adding power loss stuff.
-
If we assume that the power draw of the machine after the firmware turns off the heaters and XY motors is 10W (basically the power needed to drive the Z and extruder motors, plus a little for the Duet itself), then adding 10000uF capacitance on the 24V power rail should provide 190ms additional time. On a delta where you can't turn any motors off, it should still provide 100ms extra time; and on a delta the Z move will be fast anyway.
How much extra time would be provided by an external power fail input will depend on the power supply and the nature of the power fail detection.
-
@dc42 It is far more effective to use the energy stored in the main reservoir capacitor in the PSU that is charged to 340-400V because E = CV^2, and it can usually drop a long way before the PSU output falls at all. That is why I like to look for two missing mains half cycles when doing power fail detection. On a decent PSU it can give you seconds. I haven't done it on a 3D printer yet though.
-
I was thinking the same
(but thinking usually never leads to anything good ) -
@nophead said in Testing Power Failure Feature:
@dc42 It is far more effective to use the energy stored in the main reservoir capacitor in the PSU that is charged to 340-400V because E = CV^2, and it can usually drop a long way before the PSU output falls at all.
That depends on the PSU. If it has a single input accepting 110V to 240V without an input voltage selector switch, that will be true when you run the PSU on 220-240V mains, but not on 110V.
The half CV^2 applies to adding an output capacitor too. The stepper drivers can work down to less than 10V. If the power failure is detected at 22V, then by the time the voltage has dropped to 10V, 79% of the energy has been extracted from the capacitor.
-
@dc42 Free range PSUs normally use a PFC boost converter, so the reservoir is charged to the same voltage regardless of the input voltage. Otherwise the main down converter would need run at half the voltage and twice the current necessitating bigger heatsinks, etc.
A standard compliant PSU needs active PFC at these powers anyway, so free range input comes for free as it already has a boost converter to allow it to take sinusoidal current over the full cycle rather than just at the mains peaks.
Cheap PSUs just have a switch and voltage doubler. I haven't come across wide input range PSUs of any size that don't use one of these two techniques, have you?
-
I think the CE regulative says that today any supply over some 40-50w needs to have active power factor correction, so pretty much every recent supply is universal input with the boost converter (at least in my neck of the woods). Even most supplies below the threshold has it. There, done beating dead horses for today:)