Author Topic: Need to design and build 250W BLDC inverters for drones  (Read 1572 times)

0 Members and 1 Guest are viewing this topic.

Online FaringdonTopic starter

  • Super Contributor
  • ***
  • Posts: 1998
  • Country: gb
Need to design and build 250W BLDC inverters for drones
« on: February 28, 2024, 03:09:36 pm »
Hi,
We wish to build drones capable of carrying up to say 5kG. Therefore  we need  four  3 phase BLDC inverters capable
of 250W each.
We must build the inverters ourselves, and not import them in from outside Europe/UK/USA/Australia.
There are very few companys in EU/UK/USA/Australia that build drone inverters, so we need to do this ourselves.

Please offer us any help you can?

The inverter bit looks simple....just a bridge of four suitably heatsunk MOSFETs. [EDIT...Six as kindly pointed out below...ENDofEDIT]

Do you know of inverter control chips for this, or chipsets?
What battery voltage would be best would you think? (we believe 48V is best, with matched series/parallel cells and "stop_when_any_is_full_or_empty"
charging regime.)
they will have 4 propellers, so we need four 250W inverters.
So thats  6 Amps from each battery.

Do you think a microcotnroller would be best to provide the Inverter MOSFETs gate drive
signals?
So we need it to receive the four rotor position sensors, and then push out the drive signals
, and have the four speed inputs from the Autopilot.

Please help with this?
« Last Edit: February 29, 2024, 09:28:42 am by Faringdon »
'Perfection' is the enemy of 'perfectly satisfactory'
 

Offline dmills

  • Super Contributor
  • ***
  • Posts: 2093
  • Country: gb
Re: Need to design and build 250W BLDC inverters for drones
« Reply #1 on: February 28, 2024, 04:39:06 pm »
6 mosfets per motor surely? They are three phase machines.

