I never said a washing machine had a 3phase AC motor in it (since that'd be stupid really)
I said people mistake BLDC for 3phase AC since their layout is fairly similar to the untrained eye.
never seen such LG motor.. impressive..
never seen a direct drive washing machine at all
(the ones I popped open were belt driven universal motors)
Anyways, true a direct drive motor like that should have a serious amount of torque.
but I need numbers not
feelings to estimate the use of it.
Since we don't know the project you're aiming for, we are unable to even make an assumption if it's of use for that.
But I'll stick with: "
likely not worth the hassle if you're trying to power a personal vehicle with it" (aka kart or mini bike likely not going to happen... powered kick scooter maybe but it seems to be too large to not look ridiculous on a kickscooter or skateboard)
I'd still say the motors run on high voltages and rather low Amps (wich makes it loose it's potential if ran at lower voltages)
since frankly a transformer is expensive,
a simple rectifier circuit is much cheaper and likely more reliable as well
(for sure more reliable than a switch mode power supply)
PLUS: Wesley (the first video guy) stated that he had to rewind the motor.
(assuming in order for it to run @12V ?)
An arduino could switch a series of MosFETs of course, but WHY?
it's overkill in one way
you cannot make use of most of an arduinos capabilities since it can't multitask
and you wouldn't want to halt the motor to switch, trigger or adjust anything but the motor speed.
and undersized in other ways
20mA per output is okay, but not exactly something to write home about.
you might even need to beef that up in order to trigger the gates of a powerfull MosFET.
In fact you'd even have to delay the phase switching in order to read the throttle position
and adjust the speed accordingly.
Personally, since you sholdn't air wire the MosFETS anyways especially since you need to cope with backEMF
(reads: at least add diodes to cut reverse currents off, and thus will have to make a pcb for mosfets and diodes)
ideally you want the backEMF to tell motor speed and shaft orientation in order to correctly switch phases.. otherwise the motor will not run well at all under load.
you'd better get a dedicated ESC and control it with the arduinos PWM signal line instead.
it does all the back EMF trickery for you right off the shelf
that way you can also make use of the arduinos capabilities better since you don't need to toggle it's outputs but instead you just set it and leave it until changed
while doing other stuff (quasi multitasking)
'sid