You are here

VESC as a 3 phase inverter to power a grid model

6 posts / 0 new
Last post
pf26
Offline
Last seen: 2 months 2 weeks ago
VESC Free
Joined: 2018-12-04 08:44
Posts: 52
VESC as a 3 phase inverter to power a grid model

I need to design a model of grid, including "high voltage" feeder, a Delta/star transformer and "low-voltage" lines, to show how it is controlled and how single phase/3 phase loads and distributed generation do affect voltage quality. Obviously, there is no high voltage involved, the grid is running around 24Vac (the voltage display are hacked to show 230V between phase and neutral)

I already did such model using a VESC+motor mechanically coupled to a generator (=another brushless motor) to feed the grid, and a custom app to control output voltage (increasing duty cycle when the measured motor current would increase, up to a threshold meaning a fault) and startup ramps. (picture https://www.facebook.com/aimontefiore/photos/a.1680954238683719/16809584...).

Now I want to make it lighter and more efficient, using directly the VESC + 3 phase LC output filter to feed my "grid" at constant frequency / controlled voltage.  (to simulate the transformer substation taps)

First question: what is the simplest way to do it, preferably with a custom app (ie without need to change mcpwm_foc.c)  It seems relatively similar to running with fixed foc_openloop_rpm and controlled duty mode ?

Otherwise, there will be strong current imbalance (the model is here to show how unbalanced current affect voltage quality much more) - is it a potential issue ?

Thks, Pierre

 

benjamin
Offline
Last seen: 1 week 2 days ago
VESC FreeVESC OriginalVESC Platinum
Joined: 2016-12-26 15:20
Posts: 490

Interesting project. void mcpwm_foc_set_openloop(float current, float rpm) is close to what you want, but it runs current control and not duty control, as you pointer out. It would be quite straight forward for me to implement a new mode void mcpwm_foc_set_openloop_duty(float duty, float rpm) that does the same thing, but with duty cycle control. I will have a look on Friday after I get home from work.

pf26
Offline
Last seen: 2 months 2 weeks ago
VESC Free
Joined: 2018-12-04 08:44
Posts: 52

Tks a lot Benjamin. I think it might be also be useful for some funny applications to get 50Hz ac voltage (3 phase delta, or single phase) out of storage batteries - and higher voltages using a 50Hz transformers...

As for the mcpwm_foc_set_openloop function, in case I set a large enough current, and the load is very low, will it simply generate 3 phase voltages with the largest possible amplitude ?

Actually, I think a  mcpwm_foc_set_openloop_duty  function would even be more flexible if there were 3 duties, corresponding to phase A, B and C (so that I could adjust the output voltage per phase, using a customs app, in response to the loads measured on each phase). Don't know if the svm function allows for that.

shaman
Offline
Last seen: 7 months 2 weeks ago
VESC Free
Joined: 2018-12-09 15:59
Posts: 60

Was there any more development on this? Being able to adapt the VESC stuff to be a pure-sin inverter would be awesome for off-grid applications!

frank
Offline
Last seen: 6 days 14 hours ago
VESC BronzeVESC FreeVESC GoldVESC OriginalVESC PlatinumVESC Silver
Joined: 2016-12-27 20:19
Posts: 846

Good idea, did you drop it into feature request?

shaman
Offline
Last seen: 7 months 2 weeks ago
VESC Free
Joined: 2018-12-09 15:59
Posts: 60

@ frank I put in the request smiley