Usual approach is gong to be a micro running the whole thing, possibly one of the various dual core offerings so you can have the small core doing the really hard realtime motor control stuff and the bigger one handling flight dynamics and related functions. Have a poke around the ST STM stuff IIRC they do some micros that have the numerous timers that are useful for producing gate drive signals for such things and I think there is example code for field oriented control out there in an app note, including code for sensorless operation which seems sane in this case (You don't likely need very low speed control, so why bother with the sensors?), some of the micros have ADCs and comparators useful for the motor drive stuff on chip.

Likely you can find a modest integrated three phase bridge and gate driver as a packaged part, maybe with integrated low side current sense, which will save significant area if you can find a suitable part, I would be eyeballing Infineon's offerings, maybe also TI.

There are standalone motor controller chips, but you are going to have a micro anyway, might as well save on 4 chips and just do it in software.

48V is good, but it is going to be a question of what fets best suit your purposes, also what works for battery form factor, these is sometimes something to be said for designing to use standard power tool batteries!
Don't forget you need to keep the hash out of the radio & gps subsytems as well as anything like analogue video links, so EMC is a first class consideration in design, as annoyingly is weight which directly comes of your cargo capacity and duration.
On that subject, bigger props are almost by definition better then smaller ones (As long as the tips stay subsonic!) simply because momentum is mv, but energy is mv^2, more air slower is less energy cost then less air faster. 

It is a nice little toy project, and can grow to arbitrarily complex as it grows sensors, failsafes and extra telemetry, should be fun.

There is plenty of open source work in this space, and I am sure you will find both BLDC drive and full up drone hardware and software on github, none of this is magic.
 
The following users thanked this post: Faringdon

Online Bud

  • Super Contributor
  • ***
  • Posts: 6912
  • Country: ca
Re: Need to design and build 250W BLDC inverters for drones
« Reply #2 on: February 28, 2024, 05:08:09 pm »
In your other post you said "we Can" build the entire drone. In this post you saying "we Wish" to build a drone. I feel this is one of the "I am building a gizmo X but have no idea where to start" type of post.
Facebook-free life and Rigol-free shack.
 
The following users thanked this post: Faringdon

Online langwadt

  • Super Contributor
  • ***
  • Posts: 4427
  • Country: dk
Re: Need to design and build 250W BLDC inverters for drones
« Reply #3 on: February 28, 2024, 05:17:11 pm »
In your other post you said "we Can" build the entire drone. In this post you saying "we Wish" to build a drone. I feel this is one of the "I am building a gizmo X but have no idea where to start" type of post.

as usual ... and probably made up as an excuse to complain about Chinese electronics
 
The following users thanked this post: Faringdon

Offline jonpaul

  • Super Contributor
  • ***
  • Posts: 3366
  • Country: fr
Re: Need to design and build 250W BLDC inverters for drones
« Reply #4 on: February 28, 2024, 05:44:07 pm »
FTTS: usual clickbait post

  drone motor inverters are  easily found at  RC plane or drone parts 

  V in 12/24/48V 
 
from China or Japan

j
Jean-Paul  the Internet Dinosaur
 
The following users thanked this post: Faringdon

Offline Andy Chee

  • Frequent Contributor
  • **
  • Posts: 686
  • Country: au
 
The following users thanked this post: Faringdon

Online FaringdonTopic starter

  • Super Contributor
  • ***
  • Posts: 1998
  • Country: gb
Re: Need to design and build 250W BLDC inverters for drones
« Reply #6 on: February 28, 2024, 06:46:53 pm »
Thanks, this gives it for a Arduino based drone...
https://www.hackster.io/akarsh98/diy-arduino-based-quadcopter-drone-948153
It seems that we can make our own three phase inverters and just connect up to them from the ESC...the ESC seems to just
take in the rotor position, and the speed demand from the flight controller, and then pushes out the correct  PWMs  to the inverter's FETs.

We will of course be making our own Three phase inverters.
'Perfection' is the enemy of 'perfectly satisfactory'
 

Offline Siwastaja

  • Super Contributor
  • ***
  • Posts: 8173
  • Country: fi
Re: Need to design and build 250W BLDC inverters for drones
« Reply #7 on: February 28, 2024, 06:47:15 pm »
Internets is full of example projects and open source implementations of small drone BLDC ESCs.

You want to use a small & cheap microcontroller which still offers 3-phase PWM generation with pulse-by-pulse current limiting in hardware. For example Advanced Control Timer present in, AFAIK, every STM32 microcontroller including the smallest and cheapest F030.

Sensorless commutation requires a few extra passives and some extra effort in code compared to hall-sensored FOC, but still, web's full of examples. You only need to dedicate some of your time to learning.
 
The following users thanked this post: Faringdon

Offline Siwastaja

  • Super Contributor
  • ***
  • Posts: 8173
  • Country: fi
Re: Need to design and build 250W BLDC inverters for drones
« Reply #8 on: February 28, 2024, 06:48:26 pm »
Thanks, this gives it for a Arduino based drone...
https://www.hackster.io/akarsh98/diy-arduino-based-quadcopter-drone-948153

You realize this is just a tutorial to use an existing product, nothing is designed here.
 
The following users thanked this post: Faringdon

Online FaringdonTopic starter

  • Super Contributor
  • ***
  • Posts: 1998
  • Country: gb
Re: Need to design and build 250W BLDC inverters for drones
« Reply #9 on: February 28, 2024, 08:27:13 pm »
Thanks...
Thanks, this video ("build a drone with Arduino") appears to be whats wanted...



....the idea is to build it like this...but replace the so-called "ESC" with our own 3 phase inverter.
Part 6 shows the inverter.
'Perfection' is the enemy of 'perfectly satisfactory'
 

Online tszaboo

  • Super Contributor
  • ***
  • Posts: 7391
  • Country: nl
  • Current job: ATEX product design
Re: Need to design and build 250W BLDC inverters for drones
« Reply #10 on: February 28, 2024, 08:29:44 pm »
And? Do you want us to design it again for you?
 
The following users thanked this post: Faringdon

Online FaringdonTopic starter

  • Super Contributor
  • ***
  • Posts: 1998
  • Country: gb
Re: Need to design and build 250W BLDC inverters for drones
« Reply #11 on: February 28, 2024, 08:40:16 pm »
Thanks...it looks like pretty much all the design is done in the vids of post just above your own.
We just need to replace the Inverter with our own....should be easy...then from that point, we can learn how to do the programming aspect of controlling the BLDC inverter from the
pitch and yaw and speed demand values that the flight controller kicks out to us. (ie ultimately we will make our own flight controller)
We also need to be able to scale up to drones of a higher power level......presumably thats easy, as the flight controller always first gets connected to the motor and "calibrates"  to its characteristics....so it looks like the flight controller will adapt to a drone of any power level.

The code for the flight controller all  appears to be dished out to us from the arduino web site. (or the video shown).

So , quite literally, all software is written in the Arduino video, and all that needs to be done, is shovel in our own motors and inverters...the Flight controller will give us the gate drive signals for the inverter FETs...and we simply need to manipulate them to drive the actual FETs via suitable gate drivers.
Would you agree?
« Last Edit: February 28, 2024, 09:44:01 pm by Faringdon »
'Perfection' is the enemy of 'perfectly satisfactory'
 

Offline ahbushnell

  • Frequent Contributor
  • **
  • Posts: 738
  • Country: us
Re: Need to design and build 250W BLDC inverters for drones
« Reply #12 on: February 28, 2024, 11:43:25 pm »
TI makes microcontrollers design for motor control.  They have dual core units also.
 
The following users thanked this post: Faringdon

Online FaringdonTopic starter

  • Super Contributor
  • ***
  • Posts: 1998
  • Country: gb
Re: Need to design and build 250W BLDC inverters for drones
« Reply #13 on: February 29, 2024, 09:23:27 am »
Quote
from China or Japan
Thanks, but  our funding says we must  make it ourselves, as the manufacturing industry of UK/EU/USA/Japan/Aus needs to get bigger...(for obvious reasons with the current ongoings)
« Last Edit: February 29, 2024, 09:27:23 am by Faringdon »
'Perfection' is the enemy of 'perfectly satisfactory'
 

Online langwadt

  • Super Contributor
  • ***
  • Posts: 4427
  • Country: dk
Re: Need to design and build 250W BLDC inverters for drones
« Reply #14 on: February 29, 2024, 11:03:01 am »
Quote
from China or Japan
Thanks, but  our funding says we must  make it ourselves, as the manufacturing industry of UK/EU/USA/Japan/Aus needs to get bigger...(for obvious reasons with the current ongoings)


since you had to ask and failed something as simple as use google to find any of the numerous opensource BLDC and flight controllers, you should probably return your funding and tell them that something that "complicated" is far beyond your capabilities
 
The following users thanked this post: Faringdon

Offline Andy Chee

  • Frequent Contributor
  • **
  • Posts: 686
  • Country: au
Re: Need to design and build 250W BLDC inverters for drones
« Reply #15 on: February 29, 2024, 11:29:53 am »
Thanks, but  our funding says we must  make it ourselves, as the manufacturing industry of UK/EU/USA/Japan/Aus needs to get bigger...(for obvious reasons with the current ongoings)
Unless you can make your motor controllers cheap, the average consumer won't be interested, and you'll never recoup your development costs.

Despite this forum being predominantly an engineering discussion forum, one can get target fixated on singular details and ignore the bigger picture, which in large companies can be delegated to the marketing & finance departments, but as a solo outfit you will have to take on these jobs yourself in addition to engineering design & manufacturing.
 
The following users thanked this post: Faringdon

Offline gnif

  • Administrator
  • *****
  • Posts: 1677
  • Country: au
 
The following users thanked this post: tggzzz


Share me

Digg  Facebook  SlashDot  Delicious  Technorati  Twitter  Google  Yahoo
Smf